1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/app-desktop/gui/MainScreen/commands/newTodo.ts
2020-11-05 16:58:23 +00:00

18 lines
573 B
TypeScript

import CommandService, { CommandContext, CommandDeclaration, CommandRuntime } from '@joplinapp/lib/services/CommandService';
import { _ } from '@joplinapp/lib/locale';
export const declaration:CommandDeclaration = {
name: 'newTodo',
label: () => _('New to-do'),
iconName: 'fa-check-square',
};
export const runtime = ():CommandRuntime => {
return {
execute: async (_context:CommandContext, template:string = null) => {
return CommandService.instance().execute('newNote', template, true);
},
enabledCondition: 'oneFolderSelected && !inConflictFolder',
};
};