mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
33 lines
912 B
TypeScript
33 lines
912 B
TypeScript
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
import Logger from '@joplin/utils/Logger';
|
|
import goToNote from './util/goToNote';
|
|
import Note from '@joplin/lib/models/Note';
|
|
import Setting from '@joplin/lib/models/Setting';
|
|
|
|
const logger = Logger.create('newNoteCommand');
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'newNote',
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
execute: async (_context: CommandContext, body = '', todo = false) => {
|
|
const folderId = Setting.value('activeFolderId');
|
|
if (!folderId) {
|
|
logger.warn('Not creating new note -- no active folder ID.');
|
|
return;
|
|
}
|
|
|
|
const note = await Note.save({
|
|
body,
|
|
parent_id: folderId,
|
|
is_todo: todo ? 1 : 0,
|
|
}, { provisional: true });
|
|
|
|
logger.info(`Navigating to note ${note.id}`);
|
|
await goToNote(note.id, '');
|
|
},
|
|
};
|
|
};
|