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 { enhance } from "$app/forms"
import type { Theme, User } from "$lib" import type { Theme, User } from "$lib"
import ThemePicker from "./ThemePicker.svelte" import ThemePicker from "./ThemePicker.svelte"
import { page } from '$app/stores';
let { theme, user } = $props<{ theme: Theme; user: User }>() let { theme, user } = $props<{ theme: Theme; user: User }>()
@ -35,7 +36,11 @@
{/each} {/each}
{#if !user} {#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> <a href="/register">Register</a>
{/if} {/if}

View File

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

View File

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

View File

@ -11,6 +11,6 @@ export const actions = {
expires: new Date(0), 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) { if (res.ok) {
let num = Math.floor(Math.random() * data.length) let num = Math.floor(Math.random() * data.length)
console.log(data[num]["lines"])
return 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 type { PageServerLoad } from "./$types"
import { db } from "$lib/server/database" import { db } from "$lib/server/database"
import type { User } from "$lib/index" import type { User } from "$lib/index"
@ -31,7 +30,6 @@ export const actions = {
updateTimer: async ({ request, locals }) => { updateTimer: async ({ request, locals }) => {
const user = locals.user const user = locals.user
const data = await request.formData() const data = await request.formData()
console.log(data)
const breakInterval = parseInt(data.get("break-interval")) const breakInterval = parseInt(data.get("break-interval"))
const miniBreakDuration = parseInt(data.get("mini-break-duration")) const miniBreakDuration = parseInt(data.get("mini-break-duration"))
const longBreakDuration = parseInt(data.get("long-break-duration")) const longBreakDuration = parseInt(data.get("long-break-duration"))

View File

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