forked from NdoleStudio/httpsms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFirebaseAuth.vue
More file actions
286 lines (269 loc) · 6.64 KB
/
Copy pathFirebaseAuth.vue
File metadata and controls
286 lines (269 loc) · 6.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<script setup lang="ts">
import {
getAuth,
signInWithPopup,
GoogleAuthProvider,
GithubAuthProvider,
signInWithEmailAndPassword,
createUserWithEmailAndPassword,
} from 'firebase/auth'
import { mdiGoogle, mdiGithub, mdiEmail } from '@mdi/js'
import type { User as FirebaseUser } from 'firebase/auth'
const props = withDefaults(
defineProps<{
to?: string
}>(),
{ to: '/' },
)
const router = useRouter()
const authStore = useAuthStore()
const notificationsStore = useNotificationsStore()
const appStore = useAppStore()
const loading = ref(false)
const showEmailForm = ref(false)
const isSignUp = ref(false)
const email = ref('')
const password = ref('')
const emailError = ref('')
type LoginMethod = 'google' | 'github' | 'email'
const LAST_LOGIN_METHOD_KEY = 'httpsms_last_login_method'
const lastUsedMethod = ref<LoginMethod | null>(null)
onMounted(() => {
try {
const stored = localStorage.getItem(LAST_LOGIN_METHOD_KEY)
if (stored === 'google' || stored === 'github' || stored === 'email') {
lastUsedMethod.value = stored
}
} catch (error) {
console.error(error)
}
})
async function signInWithGoogle() {
loading.value = true
try {
const auth = getAuth()
const result = await signInWithPopup(auth, new GoogleAuthProvider())
onSuccess(result.user, 'google')
} catch (error: unknown) {
handleError(error, true)
} finally {
loading.value = false
}
}
async function signInWithGithub() {
loading.value = true
try {
const auth = getAuth()
const result = await signInWithPopup(auth, new GithubAuthProvider())
onSuccess(result.user, 'github')
} catch (error: unknown) {
handleError(error, true)
} finally {
loading.value = false
}
}
async function submitEmail() {
emailError.value = ''
loading.value = true
try {
const auth = getAuth()
let result
if (isSignUp.value) {
result = await createUserWithEmailAndPassword(
auth,
email.value,
password.value,
)
} else {
result = await signInWithEmailAndPassword(
auth,
email.value,
password.value,
)
}
onSuccess(result.user, 'email')
} catch (error: unknown) {
handleError(error)
} finally {
loading.value = false
}
}
function onSuccess(user: FirebaseUser, method: LoginMethod) {
try {
localStorage.setItem(LAST_LOGIN_METHOD_KEY, method)
} catch (error) {
console.error(error)
}
notificationsStore.addNotification({
message: 'Login successful!',
type: 'success',
})
authStore.onAuthStateChanged(user)
router.push({ path: props.to })
}
function handleError(error: unknown, isSocial = false) {
const firebaseError = error as { code?: string; message?: string }
const code = firebaseError.code || ''
let message = ''
if (code === 'auth/user-not-found' || code === 'auth/invalid-credential') {
message = 'Invalid email or password'
} else if (code === 'auth/email-already-in-use') {
message = 'An account with this email already exists'
} else if (code === 'auth/weak-password') {
message = 'Password must be at least 6 characters'
} else if (
code === 'auth/popup-closed-by-user' ||
code === 'auth/cancelled-popup-request'
) {
// User closed the popup, no error to show
return
} else {
message = firebaseError.message || 'An error occurred'
}
if (isSocial) {
notificationsStore.addNotification({ message, type: 'error' })
} else {
emailError.value = message
}
}
</script>
<template>
<div class="text-center">
<v-btn
block
color="white"
size="large"
class="mb-3 position-relative"
:loading="loading"
:disabled="loading"
@click="signInWithGoogle"
>
<v-chip
v-if="lastUsedMethod === 'google'"
size="x-small"
color="primary"
label
variant="flat"
class="position-absolute last-used-chip"
>
Last Used
</v-chip>
<v-icon color="red" :icon="mdiGoogle" class="mr-2" />
Continue with Google
</v-btn>
<v-btn
block
size="large"
variant="flat"
color="black"
class="mb-3 position-relative"
:loading="loading"
:disabled="loading"
@click="signInWithGithub"
>
<v-chip
v-if="lastUsedMethod === 'github'"
label
size="x-small"
color="primary"
variant="flat"
class="position-absolute last-used-chip"
>
Last Used
</v-chip>
<v-icon :icon="mdiGithub" class="mr-2" />
Continue with GitHub
</v-btn>
<v-btn
v-if="!showEmailForm"
block
size="large"
variant="flat"
color="red"
class="mb-3 position-relative"
:disabled="loading"
@click="showEmailForm = true"
>
<v-chip
v-if="lastUsedMethod === 'email'"
label
size="x-small"
color="primary"
variant="flat"
class="position-absolute last-used-chip"
>
Last Used
</v-chip>
<v-icon :icon="mdiEmail" class="mr-2" />
Continue with email
</v-btn>
<v-form v-if="showEmailForm" class="mt-4" @submit.prevent="submitEmail">
<v-text-field
v-model="email"
label="Email"
color="primary"
type="email"
variant="outlined"
density="comfortable"
class="mb-2"
required
/>
<v-text-field
v-model="password"
label="Password"
type="password"
color="primary"
variant="outlined"
density="comfortable"
class="mb-2"
required
/>
<v-alert v-if="emailError" type="error" density="compact" class="mb-3">
{{ emailError }}
</v-alert>
<v-btn
block
size="large"
color="primary"
type="submit"
:loading="loading"
>
{{ isSignUp ? 'Sign Up' : 'Sign In' }}
</v-btn>
<v-btn
block
variant="text"
size="small"
class="mt-2"
@click="isSignUp = !isSignUp"
>
{{
isSignUp ? 'Already have an account? Sign In' : 'No account? Sign Up'
}}
</v-btn>
</v-form>
<p class="text-body-small text-medium-emphasis mt-4">
By continuing, you are indicating that you accept our
<a
:href="appStore.appData.url + '/terms-and-conditions'"
class="text-decoration-none"
>
Terms of Service
</a>
and
<a
:href="appStore.appData.url + '/privacy-policy'"
class="text-decoration-none"
>
Privacy Policy.</a
>
</p>
</div>
</template>
<style scoped>
.last-used-chip {
top: -8px;
left: -8px;
z-index: 1;
}
</style>