mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
23 lines
518 B
TypeScript
23 lines
518 B
TypeScript
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'openFolderDialog',
|
|
label: () => _('Edit'),
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
execute: async (context: CommandContext, folderId: string) => {
|
|
context.dispatch({
|
|
type: 'DIALOG_OPEN',
|
|
name: 'editFolder',
|
|
isOpen: true,
|
|
props: {
|
|
folderId,
|
|
},
|
|
});
|
|
},
|
|
};
|
|
};
|