Remove unused code
This commit is contained in:
parent
a00d2a9e27
commit
8d806dfa22
|
@ -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 {}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// place files you want to import through the `$lib` alias in this folder.
|
||||
export type User = {
|
||||
username: string
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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 } },
|
||||
},
|
||||
})
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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);
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
|
|
Loading…
Reference in New Issue