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/openFolderDialog.ts
2021-11-15 17:19:51 +00:00

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,
},
});
},
};
};