mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
19 lines
625 B
TypeScript
19 lines
625 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);
|
|
},
|
|
enabledCondition: '!folderIsReadOnly && !folderIsTrash',
|
|
};
|
|
};
|