@ -35,6 +35,10 @@
< script src = "{{$darkMode.Permalink}}" > < / script >
< script src = "{{$darkMode.Permalink}}" > < / script >
{{partial "katex.html" .}}
{{partial "katex.html" .}}
{{ $popover := resources.Get "js/popover.js" | resources.Fingerprint "md5" |
resources.Minify }}
< script src = "{{$popover.Permalink}}" > < / script >
<!-- Preload page vars -->
<!-- Preload page vars -->
{{$linkIndex := resources.Get "indices/linkIndex.json" | resources.Fingerprint
{{$linkIndex := resources.Get "indices/linkIndex.json" | resources.Fingerprint
"md5" | resources.Minify | }} {{$contentIndex := resources.Get
"md5" | resources.Minify | }} {{$contentIndex := resources.Get
@ -59,35 +63,32 @@
}))
}))
< / script >
< / script >
{{if $.Site.Data.config.enableSPA}}
{{if $.Site.Data.config.enableSPA}}
{{ $router := resources.Get "js/router.js" | resources.Fingerprint "md5" |
resources.Minify }}
< script type = "module" >
< script type = "module" >
import { router, navigate } from "https://unpkg.com/million/dist/router.mjs";
import { attachSPARouting } from '{{$router.Permalink}}';
// SPA navigation for access later
// NOTE: everything within this callback will be executed for every page navigation. This is a good place to put JavaScript that loads or modifies data on the page.
window.navigate = navigate;
const draw = () => {
// We only mutate document.title and content within .singlePage element
const container = document.getElementById("graph-container")
router(".singlePage");
// retry if the graph is not ready
const callback = () => {
if (!container) return requestAnimationFrame(draw)
// requestAnimationFrame() delays graph draw until SPA routing is finished
// clear the graph in case there is anything within it
const draw = () => {
container.textContent = ""
const container = document.getElementById("graph-container");
// retry if the graph is not ready
drawGraph(
if (!container) return requestAnimationFrame(draw);
{{strings.TrimRight "/" .Site.BaseURL}},
// clear the graph in case there is anything within it
{{$.Site.Data.graphConfig.paths}},
container.textContent = "";
{{$.Site.Data.graphConfig.depth}},
{{$.Site.Data.graphConfig.enableDrag}},
{{$.Site.Data.graphConfig.enableLegend}},
{{$.Site.Data.graphConfig.enableZoom}}
);
drawGraph(
{{if $.Site.Data.config.enableLinkPreview}}
{{strings.TrimRight "/" .Site.BaseURL}},
initPopover({{strings.TrimRight "/" .Site.BaseURL }})
{{$.Site.Data.graphConfig.paths}},
{{end}}
{{$.Site.Data.graphConfig.depth}},
{{$.Site.Data.graphConfig.enableDrag}},
{{$.Site.Data.graphConfig.enableLegend}},
{{$.Site.Data.graphConfig.enableZoom}}
);
};
requestAnimationFrame(draw);
};
};
// We need on initial load, then subsequent redirs
attachSPARouting(draw);
window.addEventListener("million:navigate", callback);
window.addEventListener("DOMContentLoaded", callback);
< / script >
< / script >
{{else}}
{{else}}
< script > window . navigate = ( url ) => window . location . href = url < / script >
< script > window . navigate = ( url ) => window . location . href = url < / script >