trilium/src/public/app/services/attribute_renderer.js

62 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-07-17 06:08:28 +08:00
import ws from "./ws.js";
import linkService from "./link.js";
2020-07-17 06:08:28 +08:00
function renderAttribute(attribute, $container, renderIsInheritable) {
const isInheritable = renderIsInheritable && attribute.isInheritable ? `(inheritable)` : '';
if (attribute.type === 'label') {
$container.append(document.createTextNode('#' + attribute.name + isInheritable));
if (attribute.value) {
$container.append('=');
$container.append(document.createTextNode(formatValue(attribute.value)));
}
} else if (attribute.type === 'relation') {
if (attribute.isAutoLink) {
return;
}
// when the relation has just been created then it might not have a value
2020-07-17 06:08:28 +08:00
if (attribute.value) {
$container.append(document.createTextNode('~' + attribute.name + isInheritable + "="));
$container.append(createNoteLink(attribute.value));
}
} else {
ws.logError("Unknown attr type: " + attribute.type);
}
}
function formatValue(val) {
if (/^[\p{L}\p{N}\-_,.]+$/u.test(val)) {
return val;
}
else if (!val.includes('"')) {
return '"' + val + '"';
}
else if (!val.includes("'")) {
return "'" + val + "'";
}
else if (!val.includes("`")) {
return "`" + val + "`";
}
else {
return '"' + val.replace(/"/g, '\\"') + '"';
}
}
function createNoteLink(noteId) {
const $link = $("<a>", {
2020-07-17 06:08:28 +08:00
href: '#' + noteId,
class: 'reference-link',
'data-note-path': noteId
});
linkService.loadReferenceLinkTitle(noteId, $link);
return $link;
2020-07-17 06:08:28 +08:00
}
export default {
renderAttribute
}