krata/_includes/mermaid.html

59 lines
1.8 KiB
HTML
Raw Permalink Normal View History

<!-- mermaid-js loader -->
<script type="text/javascript">
(function () {
2021-12-12 19:37:10 +01:00
function updateMermaid(event) {
if (event.source === window && event.data && event.data.direction === ModeToggle.ID) {
2021-12-12 19:37:10 +01:00
const mode = event.data.message;
if (typeof mermaid === 'undefined') {
2021-12-12 19:37:10 +01:00
return;
}
let expectedTheme = mode === ModeToggle.DARK_MODE ? 'dark' : 'default';
let config = { theme: expectedTheme };
2021-12-12 19:37:10 +01:00
/* Re-render the SVG <https://github.com/mermaid-js/mermaid/issues/311#issuecomment-332557344> */
$('.mermaid').each(function () {
2021-12-12 19:37:10 +01:00
let svgCode = $(this).prev().children().html();
$(this).removeAttr('data-processed');
2021-12-12 19:37:10 +01:00
$(this).html(svgCode);
});
mermaid.initialize(config);
mermaid.init(undefined, '.mermaid');
2021-12-12 19:37:10 +01:00
}
}
let initTheme = 'default';
const html = document.documentElement;
2020-12-09 19:42:46 +01:00
if (
(html.hasAttribute('data-mode') && html.getAttribute('data-mode') === 'dark') ||
(!html.hasAttribute('data-mode') && window.matchMedia('(prefers-color-scheme: dark)').matches)
) {
initTheme = 'dark';
2020-12-10 12:49:43 +01:00
}
2020-12-09 19:42:46 +01:00
2020-12-10 12:49:43 +01:00
let mermaidConf = {
theme: initTheme /* <default|dark|forest|neutral> */
2020-12-10 12:49:43 +01:00
};
2020-12-09 19:42:46 +01:00
/* Create mermaid tag */
document.querySelectorAll('pre>code.language-mermaid').forEach((elem) => {
const svgCode = elem.textContent;
const backup = elem.parentElement;
backup.classList.add('unloaded');
/* create mermaid node */
let mermaid = document.createElement('pre');
mermaid.classList.add('mermaid');
const text = document.createTextNode(svgCode);
mermaid.appendChild(text);
backup.after(mermaid);
2020-12-10 12:49:43 +01:00
});
2020-12-09 19:42:46 +01:00
2020-12-10 12:49:43 +01:00
mermaid.initialize(mermaidConf);
2021-12-12 19:37:10 +01:00
window.addEventListener('message', updateMermaid);
})();
2020-12-09 19:42:46 +01:00
</script>