dalfuss.net/assets/js/router.js

13 lines
588 B
JavaScript
Raw Normal View History

2022-05-03 09:04:15 -07:00
import { router, navigate } from "https://unpkg.com/million@1.8.9-0/dist/router.mjs"
2022-05-03 08:47:42 -07:00
2022-05-03 10:16:09 -07:00
export const attachSPARouting = (draw) => {
2022-05-03 08:47:42 -07: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 10:16:09 -07:00
window.addEventListener("million:navigate", () => requestAnimationFrame(draw))
window.addEventListener("DOMContentLoaded", () => requestAnimationFrame(draw))
2022-05-03 08:47:42 -07:00
}