2021-05-13 18:57:37 +02:00
|
|
|
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,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
2021-05-16 15:21:55 +02:00
|
|
|
enabledCondition: 'joplinServerConnected && (folderIsShareRootAndOwnedByUser || !folderIsShared)',
|
2021-05-13 18:57:37 +02:00
|
|
|
};
|
|
|
|
};
|