Use effect

This commit is contained in:
Santiago Lo Coco 2024-04-23 23:58:17 +02:00
parent d63597a480
commit 972b7b983f
3 changed files with 16 additions and 13 deletions

View File

@ -16,6 +16,7 @@ export const handle: Handle = async ({ event, resolve }) => {
event.setHeaders({
"cache-control": `private, max-age=${5 * 60}`,
})
const response = await resolve(event, {
transformPageChunk: ({ html }) => html.replace("%THEME%", theme),
})

View File

@ -6,24 +6,27 @@
import { slide } from "svelte/transition"
import type { Theme } from "../../hooks.server"
import { applyAction, enhance } from "$app/forms"
import { browser } from "$app/environment"
let { theme } = $props<{ theme: Theme }>()
function toggleTheme() {
const currentIndex = themes.indexOf(theme)
theme = themes[(currentIndex + 1) % themes.length]
if (theme == "auto") {
theme = window.matchMedia("(prefers-color-scheme: dark)").matches
? "light"
: "dark"
theme =
browser && window.matchMedia("(prefers-color-scheme: dark)").matches
? "light"
: "dark"
}
console.log(theme)
}
let icon = $derived.by(() => {
if (theme === "light") return "🌞"
if (theme === "dark") return "🌙"
if (theme === "auto")
return window.matchMedia("(prefers-color-scheme: dark)").matches
return browser &&
window.matchMedia("(prefers-color-scheme: dark)").matches
? "🌙"
: "🌞"
})

View File

@ -1,21 +1,20 @@
<script lang="ts">
import NavBar from "$lib/components/NavBar.svelte"
import ThemePicker, { type Theme } from "$lib/components/ThemePicker.svelte"
import type { Theme } from "../hooks.server"
import { browser } from "$app/environment"
import "../app.css"
// let lastTheme: string | null = null
// if (typeof window !== "undefined" && typeof localStorage !== "undefined") {
// lastTheme = localStorage.getItem("theme") || "dark"
// }
let { data } = $props()
let theme = $state(data.theme as Theme)
$effect(() => {
browser && (document.documentElement.dataset.theme = theme)
})
</script>
<div data-theme={theme}>
<!-- <ThemePicker bind:theme /> -->
<div>
<NavBar bind:theme />
<slot />