feat: sign in with email
This commit is contained in:
42
pages/enter.vue
Normal file
42
pages/enter.vue
Normal file
@@ -0,0 +1,42 @@
|
||||
<template>
|
||||
<div class="flex container flex-col min-h-screen">
|
||||
<span v-if="signingInWithEmail" class="info">{{ $t("loading") }}</span>
|
||||
<span v-else class="info">{{ $t("waiting_for_connection") }}</span>
|
||||
<pre v-if="error">{{ error }}</pre>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { fb } from "~/helpers/fb"
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
signingInWithEmail: false,
|
||||
error: null,
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
if (fb.isSignInWithEmailLink(window.location.href)) {
|
||||
this.signingInWithEmail = true
|
||||
let email = window.localStorage.getItem("emailForSignIn")
|
||||
if (!email) {
|
||||
email = window.prompt("Please provide your email for confirmation")
|
||||
}
|
||||
await fb
|
||||
.signInWithEmailLink(email, window.location.href)
|
||||
.then(() => {
|
||||
window.localStorage.removeItem("emailForSignIn")
|
||||
this.$router.push({ path: "/" })
|
||||
})
|
||||
.catch((error) => {
|
||||
this.signingInWithEmail = false
|
||||
this.error = error.message
|
||||
})
|
||||
.finally(() => {
|
||||
this.signingInWithEmail = false
|
||||
})
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user