mirror of
https://github.com/zadam/trilium.git
synced 2025-01-17 20:48:12 +08:00
fix creating note from global ctrl+alt+p shortcut, closes #773
This commit is contained in:
parent
b62d79044a
commit
5350496ed4
1 changed files with 8 additions and 6 deletions
|
@ -9,6 +9,7 @@ import noteDetailService from "./note_detail.js";
|
||||||
import keyboardActionService from "./keyboard_actions.js";
|
import keyboardActionService from "./keyboard_actions.js";
|
||||||
import hoistedNoteService from "./hoisted_note.js";
|
import hoistedNoteService from "./hoisted_note.js";
|
||||||
import treeCache from "./tree_cache.js";
|
import treeCache from "./tree_cache.js";
|
||||||
|
import server from "./server.js";
|
||||||
|
|
||||||
const NOTE_REVISIONS = "../dialogs/note_revisions.js";
|
const NOTE_REVISIONS = "../dialogs/note_revisions.js";
|
||||||
const OPTIONS = "../dialogs/options.js";
|
const OPTIONS = "../dialogs/options.js";
|
||||||
|
@ -232,15 +233,16 @@ function registerEntrypoints() {
|
||||||
|
|
||||||
keyboardActionService.setGlobalActionHandler("CreateNoteIntoDayNote", async () => {
|
keyboardActionService.setGlobalActionHandler("CreateNoteIntoDayNote", async () => {
|
||||||
const todayNote = await dateNoteService.getTodayNote();
|
const todayNote = await dateNoteService.getTodayNote();
|
||||||
const notePath = await treeService.getSomeNotePath(todayNote);
|
|
||||||
|
|
||||||
const node = await treeService.expandToNote(notePath);
|
const {note} = await server.post(`notes/${todayNote.noteId}/children?target=into`, {
|
||||||
|
title: 'new note',
|
||||||
const {note} = await treeService.createNote(node, todayNote.noteId, 'into', {
|
content: '',
|
||||||
type: "text",
|
type: 'text',
|
||||||
isProtected: node.data.isProtected
|
isProtected: todayNote.isProtected
|
||||||
});
|
});
|
||||||
|
|
||||||
|
await treeService.expandToNote(note.noteId);
|
||||||
|
|
||||||
await noteDetailService.openInTab(note.noteId, true);
|
await noteDetailService.openInTab(note.noteId, true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue