quartz-research-note/assets/js/router.js

13 lines
588 B
JavaScript
Raw Normal View History

2022-05-03 16:04:15 +00:00
import { router, navigate } from "https://unpkg.com/million@1.8.9-0/dist/router.mjs"
2022-05-03 15:47:42 +00:00
2022-05-03 17:16:09 +00:00
export const attachSPARouting = (draw) => {
2022-05-03 15:47:42 +00:00
// SPA navigation for access later
window.navigate = navigate
// We only mutate document.title and content within .singlePage element
router(".singlePage")
// We need on initial load, then subsequent redirs
// requestAnimationFrame() delays graph draw until SPA routing is finished
2022-05-03 17:16:09 +00:00
window.addEventListener("million:navigate", () => requestAnimationFrame(draw))
window.addEventListener("DOMContentLoaded", () => requestAnimationFrame(draw))
2022-05-03 15:47:42 +00:00
}