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