mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { CommandContext, CommandDeclaration, CommandRuntime } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
import Folder from '@joplin/lib/models/Folder';
|
|
const bridge = require('electron').remote.require('./bridge').default;
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'newFolder',
|
|
label: () => _('New notebook'),
|
|
iconName: 'fa-book',
|
|
};
|
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
return {
|
|
execute: async (_context: CommandContext, parentId: string = null) => {
|
|
comp.setState({
|
|
promptOptions: {
|
|
label: _('Notebook title:'),
|
|
onClose: async (answer: string) => {
|
|
if (answer) {
|
|
let folder = null;
|
|
try {
|
|
const toSave: any = { title: answer };
|
|
if (parentId) toSave.parent_id = parentId;
|
|
folder = await Folder.save(toSave, { userSideValidation: true });
|
|
} catch (error) {
|
|
bridge().showErrorMessageBox(error.message);
|
|
}
|
|
|
|
if (folder) {
|
|
comp.props.dispatch({
|
|
type: 'FOLDER_SELECT',
|
|
id: folder.id,
|
|
});
|
|
}
|
|
}
|
|
|
|
comp.setState({ promptOptions: null });
|
|
},
|
|
},
|
|
});
|
|
},
|
|
};
|
|
};
|