214 lines
8.4 KiB
Vue
214 lines
8.4 KiB
Vue
<script setup lang="ts">
|
|
import { deriveKey } from '~/utils/crypto';
|
|
|
|
const { client: authClient, signUp, session } = useAuth();
|
|
|
|
definePageMeta({
|
|
layout: 'auth',
|
|
});
|
|
const to = useRoute().query.to as string | undefined;
|
|
|
|
if (session.value !== null) {
|
|
await navigateTo(to ?? '/');
|
|
}
|
|
|
|
const config = useRuntimeConfig();
|
|
|
|
if (config.public.disableSignup) {
|
|
await navigateTo(to ? `/auth/login?to=${to}` : '/auth/login');
|
|
}
|
|
|
|
const form = reactive({
|
|
name: '',
|
|
email: '',
|
|
password: '',
|
|
confirmPassword: '',
|
|
});
|
|
const loading = ref(false);
|
|
|
|
const nameInputEl = ref<HTMLInputElement | null>(null);
|
|
const emailInputEl = ref<HTMLInputElement | null>(null);
|
|
const passwordInputEl = ref<HTMLInputElement | null>(null);
|
|
const confirmPasswordInputEl = ref<HTMLInputElement | null>(null);
|
|
|
|
const tempForm = {
|
|
name: '',
|
|
email: '',
|
|
password: '',
|
|
confirmPassword: '',
|
|
};
|
|
|
|
// prevent text fields from clearing on hydration
|
|
onBeforeMount(() => {
|
|
tempForm.name = (document.getElementById('name') as HTMLInputElement)?.value ?? '';
|
|
tempForm.email = (document.getElementById('email') as HTMLInputElement)?.value ?? '';
|
|
tempForm.password = (document.getElementById('password') as HTMLInputElement)?.value ?? '';
|
|
tempForm.confirmPassword = (document.getElementById('confirmPassword') as HTMLInputElement)?.value ?? '';
|
|
});
|
|
|
|
const hydrated = ref(false);
|
|
|
|
onMounted(() => {
|
|
form.name = tempForm.name;
|
|
form.email = tempForm.email;
|
|
form.password = tempForm.password;
|
|
form.confirmPassword = tempForm.confirmPassword;
|
|
hydrated.value = true;
|
|
|
|
nameInputEl.value!.addEventListener('input', () => {
|
|
nameInputEl.value!.setCustomValidity('');
|
|
});
|
|
|
|
emailInputEl.value!.addEventListener('input', () => {
|
|
emailInputEl.value!.setCustomValidity('');
|
|
});
|
|
|
|
passwordInputEl.value!.addEventListener('input', () => {
|
|
passwordInputEl.value!.setCustomValidity('');
|
|
});
|
|
|
|
confirmPasswordInputEl.value!.addEventListener('input', () => {
|
|
if (passwordInputEl.value!.value !== confirmPasswordInputEl.value!.value) {
|
|
confirmPasswordInputEl.value!.setCustomValidity('Passwords do not match');
|
|
confirmPasswordInputEl.value!.reportValidity();
|
|
} else {
|
|
confirmPasswordInputEl.value!.setCustomValidity('');
|
|
}
|
|
});
|
|
});
|
|
|
|
const submit = async () => {
|
|
const inputs = [nameInputEl, emailInputEl, passwordInputEl, confirmPasswordInputEl];
|
|
|
|
for (const input of inputs) {
|
|
if (input.value?.validity.valid === false) {
|
|
input.value!.reportValidity();
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (form.password !== form.confirmPassword) {
|
|
alert('Passwords do not match');
|
|
return;
|
|
}
|
|
|
|
loading.value = true;
|
|
|
|
const res = await signUp(form.email, form.password, form.name);
|
|
loading.value = false;
|
|
if (!res.ok) {
|
|
if (!res.error.data) {
|
|
console.error('Failed to sign up:', res.error);
|
|
alert('Something went wrong');
|
|
return;
|
|
}
|
|
|
|
const errorCode = res.error.data.code as keyof typeof authClient.$ERROR_CODES;
|
|
|
|
// TODO: i18n
|
|
// ref https://www.better-auth.com/docs/concepts/client#error-codes
|
|
switch (errorCode) {
|
|
case 'USER_ALREADY_EXISTS':
|
|
case 'USER_ALREADY_EXISTS_USE_ANOTHER_EMAIL':
|
|
emailInputEl.value!.setCustomValidity('Account with this email already exists');
|
|
emailInputEl.value!.reportValidity();
|
|
break;
|
|
case 'INVALID_EMAIL':
|
|
emailInputEl.value!.setCustomValidity(res.error.data.message!);
|
|
emailInputEl.value!.reportValidity();
|
|
break;
|
|
case 'INVALID_PASSWORD':
|
|
passwordInputEl.value!.setCustomValidity(res.error.data.message!);
|
|
passwordInputEl.value!.reportValidity();
|
|
break;
|
|
default:
|
|
console.log(res.error);
|
|
alert('Something went wrong: ' + res.error.data.message);
|
|
break;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
const key = await deriveKey(form.password, res.data.user.id);
|
|
localStorage.setItem('encryptionKey', JSON.stringify(key));
|
|
|
|
return navigateTo(to ?? '/');
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative flex flex-col items-center justify-center w-full h-full p-4 overflow-hidden">
|
|
<!-- Background decorative blobs -->
|
|
<div
|
|
class="absolute -top-24 -right-24 w-96 h-96 bg-[var(--color-accent)] opacity-10 blur-[100px] rounded-full pointer-events-none">
|
|
</div>
|
|
<div
|
|
class="absolute -bottom-24 -left-24 w-96 h-96 bg-[var(--color-accent)] opacity-5 blur-[100px] rounded-full pointer-events-none">
|
|
</div>
|
|
|
|
<div class="z-10 max-w-sm w-full">
|
|
<div class="flex flex-col items-center mb-4 text-center">
|
|
<h1 class="text-3xl font-bold tracking-tight">Veridian</h1>
|
|
<p class="text-[var(--text-secondary)]">Create your account</p>
|
|
</div>
|
|
|
|
<div class="rounded-2xl">
|
|
<form class="flex flex-col gap-2" @submit.prevent="submit">
|
|
<div class="flex flex-col gap-1.5">
|
|
<label for="name"
|
|
class="text-sm font-medium uppercase tracking-wider text-[var(--text-secondary)] ml-1">Name</label>
|
|
<input required ref="nameInputEl" type="text" id="name" v-model="form.name"
|
|
placeholder="John Doe"
|
|
class="focus:ring-2 focus:ring-[var(--color-accent)]/20 border border-[var(--color-border)] transition-all" />
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-1.5">
|
|
<label for="email"
|
|
class="text-sm font-medium uppercase tracking-wider text-[var(--text-secondary)] ml-1">Email</label>
|
|
<input required pattern=".{1,}@.{1,}\..{2,3}" ref="emailInputEl" type="email"
|
|
autocomplete="email" id="email" v-model="form.email" placeholder="name@example.com"
|
|
class="focus:ring-2 focus:ring-[var(--color-accent)]/20 border border-[var(--color-border)] transition-all" />
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-1.5">
|
|
<label for="password"
|
|
class="text-sm font-medium uppercase tracking-wider text-[var(--text-secondary)] ml-1">Password</label>
|
|
<input required minlength="8" maxlength="128" ref="passwordInputEl" type="password"
|
|
autocomplete="new-password" id="password" v-model="form.password" placeholder="••••••••"
|
|
class="focus:ring-2 focus:ring-[var(--color-accent)]/20 border border-[var(--color-border)] transition-all" />
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-1.5">
|
|
<label for="confirmPassword"
|
|
class="text-sm font-medium uppercase tracking-wider text-[var(--text-secondary)] ml-1">Confirm
|
|
Password</label>
|
|
<input required minlength="8" maxlength="128" ref="confirmPasswordInputEl" type="password"
|
|
autocomplete="new-password" id="confirmPassword" v-model="form.confirmPassword"
|
|
placeholder="••••••••"
|
|
class="focus:ring-2 focus:ring-[var(--color-accent)]/20 border border-[var(--color-border)] transition-all" />
|
|
</div>
|
|
|
|
<button :disabled="!hydrated"
|
|
class="accent w-full mt-2 h-11 flex items-center justify-center font-semibold" type="submit">
|
|
<span v-if="loading" class="i-svg-spinners-90-ring-with-bg text-xl"></span>
|
|
<span v-else>Register</span>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
<p class="text-sm text-center mt-3 text-[var(--text-secondary)]">
|
|
Already have an account?
|
|
<NuxtLink :to="to ? `/auth/login?to=${to}` : '/auth/login'"
|
|
class="text-[var(--color-accent)] font-medium @hover:underline">
|
|
Log in here
|
|
</NuxtLink>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="absolute bottom-4 right-4">
|
|
<ThemeSwitcher size="medium" />
|
|
</div>
|
|
</div>
|
|
</template>
|