mirror of
https://github.com/zadam/trilium.git
synced 2025-01-18 04:59:56 +08:00
some refactorings of note detail service
This commit is contained in:
parent
9c1b8da573
commit
7e856283ee
7 changed files with 103 additions and 89 deletions
|
@ -84,18 +84,21 @@ function registerEntrypoints() {
|
|||
}
|
||||
});
|
||||
|
||||
// FIXME: do we really need these at this point?
|
||||
utils.bindShortcut("ctrl+shift+up", () => {
|
||||
const node = treeService.getCurrentNode();
|
||||
node.navigate($.ui.keyCode.UP, true);
|
||||
|
||||
$("#note-detail").focus();
|
||||
$("#note-detail-text").focus();
|
||||
});
|
||||
|
||||
|
||||
// FIXME: do we really need these at this point?
|
||||
utils.bindShortcut("ctrl+shift+down", () => {
|
||||
const node = treeService.getCurrentNode();
|
||||
node.navigate($.ui.keyCode.DOWN, true);
|
||||
|
||||
$("#note-detail").focus();
|
||||
$("#note-detail-text").focus();
|
||||
});
|
||||
|
||||
$(document).bind('keydown', 'ctrl+-', () => {
|
||||
|
@ -120,7 +123,7 @@ function registerEntrypoints() {
|
|||
}
|
||||
});
|
||||
|
||||
$("#note-title").bind('keydown', 'return', () => $("#note-detail").focus());
|
||||
$("#note-title").bind('keydown', 'return', () => $("#note-detail-text").focus());
|
||||
|
||||
$("#upload-attachment-button").click(attachmentService.uploadAttachment);
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@ function addTextToEditor(text) {
|
|||
// of opening the link in new window/tab
|
||||
$(document).on('click', "a[action='note']", goToLink);
|
||||
$(document).on('click', 'div.popover-content a, div.ui-tooltip-content a', goToLink);
|
||||
$(document).on('dblclick', '#note-detail a', goToLink);
|
||||
$(document).on('dblclick', '#note-detail-text a', goToLink);
|
||||
|
||||
export default {
|
||||
getNodePathFromLabel,
|
||||
|
|
|
@ -12,7 +12,7 @@ import NoteFull from "../entities/note_full.js";
|
|||
|
||||
const $noteTitle = $("#note-title");
|
||||
|
||||
const $noteDetail = $('#note-detail');
|
||||
const $noteDetailText = $('#note-detail-text');
|
||||
const $noteDetailCode = $('#note-detail-code');
|
||||
const $noteDetailSearch = $('#note-detail-search');
|
||||
const $noteDetailRender = $('#note-detail-render');
|
||||
|
@ -33,7 +33,7 @@ const $searchString = $("#search-string");
|
|||
|
||||
const $executeScriptButton = $("#execute-script-button");
|
||||
|
||||
let editor = null;
|
||||
let textEditor = null;
|
||||
let codeEditor = null;
|
||||
|
||||
let currentNote = null;
|
||||
|
@ -90,7 +90,7 @@ async function saveNoteIfChanged() {
|
|||
|
||||
function updateNoteFromInputs(note) {
|
||||
if (note.type === 'text') {
|
||||
let content = editor.getData();
|
||||
let content = textEditor.getData();
|
||||
|
||||
// if content is only tags/whitespace (typically <p> </p>), then just make it empty
|
||||
// this is important when setting new note to code
|
||||
|
@ -144,74 +144,95 @@ function newNoteCreated() {
|
|||
isNewNoteCreated = true;
|
||||
}
|
||||
|
||||
async function setContent(content) {
|
||||
if (currentNote.type === 'text') {
|
||||
if (!editor) {
|
||||
await utils.requireLibrary(utils.CKEDITOR);
|
||||
async function showRenderNote() {
|
||||
$noteDetailRender.show();
|
||||
|
||||
editor = await BalloonEditor.create($noteDetail[0], {});
|
||||
const bundle = await server.get('script/bundle/' + getCurrentNoteId());
|
||||
|
||||
editor.document.on('change', noteChanged);
|
||||
}
|
||||
$noteDetailRender.html(bundle.html);
|
||||
|
||||
// temporary workaround for https://github.com/ckeditor/ckeditor5-enter/issues/49
|
||||
editor.setData(content ? content : "<p></p>");
|
||||
bundleService.executeBundle(bundle);
|
||||
}
|
||||
|
||||
$noteDetail.show();
|
||||
async function showFileNote() {
|
||||
const labels = await server.get('notes/' + currentNote.noteId + '/labels');
|
||||
const labelMap = utils.toObject(labels, l => [l.name, l.value]);
|
||||
|
||||
$noteDetailAttachment.show();
|
||||
|
||||
$attachmentFileName.text(labelMap.original_file_name);
|
||||
$attachmentFileSize.text(labelMap.file_size + " bytes");
|
||||
$attachmentFileType.text(currentNote.mime);
|
||||
}
|
||||
|
||||
async function showTextNote() {
|
||||
if (!textEditor) {
|
||||
await utils.requireLibrary(utils.CKEDITOR);
|
||||
|
||||
textEditor = await BalloonEditor.create($noteDetailText[0], {});
|
||||
|
||||
textEditor.document.on('change', noteChanged);
|
||||
}
|
||||
else if (currentNote.type === 'code') {
|
||||
if (!codeEditor) {
|
||||
await utils.requireLibrary(utils.CODE_MIRROR);
|
||||
|
||||
CodeMirror.keyMap.default["Shift-Tab"] = "indentLess";
|
||||
CodeMirror.keyMap.default["Tab"] = "indentMore";
|
||||
// temporary workaround for https://github.com/ckeditor/ckeditor5-enter/issues/49
|
||||
textEditor.setData(currentNote.content || "<p></p>");
|
||||
|
||||
CodeMirror.modeURL = 'libraries/codemirror/mode/%N/%N.js';
|
||||
$noteDetailText.show();
|
||||
}
|
||||
|
||||
codeEditor = CodeMirror($("#note-detail-code")[0], {
|
||||
value: "",
|
||||
viewportMargin: Infinity,
|
||||
indentUnit: 4,
|
||||
matchBrackets: true,
|
||||
matchTags: { bothTags: true },
|
||||
highlightSelectionMatches: { showToken: /\w/, annotateScrollbar: false },
|
||||
lint: true,
|
||||
gutters: ["CodeMirror-lint-markers"],
|
||||
lineNumbers: true
|
||||
});
|
||||
async function showCodeNote() {
|
||||
if (!codeEditor) {
|
||||
await utils.requireLibrary(utils.CODE_MIRROR);
|
||||
|
||||
codeEditor.on('change', noteChanged);
|
||||
}
|
||||
CodeMirror.keyMap.default["Shift-Tab"] = "indentLess";
|
||||
CodeMirror.keyMap.default["Tab"] = "indentMore";
|
||||
|
||||
$noteDetailCode.show();
|
||||
CodeMirror.modeURL = 'libraries/codemirror/mode/%N/%N.js';
|
||||
|
||||
// this needs to happen after the element is shown, otherwise the editor won't be refresheds
|
||||
codeEditor.setValue(content);
|
||||
codeEditor = CodeMirror($("#note-detail-code")[0], {
|
||||
value: "",
|
||||
viewportMargin: Infinity,
|
||||
indentUnit: 4,
|
||||
matchBrackets: true,
|
||||
matchTags: {bothTags: true},
|
||||
highlightSelectionMatches: {showToken: /\w/, annotateScrollbar: false},
|
||||
lint: true,
|
||||
gutters: ["CodeMirror-lint-markers"],
|
||||
lineNumbers: true
|
||||
});
|
||||
|
||||
const info = CodeMirror.findModeByMIME(currentNote.mime);
|
||||
|
||||
if (info) {
|
||||
codeEditor.setOption("mode", info.mime);
|
||||
CodeMirror.autoLoadMode(codeEditor, info.mode);
|
||||
}
|
||||
|
||||
codeEditor.refresh();
|
||||
codeEditor.on('change', noteChanged);
|
||||
}
|
||||
else if (currentNote.type === 'search') {
|
||||
$noteDetailSearch.show();
|
||||
|
||||
try {
|
||||
const json = JSON.parse(content);
|
||||
$noteDetailCode.show();
|
||||
|
||||
$searchString.val(json.searchString);
|
||||
}
|
||||
catch (e) {
|
||||
console.log(e);
|
||||
$searchString.val('');
|
||||
}
|
||||
// this needs to happen after the element is shown, otherwise the editor won't be refresheds
|
||||
codeEditor.setValue(currentNote.content);
|
||||
|
||||
$searchString.on('input', noteChanged);
|
||||
const info = CodeMirror.findModeByMIME(currentNote.mime);
|
||||
|
||||
if (info) {
|
||||
codeEditor.setOption("mode", info.mime);
|
||||
CodeMirror.autoLoadMode(codeEditor, info.mode);
|
||||
}
|
||||
|
||||
codeEditor.refresh();
|
||||
}
|
||||
|
||||
function showSearchNote() {
|
||||
$noteDetailSearch.show();
|
||||
|
||||
try {
|
||||
const json = JSON.parse(currentNote.content);
|
||||
|
||||
$searchString.val(json.searchString);
|
||||
}
|
||||
catch (e) {
|
||||
console.log(e);
|
||||
$searchString.val('');
|
||||
}
|
||||
|
||||
$searchString.on('input', noteChanged);
|
||||
}
|
||||
|
||||
async function loadNoteToEditor(noteId) {
|
||||
|
@ -244,33 +265,26 @@ async function loadNoteToEditor(noteId) {
|
|||
noteTypeService.setNoteType(currentNote.type);
|
||||
noteTypeService.setNoteMime(currentNote.mime);
|
||||
|
||||
$noteDetail.hide();
|
||||
$noteDetailText.hide();
|
||||
$noteDetailSearch.hide();
|
||||
$noteDetailCode.hide();
|
||||
$noteDetailRender.html('').hide();
|
||||
$noteDetailAttachment.hide();
|
||||
|
||||
if (currentNote.type === 'render') {
|
||||
$noteDetailRender.show();
|
||||
|
||||
const bundle = await server.get('script/bundle/' + getCurrentNoteId());
|
||||
|
||||
$noteDetailRender.html(bundle.html);
|
||||
|
||||
bundleService.executeBundle(bundle);
|
||||
await showRenderNote();
|
||||
}
|
||||
else if (currentNote.type === 'file') {
|
||||
const labels = await server.get('notes/' + currentNote.noteId + '/labels');
|
||||
const labelMap = utils.toObject(labels, l => [l.name, l.value]);
|
||||
|
||||
$noteDetailAttachment.show();
|
||||
|
||||
$attachmentFileName.text(labelMap.original_file_name);
|
||||
$attachmentFileSize.text(labelMap.file_size + " bytes");
|
||||
$attachmentFileType.text(currentNote.mime);
|
||||
await showFileNote();
|
||||
}
|
||||
else {
|
||||
await setContent(currentNote.content);
|
||||
else if (currentNote.type === 'text') {
|
||||
await showTextNote();
|
||||
}
|
||||
else if (currentNote.type === 'code') {
|
||||
await showCodeNote();
|
||||
}
|
||||
else if (currentNote.type === 'search') {
|
||||
showSearchNote();
|
||||
}
|
||||
|
||||
noteChangeDisabled = false;
|
||||
|
@ -310,14 +324,14 @@ async function loadNote(noteId) {
|
|||
}
|
||||
|
||||
function getEditor() {
|
||||
return editor;
|
||||
return textEditor;
|
||||
}
|
||||
|
||||
function focus() {
|
||||
const note = getCurrentNote();
|
||||
|
||||
if (note.type === 'text') {
|
||||
$noteDetail.focus();
|
||||
$noteDetailText.focus();
|
||||
}
|
||||
else if (note.type === 'code') {
|
||||
codeEditor.focus();
|
||||
|
@ -392,7 +406,7 @@ $(document).ready(() => {
|
|||
});
|
||||
|
||||
// so that tab jumps from note title (which has tabindex 1)
|
||||
$noteDetail.attr("tabindex", 2);
|
||||
$noteDetailText.attr("tabindex", 2);
|
||||
});
|
||||
|
||||
// this makes sure that when user e.g. reloads the page or navigates away from the page, the note's content is saved
|
||||
|
@ -408,7 +422,6 @@ setInterval(saveNoteIfChanged, 5000);
|
|||
export default {
|
||||
reload,
|
||||
switchToNote,
|
||||
saveNoteIfChanged,
|
||||
updateNoteFromInputs,
|
||||
saveNoteToServer,
|
||||
setNoteBackgroundIfProtected,
|
||||
|
@ -419,7 +432,5 @@ export default {
|
|||
newNoteCreated,
|
||||
getEditor,
|
||||
focus,
|
||||
executeCurrentNote,
|
||||
loadLabelList,
|
||||
setContent
|
||||
loadLabelList
|
||||
};
|
|
@ -4,7 +4,7 @@ import linkService from "./link.js";
|
|||
|
||||
function setupTooltip() {
|
||||
$(document).tooltip({
|
||||
items: "#note-detail a",
|
||||
items: "#note-detail-text a",
|
||||
content: function (callback) {
|
||||
const notePath = linkService.getNotePathFromLink($(this).attr("href"));
|
||||
|
||||
|
|
|
@ -276,7 +276,7 @@ async function treeInitialized() {
|
|||
}
|
||||
|
||||
if (startNotePath) {
|
||||
activateNode(startNotePath);
|
||||
await activateNode(startNotePath);
|
||||
|
||||
// looks like this this doesn't work when triggered immediatelly after activating node
|
||||
// so waiting a second helps
|
||||
|
@ -322,7 +322,7 @@ function initFancyTree(branch) {
|
|||
},
|
||||
expand: (event, data) => setExpandedToServer(data.node.data.branchId, true),
|
||||
collapse: (event, data) => setExpandedToServer(data.node.data.branchId, false),
|
||||
init: (event, data) => treeInitialized,
|
||||
init: (event, data) => treeInitialized(), // don't collapse to short form
|
||||
hotkeys: {
|
||||
keydown: treeKeyBindings
|
||||
},
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
align-items: center;
|
||||
}
|
||||
|
||||
#note-detail {
|
||||
#note-detail-text {
|
||||
border: 0 !important;
|
||||
box-shadow: none !important;
|
||||
/* This is because with empty content height of editor is 0 and it's impossible to click into it */
|
||||
|
@ -40,7 +40,7 @@
|
|||
background-color: #eee;
|
||||
}
|
||||
|
||||
#note-detail p {
|
||||
#note-detail-text p {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
|
|
@ -133,7 +133,7 @@
|
|||
</div>
|
||||
|
||||
<div style="position: relative; overflow: auto; grid-area: note-content; padding-left: 10px; padding-top: 10px;" id="note-detail-wrapper">
|
||||
<div id="note-detail" style="display: none;"></div>
|
||||
<div id="note-detail-text" style="display: none;"></div>
|
||||
|
||||
<div id="note-detail-search" style="display: none;">
|
||||
<div style="display: flex; align-items: center;">
|
||||
|
|
Loading…
Reference in a new issue