trilium/public/javascripts/link.js

71 lines
1.9 KiB
JavaScript
Raw Normal View History

"use strict";
2017-11-05 05:07:03 +08:00
const link = (function() {
2017-11-20 09:36:13 +08:00
function getNotePathFromLink(url) {
const notePathMatch = /app#([A-Za-z0-9/]+)$/.exec(url);
2017-11-05 05:07:03 +08:00
2017-11-20 09:36:13 +08:00
if (notePathMatch === null) {
2017-11-05 05:07:03 +08:00
return null;
}
else {
2017-11-20 09:36:13 +08:00
return notePathMatch[1];
2017-11-05 05:07:03 +08:00
}
}
2017-11-20 09:36:13 +08:00
function getNodePathFromLabel(label) {
const notePathMatch = / \(([A-Za-z0-9/]+)\)/.exec(label);
2017-11-05 05:07:03 +08:00
2017-11-20 09:36:13 +08:00
if (notePathMatch !== null) {
return notePathMatch[1];
2017-11-05 05:07:03 +08:00
}
return null;
}
function createNoteLink(noteId) {
const noteLink = $("<a>", {
href: 'javascript:',
2017-11-20 11:48:07 +08:00
text: noteTree.getNoteTitle(noteId)
2017-11-05 05:07:03 +08:00
}).attr('action', 'note')
.attr('note-id', noteId);
return noteLink;
}
function goToInternalNote(e) {
const linkEl = $(e.target);
let noteId = linkEl.attr("note-id");
if (!noteId) {
2017-11-20 09:36:13 +08:00
noteId = getNotePathFromLink(linkEl.attr('href'));
2017-11-05 05:07:03 +08:00
}
if (noteId) {
2017-11-19 21:47:22 +08:00
noteTree.activateNode(noteId);
2017-11-05 05:07:03 +08:00
// this is quite ugly hack, but it seems like we can't close the tooltip otherwise
$("[role='tooltip']").remove();
if (glob.activeDialog) {
try {
glob.activeDialog.dialog('close');
}
catch (e) {}
}
e.preventDefault();
}
}
// when click on link popup, in case of internal link, just go the the referenced note instead of default behavior
// of opening the link in new window/tab
$(document).on('click', "a[action='note']", goToInternalNote);
$(document).on('click', 'div.popover-content a, div.ui-tooltip-content', goToInternalNote);
$(document).on('dblclick', '.note-editable a, div.ui-tooltip-content', goToInternalNote);
return {
2017-11-20 09:36:13 +08:00
getNodePathFromLabel,
getNotePathFromLink,
2017-11-05 05:07:03 +08:00
createNoteLink
};
})();