Redirect to previous page in login

This commit is contained in:
Santiago Lo Coco 2024-05-18 17:00:49 +02:00
parent 0c65254f4a
commit 63f8f81321
7 changed files with 19 additions and 11 deletions

View File

@ -2,6 +2,7 @@
import { enhance } from "$app/forms"
import type { Theme, User } from "$lib"
import ThemePicker from "./ThemePicker.svelte"
import { page } from '$app/stores';
let { theme, user } = $props<{ theme: Theme; user: User }>()
@ -35,7 +36,11 @@
{/each}
{#if !user}
<a href="/login">Login</a>
{#if $page.url.pathname !== "/login" && $page.url.pathname !== "/register" && $page.url.pathname !== "/"}
<a href="/login?from={$page.url.pathname}">Login</a>
{:else}
<a href="/login">Login</a>
{/if}
<a href="/register">Register</a>
{/if}

View File

@ -3,10 +3,14 @@ import bcrypt from "bcrypt"
import { db } from "$lib/server/database"
export const load = async ({ locals }) => {
export const load = async ({ locals, url }) => {
if (locals.user) {
throw redirect(302, "/")
}
let from = url.searchParams.get('from')
return { from }
}
export const actions = {
@ -14,6 +18,7 @@ export const actions = {
const data = await request.formData()
const username = data.get("username")
const password = data.get("password")
let from = data.get("from")
if (
typeof username !== "string" ||
@ -49,6 +54,6 @@ export const actions = {
maxAge: 60 * 60 * 24 * 30,
})
throw redirect(302, "/")
throw redirect(302, from)
},
}

View File

@ -1,7 +1,9 @@
<script lang="ts">
import { enhance } from "$app/forms"
export let form
let { form, data } = $props()
const from = data.from || "/";
</script>
<form action="?/login" method="POST" use:enhance>
@ -10,6 +12,8 @@
<input id="username" name="username" type="text" required />
</div>
<input id="from" name="from" type="hidden" value={from}>
<div>
<label for="password">Password</label>
<input id="password" name="password" type="password" required />

View File

@ -11,6 +11,6 @@ export const actions = {
expires: new Date(0),
})
throw redirect(302, "/login")
throw redirect(302, "/")
},
}

View File

@ -19,7 +19,6 @@ async function fetchGuides(event: ServerLoadEvent) {
if (res.ok) {
let num = Math.floor(Math.random() * data.length)
console.log(data[num]["lines"])
return data[num]["lines"]
}
}

View File

@ -1,4 +1,3 @@
import { redirect, type ServerLoadEvent } from "@sveltejs/kit"
import type { PageServerLoad } from "./$types"
import { db } from "$lib/server/database"
import type { User } from "$lib/index"
@ -31,7 +30,6 @@ export const actions = {
updateTimer: async ({ request, locals }) => {
const user = locals.user
const data = await request.formData()
console.log(data)
const breakInterval = parseInt(data.get("break-interval"))
const miniBreakDuration = parseInt(data.get("mini-break-duration"))
const longBreakDuration = parseInt(data.get("long-break-duration"))

View File

@ -74,7 +74,6 @@
})
$effect(() => {
console.log(MINI_BREAK_DURATION_STORE)
MINI_BREAK_DURATION = MINI_BREAK_DURATION_STORE * 1000
localStorage.setItem("miniBreakDuration", MINI_BREAK_DURATION_STORE)
updateTimer()
@ -129,7 +128,6 @@
timer = setInterval(() => {
const newTimeLeft = timeLeft - 1000
if (newTimeLeft <= 0) {
console.log(timerState)
if (timerState !== "Ready") {
timerState = "Ready"
miniBreakCount++
@ -162,7 +160,6 @@
}
timeLeftDisplay = formatTime(newTimeLeft)
timeLeft = newTimeLeft
console.log(timeLeft)
}, 1000)
}