mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
18 lines
562 B
TypeScript
18 lines
562 B
TypeScript
import CommandService, { CommandContext, CommandDeclaration, CommandRuntime } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
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);
|
|
},
|
|
};
|
|
};
|