finally put #3 to bed with state. also introduce email/password signup and login

This commit is contained in:
Michael Dausmann
2023-04-13 20:11:18 +10:00
parent 028a7dda45
commit 6a7e7ec9ac
9 changed files with 105 additions and 32 deletions

View File

@@ -2,8 +2,11 @@
const user = useSupabaseUser()
const supabase = useSupabaseAuthClient();
const accountStore = useAccountStore()
const loading = ref(false)
const email = ref('')
const password = ref('')
const handleOtpLogin = async () => {
try {
@@ -18,8 +21,21 @@
}
}
watchEffect(() => {
const handleStandardLogin = async () => {
try {
loading.value = true
const { error } = await supabase.auth.signInWithPassword({ email: email.value, password: password.value })
if (error) throw error
} catch (error) {
alert(error)
} finally {
loading.value = false
}
}
watchEffect(async () => {
if (user.value) {
await accountStore.init();
navigateTo('/dashboard', {replace: true})
}
})
@@ -27,6 +43,16 @@
<template>
<div>
<h3>Sign In</h3>
<form @submit.prevent="handleStandardLogin">
<label for="email">Email:</label>
<input class="inputField" type="email" id="email" placeholder="Your email" v-model="email" />
<label for="password">Password:</label>
<input class="inputField" type="password" id="password" placeholder="Password" v-model="password" />
<p>By signing in, I agree to the <NuxtLink to="/privacy">Privacy Statement</NuxtLink> and <NuxtLink to="/terms">Terms of Service</NuxtLink>.</p>
<button type="submit" :disabled="loading">Sign In</button>
</form>
<form @submit.prevent="handleOtpLogin">
<label for="email">Email:</label>
<input class="inputField" type="email" id="email" placeholder="Your email" v-model="email" />