mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-30 19:52:28 +08:00
60 lines
2.0 KiB
TypeScript
60 lines
2.0 KiB
TypeScript
![]() |
import type FNote from "../entities/fnote.js";
|
||
|
import { getCurrentLanguage } from "./i18n.js";
|
||
|
import { applySyntaxHighlight } from "./syntax_highlight.js";
|
||
|
|
||
|
export default function renderDoc(note: FNote) {
|
||
|
return new Promise<JQuery<HTMLElement>>((resolve) => {
|
||
|
let docName = note.getLabelValue("docName");
|
||
|
const $content = $("<div>");
|
||
|
|
||
|
if (docName) {
|
||
|
// find doc based on language
|
||
|
const url = getUrl(docName, getCurrentLanguage());
|
||
|
$content.load(url, (response, status) => {
|
||
|
// fallback to english doc if no translation available
|
||
|
if (status === "error") {
|
||
|
const fallbackUrl = getUrl(docName, "en");
|
||
|
$content.load(fallbackUrl, () => processContent(fallbackUrl, $content));
|
||
|
resolve($content);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
processContent(url, $content);
|
||
|
resolve($content);
|
||
|
});
|
||
|
} else {
|
||
|
resolve($content);
|
||
|
}
|
||
|
|
||
|
return $content;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function processContent(url: string, $content: JQuery<HTMLElement>) {
|
||
|
const dir = url.substring(0, url.lastIndexOf("/"));
|
||
|
|
||
|
// Remove top-level heading since it's already handled by the note title
|
||
|
$content.find("h1").remove();
|
||
|
|
||
|
// Images are relative to the docnote but that will not work when rendered in the application since the path breaks.
|
||
|
$content.find("img").each((i, el) => {
|
||
|
const $img = $(el);
|
||
|
$img.attr("src", dir + "/" + $img.attr("src"));
|
||
|
});
|
||
|
|
||
|
applySyntaxHighlight($content);
|
||
|
}
|
||
|
|
||
|
function getUrl(docNameValue: string, language: string) {
|
||
|
// For help notes, we only get the content to avoid loading of styles and meta.
|
||
|
let suffix = "";
|
||
|
if (docNameValue?.startsWith("User Guide")) {
|
||
|
suffix = " .content";
|
||
|
}
|
||
|
|
||
|
// Cannot have spaces in the URL due to how JQuery.load works.
|
||
|
docNameValue = docNameValue.replaceAll(" ", "%20");
|
||
|
|
||
|
return `${window.glob.appPath}/doc_notes/${language}/${docNameValue}.html${suffix}`;
|
||
|
}
|