2020-11-07 17:59:37 +02:00
|
|
|
import CommandService, { CommandContext, CommandDeclaration, CommandRuntime } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
2020-10-25 19:29:52 +02:00
|
|
|
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
|
|
name: 'newSubFolder',
|
|
|
|
label: () => _('New sub-notebook'),
|
|
|
|
iconName: 'fa-book',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const runtime = ():CommandRuntime => {
|
|
|
|
return {
|
|
|
|
execute: async (context:CommandContext, parentId:string = null) => {
|
|
|
|
parentId = parentId || context.state.selectedFolderId;
|
|
|
|
return CommandService.instance().execute('newFolder', parentId);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|