Skip to content

Commit

Permalink
feat(ck-mermaid): support read-only mode
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Jan 7, 2025
1 parent 19c9044 commit b81c15c
Showing 1 changed file with 27 additions and 9 deletions.
36 changes: 27 additions & 9 deletions src/public/app/widgets/type_widgets/read_only_text.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import AbstractTextTypeWidget from "./abstract_text_type_widget.js";
import libraryLoader from "../../services/library_loader.js";
import { applySyntaxHighlight } from "../../services/syntax_highlight.js";
import { getMermaidConfig } from "../mermaid.js";

const TPL = `
<div class="note-detail-readonly-text note-detail-printable">
Expand All @@ -12,7 +13,7 @@ const TPL = `
.note-detail-readonly-text h4 { font-size: 1.2em; }
.note-detail-readonly-text h5 { font-size: 1.1em; }
.note-detail-readonly-text h6 { font-size: 1.0em; }
body.heading-style-markdown .note-detail-readonly-text h1::before { content: "#\\2004"; color: var(--muted-text-color); }
body.heading-style-markdown .note-detail-readonly-text h2::before { content: "##\\2004"; color: var(--muted-text-color); }
body.heading-style-markdown .note-detail-readonly-text h3::before { content: "###\\2004"; color: var(--muted-text-color); }
Expand All @@ -26,30 +27,30 @@ const TPL = `
body.heading-style-underline .note-detail-readonly-text h4:not(.include-note-title) { border-bottom: 1px solid var(--main-border-color); }
body.heading-style-underline .note-detail-readonly-text h5 { border-bottom: 1px solid var(--main-border-color); }
body.heading-style-underline .note-detail-readonly-text h6 { border-bottom: 1px solid var(--main-border-color); }
.note-detail-readonly-text {
padding-left: 24px;
padding-top: 10px;
font-family: var(--detail-font-family);
min-height: 50px;
position: relative;
}
body.mobile .note-detail-readonly-text {
padding-left: 10px;
}
.note-detail-readonly-text p:first-child, .note-detail-readonly-text::before {
margin-top: 0;
}
.note-detail-readonly-text img {
max-width: 100%;
cursor: pointer;
}
.edit-text-note-button {
position: absolute;
position: absolute;
top: 5px;
right: 10px;
font-size: 150%;
Expand All @@ -59,7 +60,7 @@ const TPL = `
border-radius: var(--button-border-radius);
color: var(--button-text-color);
}
.edit-text-note-button:hover {
border-color: var(--button-border-color);
}
Expand Down Expand Up @@ -90,7 +91,7 @@ export default class ReadOnlyTextTypeWidget extends AbstractTextTypeWidget {
// we load CKEditor also for read only notes because they contain content styles required for correct rendering of even read only notes
// we could load just ckeditor-content.css but that causes CSS conflicts when both build CSS and this content CSS is loaded at the same time
// (see https://github.com/zadam/trilium/issues/1590 for example of such conflict)
await libraryLoader.requireLibrary(libraryLoader.CKEDITOR);
await libraryLoader.requireLibrary(libraryLoader.CKEDITOR);

const blob = await note.getBlob();

Expand All @@ -112,9 +113,26 @@ export default class ReadOnlyTextTypeWidget extends AbstractTextTypeWidget {
renderMathInElement(this.$content[0], {trust: true});
}

await this.#applyInlineMermaid();
await applySyntaxHighlight(this.$content);
}

async #applyInlineMermaid() {
const $el = this.$content.find('code[class="language-mermaid"]').closest("pre");
if (!$el.length) {
return;
}

// Rewrite the code block from <pre><code> to <div> in order not to apply a codeblock style to it.
$el.replaceWith((i, content) => {
return $('<div class="mermaid-diagram">').text($(content).text());
});

// Initialize mermaid
await libraryLoader.requireLibrary(libraryLoader.MERMAID);
mermaid.init(getMermaidConfig(), this.$content.find(".mermaid-diagram"));
}

async refreshIncludedNoteEvent({noteId}) {
this.refreshIncludedNote(this.$content, noteId);
}
Expand Down

0 comments on commit b81c15c

Please sign in to comment.