import renderService from "./render.js"; import protectedSessionService from "./protected_session.js"; import protectedSessionHolder from "./protected_session_holder.js"; import openService from "./open.js"; import froca from "./froca.js"; import utils from "./utils.js"; import linkService from "./link.js"; import treeService from "./tree.js"; import FNote from "../entities/fnote.js"; import FAttachment from "../entities/fattachment.js"; import imageContextMenuService from "../menus/image_context_menu.js"; import { applySingleBlockSyntaxHighlight, formatCodeBlocks } from "./syntax_highlight.js"; import { loadElkIfNeeded, postprocessMermaidSvg } from "./mermaid.js"; import renderDoc from "./doc_renderer.js"; import { t } from "../services/i18n.js"; import WheelZoom from 'vanilla-js-wheel-zoom'; import { renderMathInElement } from "./math.js"; import { normalizeMimeTypeForCKEditor } from "@triliumnext/commons"; let idCounter = 1; interface Options { tooltip?: boolean; trim?: boolean; imageHasZoom?: boolean; } const CODE_MIME_TYPES = new Set(["application/json"]); async function getRenderedContent(this: {} | { ctx: string }, entity: FNote | FAttachment, options: Options = {}) { options = Object.assign( { tooltip: false }, options ); const type = getRenderingType(entity); // attachment supports only image and file/pdf/audio/video const $renderedContent = $('
'); if (type === "text" || type === "book") { await renderText(entity, $renderedContent); } else if (type === "code") { await renderCode(entity, $renderedContent); } else if (["image", "canvas", "mindMap"].includes(type)) { renderImage(entity, $renderedContent, options); } else if (!options.tooltip && ["file", "pdf", "audio", "video"].includes(type)) { renderFile(entity, type, $renderedContent); } else if (type === "mermaid") { await renderMermaid(entity, $renderedContent); } else if (type === "render" && entity instanceof FNote) { const $content = $("
"); await renderService.render(entity, $content); $renderedContent.append($content); } else if (type === "doc" && "noteId" in entity) { const $content = await renderDoc(entity); $renderedContent.html($content.html()); } else if (!options.tooltip && type === "protectedSession") { const $button = $(``).on("click", protectedSessionService.enterProtectedSession); $renderedContent.append($("
").append("
This note is protected and to access it you need to enter password.
").append("
").append($button)); } else if (entity instanceof FNote) { $renderedContent .css("display", "flex") .css("flex-direction", "column"); $renderedContent.append( $("
") .css("display", "flex") .css("justify-content", "space-around") .css("align-items", "center") .css("height", "100%") .css("font-size", "500%") .css("flex-grow", "1") .append($("").addClass(entity.getIcon())) ); if (entity.type === "webView" && entity.hasLabel("webViewSrc")) { const $footer = $("