2020-11-07 17:59:37 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
2021-01-22 19:41:11 +02:00
|
|
|
import Note from '@joplin/lib/models/Note';
|
|
|
|
import Folder from '@joplin/lib/models/Folder';
|
2020-10-25 19:22:59 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const declaration: CommandDeclaration = {
|
2020-10-25 19:22:59 +02:00
|
|
|
name: 'openNote',
|
|
|
|
};
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const runtime = (): CommandRuntime => {
|
2020-10-25 19:22:59 +02:00
|
|
|
return {
|
2020-11-12 21:13:28 +02:00
|
|
|
execute: async (context: CommandContext, noteId: string, hash: string = null) => {
|
2020-10-25 19:22:59 +02:00
|
|
|
const note = await Note.load(noteId);
|
|
|
|
if (!note) throw new Error(`No such note: ${noteId}`);
|
|
|
|
|
|
|
|
const folder = await Folder.load(note.parent_id);
|
|
|
|
if (!folder) throw new Error(`Note parent notebook does not exist: ${JSON.stringify(note)}`);
|
|
|
|
|
|
|
|
context.dispatch({
|
|
|
|
type: 'FOLDER_AND_NOTE_SELECT',
|
|
|
|
folderId: folder.id,
|
|
|
|
noteId: note.id,
|
|
|
|
hash,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|