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 {
|
declare global {
|
||||||
namespace App {
|
namespace App {
|
||||||
// interface Error {}
|
|
||||||
// interface Locals {}
|
|
||||||
interface Locals {
|
interface Locals {
|
||||||
user: User
|
user: User
|
||||||
}
|
}
|
||||||
// interface PageData {
|
|
||||||
// theme: Theme
|
|
||||||
// }
|
|
||||||
// interface PageData {}
|
|
||||||
// interface PageState {}
|
|
||||||
// interface Platform {}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,10 +20,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let icon = $derived.by(() => {
|
// let icon = $derived.by(() => theme)
|
||||||
if (theme === "light") return "light"
|
let icon = $derived(theme)
|
||||||
if (theme === "dark") return "dark"
|
|
||||||
})
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#key theme}
|
{#key theme}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
// place files you want to import through the `$lib` alias in this folder.
|
|
||||||
export type User = {
|
export type User = {
|
||||||
username: string
|
username: string
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { applyAction, enhance } from "$app/forms"
|
import { enhance } from "$app/forms"
|
||||||
|
|
||||||
export let form
|
export let form
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<h1>Login</h1>
|
|
||||||
|
|
||||||
<form action="?/login" method="POST" use:enhance>
|
<form action="?/login" method="POST" use:enhance>
|
||||||
<div>
|
<div>
|
||||||
<label for="username">Username</label>
|
<label for="username">Username</label>
|
||||||
|
|
|
@ -3,11 +3,6 @@ import bcrypt from "bcrypt"
|
||||||
|
|
||||||
import { db } from "$lib/server/database"
|
import { db } from "$lib/server/database"
|
||||||
|
|
||||||
// enum Roles {
|
|
||||||
// ADMIN = 'ADMIN',
|
|
||||||
// USER = 'USER',
|
|
||||||
// }
|
|
||||||
|
|
||||||
export const load = async ({ locals }) => {
|
export const load = async ({ locals }) => {
|
||||||
if (locals.user) {
|
if (locals.user) {
|
||||||
throw redirect(302, "/")
|
throw redirect(302, "/")
|
||||||
|
@ -42,7 +37,6 @@ export const actions = {
|
||||||
username,
|
username,
|
||||||
passwordHash: await bcrypt.hash(password, 10),
|
passwordHash: await bcrypt.hash(password, 10),
|
||||||
userAuthToken: crypto.randomUUID(),
|
userAuthToken: crypto.randomUUID(),
|
||||||
// role: { connect: { name: Roles.USER } },
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import NavBar from "$lib/components/NavBar.svelte"
|
import NavBar from "$lib/components/NavBar.svelte"
|
||||||
import { browser } from "$app/environment"
|
|
||||||
|
|
||||||
import "../app.css"
|
import "../app.css"
|
||||||
|
|
||||||
|
@ -15,7 +14,6 @@
|
||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
user = data.user
|
user = data.user
|
||||||
// browser && (document.documentElement.dataset.theme = theme)
|
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -50,18 +50,3 @@ self.addEventListener("fetch", (event) => {
|
||||||
|
|
||||||
event.respondWith(respond())
|
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