trilium/src/public/javascripts/services/link.js

117 lines
2.9 KiB
JavaScript
Raw Normal View History

import treeService from './tree.js';
import noteDetailText from './note_detail_text.js';
import treeUtils from './tree_utils.js';
2017-11-05 05:07:03 +08:00
function getNotePathFromLink(url) {
const notePathMatch = /#([A-Za-z0-9/]+)$/.exec(url);
2017-11-05 05:07:03 +08:00
if (notePathMatch === null) {
2017-11-05 05:07:03 +08:00
return null;
}
else {
return notePathMatch[1];
}
}
2017-11-05 05:07:03 +08:00
function getNotePathFromLabel(label) {
const notePathMatch = / \(([A-Za-z0-9/]+)\)/.exec(label);
if (notePathMatch !== null) {
return notePathMatch[1];
}
return null;
}
2017-11-05 05:07:03 +08:00
async function createNoteLink(notePath, noteTitle = null) {
if (!noteTitle) {
const noteId = treeUtils.getNoteIdFromNotePath(notePath);
2017-11-05 05:07:03 +08:00
2018-04-20 08:59:44 +08:00
noteTitle = await treeUtils.getNoteTitle(noteId);
}
const noteLink = $("<a>", {
href: 'javascript:',
text: noteTitle
}).attr('action', 'note')
.attr('note-path', notePath);
return noteLink;
}
function goToLink(e) {
e.preventDefault();
const $link = $(e.target);
let notePath = $link.attr("note-path");
if (!notePath) {
const address = $link.attr("note-path") ? $link.attr("note-path") : $link.attr('href');
2018-01-03 09:16:17 +08:00
if (!address) {
return;
2018-01-03 09:16:17 +08:00
}
if (address.startsWith('http')) {
window.open(address, '_blank');
2017-11-05 05:07:03 +08:00
return;
2017-11-05 05:07:03 +08:00
}
notePath = getNotePathFromLink(address);
2017-12-10 03:11:35 +08:00
}
treeService.activateNode(notePath);
2017-12-10 03:17:03 +08:00
// this is quite ugly hack, but it seems like we can't close the tooltip otherwise
$("[role='tooltip']").remove();
2017-12-10 03:17:03 +08:00
if (glob.activeDialog) {
try {
glob.activeDialog.dialog('close');
}
catch (e) {}
}
}
function addLinkToEditor(linkTitle, linkHref) {
2018-04-20 08:59:44 +08:00
const editor = noteDetailText.getEditor();
editor.model.change( writer => {
const insertPosition = editor.model.document.selection.getFirstPosition();
writer.insertText(linkTitle, { linkHref: linkHref }, insertPosition);
});
}
function addTextToEditor(text) {
const editor = noteDetailText.getEditor();
const doc = editor.document;
doc.enqueueChanges(() => editor.data.insertText(text), doc.selection);
}
ko.bindingHandlers.noteLink = {
init: async function(element, valueAccessor, allBindings, viewModel, bindingContext) {
const noteId = ko.unwrap(valueAccessor());
if (noteId) {
const link = await createNoteLink(noteId);
$(element).append(link);
}
}
};
// 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']", goToLink);
$(document).on('click', 'div.popover-content a, div.ui-tooltip-content a', goToLink);
$(document).on('dblclick', '#note-detail-text a', goToLink);
export default {
getNotePathFromLabel,
getNotePathFromLink,
createNoteLink,
addLinkToEditor,
addTextToEditor
};