Remove unused code

This commit is contained in:
Santiago Lo Coco 2024-04-24 18:01:16 +02:00
parent a00d2a9e27
commit 8d806dfa22
7 changed files with 3 additions and 41 deletions

10
src/app.d.ts vendored
View File

@ -1,18 +1,8 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
interface Locals {
user: User
}
// interface PageData {
// theme: Theme
// }
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}

View File

@ -20,10 +20,8 @@
}
}
let icon = $derived.by(() => {
if (theme === "light") return "light"
if (theme === "dark") return "dark"
})
// let icon = $derived.by(() => theme)
let icon = $derived(theme)
</script>
{#key theme}

View File

@ -1,4 +1,3 @@
// place files you want to import through the `$lib` alias in this folder.
export type User = {
username: string
}

View File

@ -1,11 +1,9 @@
<script lang="ts">
import { applyAction, enhance } from "$app/forms"
import { enhance } from "$app/forms"
export let form
</script>
<h1>Login</h1>
<form action="?/login" method="POST" use:enhance>
<div>
<label for="username">Username</label>

View File

@ -3,11 +3,6 @@ import bcrypt from "bcrypt"
import { db } from "$lib/server/database"
// enum Roles {
// ADMIN = 'ADMIN',
// USER = 'USER',
// }
export const load = async ({ locals }) => {
if (locals.user) {
throw redirect(302, "/")
@ -42,7 +37,6 @@ export const actions = {
username,
passwordHash: await bcrypt.hash(password, 10),
userAuthToken: crypto.randomUUID(),
// role: { connect: { name: Roles.USER } },
},
})

View File

@ -1,6 +1,5 @@
<script lang="ts">
import NavBar from "$lib/components/NavBar.svelte"
import { browser } from "$app/environment"
import "../app.css"
@ -15,7 +14,6 @@
$effect(() => {
user = data.user
// browser && (document.documentElement.dataset.theme = theme)
})
</script>

View File

@ -50,18 +50,3 @@ self.addEventListener("fetch", (event) => {
event.respondWith(respond())
})
// self.addEventListener('storage', event => {
// if (event.key === 'theme') {
// const newCacheName = event.newValue === 'dark' ? 'my-cache-dark' : 'my-cache';
// caches.keys().then(cacheNames => {
// return Promise.all(
// cacheNames.filter(cacheName => cacheName === CACHE)
// .map(cacheName => caches.delete(cacheName))
// );
// }).then(() => {
// return caches.open(newCacheName);
// })
// }
// })