2025-08-14 00:00:03 +08:00
|
|
|
{{- /* Mermaid */ -}}
|
2025-02-26 08:39:26 +00:00
|
|
|
|
2025-08-14 00:00:03 +08:00
|
|
|
{{- $mermaidBase := "" -}}
|
|
|
|
{{- $useDefaultCdn := true -}}
|
|
|
|
{{- with site.Params.mermaid.base -}}
|
|
|
|
{{- $mermaidBase = . -}}
|
|
|
|
{{- $useDefaultCdn = false -}}
|
|
|
|
{{- end -}}
|
2025-03-30 21:20:50 +01:00
|
|
|
|
2025-08-14 00:00:03 +08:00
|
|
|
{{- $mermaidJsAsset := "" -}}
|
|
|
|
{{- with site.Params.mermaid.js -}}
|
|
|
|
{{- $mermaidJsAsset = . -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- /* If only js is set without base, use local asset loading */ -}}
|
|
|
|
{{- if and $useDefaultCdn (ne $mermaidJsAsset "") -}}
|
|
|
|
{{- $useDefaultCdn = false -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- /* Set default CDN base if needed */ -}}
|
|
|
|
{{- if $useDefaultCdn -}}
|
|
|
|
{{- $mermaidBase = "https://cdn.jsdelivr.net/npm/mermaid@latest/dist" -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- $isRemoteBase := or (strings.HasPrefix $mermaidBase "http://") (strings.HasPrefix $mermaidBase "https://") -}}
|
|
|
|
{{- $minSuffix := cond hugo.IsProduction ".min" "" -}}
|
|
|
|
|
|
|
|
{{- /* JS retrieval: get raw JS from either local asset or remote, then process */ -}}
|
|
|
|
{{- if $isRemoteBase -}}
|
|
|
|
{{- $jsPath := cond (ne $mermaidJsAsset "") $mermaidJsAsset (printf "mermaid%s.js" $minSuffix) -}}
|
|
|
|
{{- $mermaidJsUrl := printf "%s/%s" $mermaidBase $jsPath -}}
|
|
|
|
{{- with try (resources.GetRemote $mermaidJsUrl) -}}
|
|
|
|
{{- with .Err -}}
|
|
|
|
{{- errorf "Could not retrieve Mermaid js file from %s. Reason: %s." $mermaidJsUrl . -}}
|
|
|
|
{{- else with .Value -}}
|
|
|
|
{{- with resources.Copy (printf "js/mermaid%s.js" $minSuffix) . -}}
|
|
|
|
{{- $mermaidJs := . | fingerprint -}}
|
|
|
|
<script defer src="{{ $mermaidJs.RelPermalink }}" integrity="{{ $mermaidJs.Data.Integrity }}" crossorigin="anonymous"></script>
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- else if $mermaidJsAsset -}}
|
|
|
|
{{- with resources.Get $mermaidJsAsset -}}
|
|
|
|
{{- $mermaidJs := . | fingerprint -}}
|
|
|
|
<script defer src="{{ $mermaidJs.RelPermalink }}" integrity="{{ $mermaidJs.Data.Integrity }}" crossorigin="anonymous"></script>
|
|
|
|
{{- else -}}
|
|
|
|
{{- errorf "Mermaid js asset not found at %q" $mermaidJsAsset -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
2025-03-30 21:20:50 +01:00
|
|
|
|
2025-02-26 08:39:26 +00:00
|
|
|
<script>
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
|
|
// Store original mermaid code for each diagram
|
2025-03-30 21:20:50 +01:00
|
|
|
document.querySelectorAll(".mermaid").forEach((el) => {
|
2025-02-26 08:39:26 +00:00
|
|
|
el.dataset.original = el.innerHTML;
|
|
|
|
});
|
|
|
|
|
|
|
|
const theme = document.documentElement.classList.contains("dark") ? "dark" : "default";
|
|
|
|
mermaid.initialize({ startOnLoad: true, theme: theme });
|
|
|
|
|
|
|
|
let timeout;
|
|
|
|
new MutationObserver(() => {
|
|
|
|
clearTimeout(timeout);
|
|
|
|
timeout = setTimeout(() => {
|
|
|
|
const theme = document.documentElement.classList.contains("dark") ? "dark" : "default";
|
2025-03-30 21:20:50 +01:00
|
|
|
document.querySelectorAll(".mermaid").forEach((el) => {
|
2025-02-26 08:39:26 +00:00
|
|
|
// Reset to original content, preserving HTML
|
|
|
|
el.innerHTML = el.dataset.original;
|
|
|
|
el.removeAttribute("data-processed");
|
|
|
|
});
|
|
|
|
mermaid.initialize({ startOnLoad: true, theme: theme });
|
|
|
|
mermaid.init();
|
|
|
|
}, 150);
|
|
|
|
}).observe(document.documentElement, {
|
|
|
|
attributes: true,
|
2025-03-30 21:20:50 +01:00
|
|
|
attributeFilter: ["class"],
|
2025-02-26 08:39:26 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|