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