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({ event.setHeaders({
"cache-control": `private, max-age=${5 * 60}`, "cache-control": `private, max-age=${5 * 60}`,
}) })
const response = await resolve(event, { const response = await resolve(event, {
transformPageChunk: ({ html }) => html.replace("%THEME%", theme), transformPageChunk: ({ html }) => html.replace("%THEME%", theme),
}) })

View File

@ -6,24 +6,27 @@
import { slide } from "svelte/transition" import { slide } from "svelte/transition"
import type { Theme } from "../../hooks.server" import type { Theme } from "../../hooks.server"
import { applyAction, enhance } from "$app/forms" import { applyAction, enhance } from "$app/forms"
import { browser } from "$app/environment"
let { theme } = $props<{ theme: Theme }>() let { theme } = $props<{ theme: Theme }>()
function toggleTheme() { function toggleTheme() {
const currentIndex = themes.indexOf(theme) const currentIndex = themes.indexOf(theme)
theme = themes[(currentIndex + 1) % themes.length] theme = themes[(currentIndex + 1) % themes.length]
if (theme == "auto") { if (theme == "auto") {
theme = window.matchMedia("(prefers-color-scheme: dark)").matches theme =
? "light" browser && window.matchMedia("(prefers-color-scheme: dark)").matches
: "dark" ? "light"
: "dark"
} }
console.log(theme)
} }
let icon = $derived.by(() => { let icon = $derived.by(() => {
if (theme === "light") return "🌞" if (theme === "light") return "🌞"
if (theme === "dark") return "🌙" if (theme === "dark") return "🌙"
if (theme === "auto") 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"> <script lang="ts">
import NavBar from "$lib/components/NavBar.svelte" 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" import "../app.css"
// let lastTheme: string | null = null
// if (typeof window !== "undefined" && typeof localStorage !== "undefined") {
// lastTheme = localStorage.getItem("theme") || "dark"
// }
let { data } = $props() let { data } = $props()
let theme = $state(data.theme as Theme) let theme = $state(data.theme as Theme)
$effect(() => {
browser && (document.documentElement.dataset.theme = theme)
})
</script> </script>
<div data-theme={theme}> <div>
<!-- <ThemePicker bind:theme /> -->
<NavBar bind:theme /> <NavBar bind:theme />
<slot /> <slot />