mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
24 lines
654 B
TypeScript
24 lines
654 B
TypeScript
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
||
|
import { _ } from '@joplin/lib/locale';
|
||
|
|
||
|
export const declaration: CommandDeclaration = {
|
||
|
name: 'showShareFolderDialog',
|
||
|
label: () => _('Share notebook...'),
|
||
|
};
|
||
|
|
||
|
export const runtime = (comp: any): CommandRuntime => {
|
||
|
return {
|
||
|
execute: async (context: CommandContext, folderId: string = null) => {
|
||
|
folderId = folderId || context.state.selectedFolderId;
|
||
|
|
||
|
comp.setState({
|
||
|
shareFolderDialogOptions: {
|
||
|
folderId,
|
||
|
visible: true,
|
||
|
},
|
||
|
});
|
||
|
},
|
||
|
enabledCondition: 'folderIsShareRootAndOwnedByUser || !folderIsShared',
|
||
|
};
|
||
|
};
|