-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathphone-invisible.ts
287 lines (262 loc) · 7.85 KB
/
phone-invisible.ts
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
287
import { initializeApp } from 'firebase/app';
import {
ConfirmationResult,
RecaptchaVerifier,
getAuth,
onAuthStateChanged,
signInWithPhoneNumber,
signOut,
} from 'firebase/auth';
import { firebaseConfig } from './config';
initializeApp(firebaseConfig);
const auth = getAuth();
// reCAPTCHA verification does not work with the Firebase emulator.
// Hence, we do not connect to the emulator in this example.
// We declare variables used on the window object
// We use a custom interface to avoid these modifying the global Window type in other files
interface CustomWindow extends Window {
signingIn?: boolean;
verifyingCode?: boolean;
confirmationResult?: ConfirmationResult | null;
recaptchaVerifier?: RecaptchaVerifier;
recaptchaWidgetId?: number;
}
declare const window: CustomWindow;
// Comes from Google reCAPTCHA V3 script included in the HTML file
declare const grecaptcha: any;
const phoneNumberInput = document.getElementById(
'phone-number',
)! as HTMLInputElement;
const signInButton = document.getElementById(
'sign-in-button',
)! as HTMLButtonElement;
const signInForm = document.getElementById('sign-in-form')! as HTMLFormElement;
const signOutButton = document.getElementById(
'sign-out-button',
)! as HTMLButtonElement;
const verificationCodeForm = document.getElementById(
'verification-code-form',
)! as HTMLFormElement;
const verificationCodeInput = document.getElementById(
'verification-code',
)! as HTMLInputElement;
const verifyCodeButton = document.getElementById(
'verify-code-button',
)! as HTMLButtonElement;
const signInStatus = document.getElementById(
'sign-in-status',
)! as HTMLSpanElement;
const accountDetails = document.getElementById(
'account-details',
)! as HTMLDivElement;
const cancelVerifyCodeButton = document.getElementById(
'cancel-verify-code-button',
)! as HTMLButtonElement;
/**
* Function called when clicking the Login/Logout button.
*/
function onSignInSubmit() {
if (isPhoneNumberValid()) {
window.signingIn = true;
updateSignInButtonUI();
const phoneNumber = getPhoneNumberFromUserInput();
const appVerifier = window.recaptchaVerifier;
signInWithPhoneNumber(auth, phoneNumber, appVerifier!)
.then(function (confirmationResult) {
// SMS sent. Prompt user to type the code from the message, then sign the
// user in with confirmationResult.confirm(code).
window.confirmationResult = confirmationResult;
window.signingIn = false;
updateSignInButtonUI();
updateVerificationCodeFormUI();
updateVerifyCodeButtonUI();
updateSignInFormUI();
})
.catch(function (error) {
// Error; SMS not sent
console.error('Error during signInWithPhoneNumber', error);
window.alert(
'Error during signInWithPhoneNumber:\n\n' +
error.code +
'\n\n' +
error.message,
);
window.signingIn = false;
updateSignInFormUI();
updateSignInButtonUI();
});
}
}
/**
* Function called when clicking the "Verify Code" button.
*/
function onVerifyCodeSubmit(e: Event) {
e.preventDefault();
if (!!getCodeFromUserInput()) {
window.verifyingCode = true;
updateVerifyCodeButtonUI();
const code = getCodeFromUserInput();
window
.confirmationResult!.confirm(code)
.then(function (result) {
// User signed in successfully.
const user = result.user;
window.verifyingCode = false;
window.confirmationResult = null;
updateVerificationCodeFormUI();
})
.catch(function (error) {
// User couldn't sign in (bad verification code?)
console.error('Error while checking the verification code', error);
window.alert(
'Error while checking the verification code:\n\n' +
error.code +
'\n\n' +
error.message,
);
window.verifyingCode = false;
updateSignInButtonUI();
updateVerifyCodeButtonUI();
});
}
}
/**
* Cancels the verification code input.
*/
function cancelVerification(e: Event) {
e.preventDefault();
window.confirmationResult = null;
updateVerificationCodeFormUI();
updateSignInFormUI();
}
/**
* Signs out the user when the sign-out button is clicked.
*/
function onSignOutClick() {
signOut(auth);
}
/**
* Reads the verification code from the user input.
*/
function getCodeFromUserInput() {
return verificationCodeInput.value;
}
/**
* Reads the phone number from the user input.
*/
function getPhoneNumberFromUserInput() {
return phoneNumberInput.value;
}
/**
* Returns true if the phone number is valid.
*/
function isPhoneNumberValid() {
const pattern = /^\+[0-9\s\-\(\)]+$/;
const phoneNumber = getPhoneNumberFromUserInput();
return phoneNumber.search(pattern) !== -1;
}
/**
* Re-initializes the ReCaptacha widget.
*/
function resetReCaptcha() {
if (
typeof grecaptcha !== 'undefined' &&
typeof window.recaptchaWidgetId !== 'undefined'
) {
grecaptcha.reset(window.recaptchaWidgetId);
}
}
/**
* Updates the Sign-in button state depending on ReCAptcha and form values state.
*/
function updateSignInButtonUI() {
signInButton.disabled = !isPhoneNumberValid() || !!window.signingIn;
}
/**
* Updates the Verify-code button state depending on form values state.
*/
function updateVerifyCodeButtonUI() {
verifyCodeButton.disabled = !!window.verifyingCode || !getCodeFromUserInput();
}
/**
* Updates the state of the Sign-in form.
*/
function updateSignInFormUI() {
if (auth.currentUser || window.confirmationResult) {
signInForm.style.display = 'none';
} else {
resetReCaptcha();
signInForm.style.display = 'block';
}
}
/**
* Updates the state of the Verify code form.
*/
function updateVerificationCodeFormUI() {
if (!auth.currentUser && window.confirmationResult) {
verificationCodeForm.style.display = 'block';
} else {
verificationCodeForm.style.display = 'none';
}
}
/**
* Updates the state of the Sign out button.
*/
function updateSignOutButtonUI() {
if (auth.currentUser) {
signOutButton.style.display = 'block';
} else {
signOutButton.style.display = 'none';
}
}
/**
* Updates the Signed in user status panel.
*/
function updateSignedInUserStatusUI() {
const user = auth.currentUser;
if (user) {
signInStatus.textContent = 'Signed in';
accountDetails.textContent = JSON.stringify(user, null, ' ');
} else {
signInStatus.textContent = 'Signed out';
accountDetails.textContent = 'null';
}
}
// Listening for auth state changes.
onAuthStateChanged(auth, function (user) {
if (user) {
// User is signed in.
const uid = user.uid;
const email = user.email;
const photoURL = user.photoURL;
const phoneNumber = user.phoneNumber;
const isAnonymous = user.isAnonymous;
const displayName = user.displayName;
const providerData = user.providerData;
const emailVerified = user.emailVerified;
}
updateSignInButtonUI();
updateSignInFormUI();
updateSignOutButtonUI();
updateSignedInUserStatusUI();
updateVerificationCodeFormUI();
});
// Event bindings.
signOutButton.addEventListener('click', onSignOutClick);
phoneNumberInput.addEventListener('keyup', updateSignInButtonUI);
phoneNumberInput.addEventListener('change', updateSignInButtonUI);
verificationCodeInput.addEventListener('keyup', updateVerifyCodeButtonUI);
verificationCodeInput.addEventListener('change', updateVerifyCodeButtonUI);
verificationCodeForm.addEventListener('submit', onVerifyCodeSubmit);
cancelVerifyCodeButton.addEventListener('click', cancelVerification);
window.recaptchaVerifier = new RecaptchaVerifier(auth, 'sign-in-button', {
size: 'invisible',
callback: function (_response: any) {
// reCAPTCHA solved, allow signInWithPhoneNumber.
onSignInSubmit();
},
});
window.recaptchaVerifier!.render().then(function (widgetId) {
window.recaptchaWidgetId = widgetId;
updateSignInButtonUI();
});