mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-08-08 21:59:13 +00:00
initial stuff
This commit is contained in:
51
src/lib/router/Router.svelte
Normal file
51
src/lib/router/Router.svelte
Normal file
@@ -0,0 +1,51 @@
|
||||
<!-- DO NOT TOUCH THIS FILE AT ANY COST -->
|
||||
<!-- unless the router is broken 👉👈 -->
|
||||
|
||||
<script>
|
||||
export function routeTo(path) {
|
||||
window.history.pushState({}, "", path);
|
||||
window.dispatchEvent(new PopStateEvent("popstate"));
|
||||
}
|
||||
|
||||
let { routes } = $props();
|
||||
|
||||
let currentPath = $state(window.location.pathname);
|
||||
let CurrentComponent = $derived(routes[currentPath] || routes["/"]);
|
||||
|
||||
function navigate(path) {
|
||||
window.history.pushState({}, "", path);
|
||||
currentPath = path;
|
||||
}
|
||||
|
||||
// Handle back/forward buttons
|
||||
$effect(() => {
|
||||
const handlePopState = () => {
|
||||
currentPath = window.location.pathname;
|
||||
};
|
||||
|
||||
window.addEventListener("popstate", handlePopState);
|
||||
|
||||
return () => window.removeEventListener("popstate", handlePopState);
|
||||
});
|
||||
|
||||
// Intercept link clicks
|
||||
$effect(() => {
|
||||
const handleClick = (e) => {
|
||||
if (
|
||||
e.target.tagName === "A" &&
|
||||
e.target.getAttribute("href")?.startsWith("/")
|
||||
) {
|
||||
e.preventDefault();
|
||||
navigate(e.target.getAttribute("href"));
|
||||
}
|
||||
};
|
||||
|
||||
window.addEventListener("click", handleClick);
|
||||
|
||||
return () => window.removeEventListener("click", handleClick);
|
||||
});
|
||||
</script>
|
||||
|
||||
{#if CurrentComponent}
|
||||
<CurrentComponent />
|
||||
{/if}
|
||||
Reference in New Issue
Block a user