-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.ts
238 lines (222 loc) · 6.12 KB
/
auth.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
import { from, of, forkJoin, Observable, OperatorFunction } from "rxjs";
import {
filter,
switchMap,
map,
catchError,
withLatestFrom,
startWith,
} from "rxjs/operators";
import { createSlice, PayloadAction } from "@reduxjs/toolkit";
import app from "./firebase";
import {
createUserWithEmailAndPassword,
sendPasswordResetEmail,
signInWithEmailAndPassword,
User,
signOut,
updateEmail,
updatePassword,
Unsubscribe,
getAuth,
} from "firebase/auth";
import { combineEpics, Epic } from "redux-observable";
import { Dispatch } from "react";
import { FirebaseError } from "firebase/app";
import { addNotification, NotificationData } from "./notificationsList";
const auth = getAuth(app);
export enum AuthStatus {
Ready,
Pending,
}
export interface AuthState {
/** Value is null if user is not logged in */
currentUser: User | null;
status: AuthStatus;
}
export const authSlice = createSlice({
name: "auth",
initialState: {
currentUser: null,
status: AuthStatus.Ready,
} as AuthState,
reducers: {
_authPending(state): void {
state.status = AuthStatus.Pending;
},
_authResolution(
state,
_action: PayloadAction<NotificationData | undefined>
): void {
state.status = AuthStatus.Ready;
},
/* This action should not be dispatched outside of this file */
updateUser(state, action: PayloadAction<User | null>): void {
state.currentUser = action.payload;
},
loginRequest(
_state,
_action: PayloadAction<{ email: string; password: string }>
): void {},
signupRequest(
_state,
_action: PayloadAction<{ email: string; password: string }>
): void {},
logoutRequest(_state): void {},
resetPasswordRequest(_state, _action: PayloadAction<string>): void {},
accountUpdateRequest(
_state,
_action: PayloadAction<{ email?: string; password?: string }>
): void {},
},
});
export const {
updateUser,
loginRequest,
signupRequest,
logoutRequest,
resetPasswordRequest,
accountUpdateRequest,
} = authSlice.actions;
const { _authResolution, _authPending } = authSlice.actions;
const authResolutionEpic: Epic = (action$) =>
action$.pipe(
filter(_authResolution.match),
filter((action) => !!action.payload),
map((action) => addNotification(action.payload!))
);
function triggerSimpleAuthNotifications(
errorMessagePrefix: string,
successMessage?: string
): OperatorFunction<unknown, PayloadAction<NotificationData | undefined>> {
return (
source$: Observable<unknown>
): Observable<PayloadAction<NotificationData | undefined>> => {
return source$.pipe(
map(() =>
_authResolution(
successMessage
? { message: successMessage, variant: "success" }
: undefined
)
),
startWith(_authPending()),
catchError((e: FirebaseError) => {
console.error(e);
return of(
_authResolution({
message: [errorMessagePrefix, `Error: ${e.code}`],
variant: "danger",
})
);
})
);
};
}
const loginRequestEpic: Epic = (action$) =>
action$.pipe(
filter(loginRequest.match),
switchMap(({ payload: { email, password } }) =>
from(signInWithEmailAndPassword(auth, email, password)).pipe(
triggerSimpleAuthNotifications("Login failed")
)
)
);
const signupRequestEpic: Epic = (action$) =>
action$.pipe(
filter(signupRequest.match),
switchMap(({ payload: { email, password } }) =>
from(createUserWithEmailAndPassword(auth, email, password)).pipe(
triggerSimpleAuthNotifications("Sign up failed")
)
)
);
const logoutRequestEpic: Epic = (action$) =>
action$.pipe(
filter(logoutRequest.match),
switchMap(() =>
from(signOut(auth)).pipe(
triggerSimpleAuthNotifications("Logout failed", "Logged out")
)
)
);
const resetPasswordRequestEpic: Epic = (action$) =>
action$.pipe(
filter(resetPasswordRequest.match),
switchMap((action) =>
from(sendPasswordResetEmail(auth, action.payload)).pipe(
triggerSimpleAuthNotifications(
"Reset password failed",
"Check your inbox to reset your password"
)
)
)
);
const accountUpdateRequestEpic: Epic = (action$, state$) =>
action$.pipe(
filter(accountUpdateRequest.match),
withLatestFrom(state$.pipe(map((state) => state.auth.currentUser))),
switchMap(
([
{
payload: { email, password },
},
currentUser,
]) => {
if (currentUser === null) {
return of(
_authResolution({
message: "Cannot update account because user is logged out",
variant: "danger",
})
);
}
const promises: Array<Promise<void>> = [];
if (email && email !== currentUser.email) {
promises.push(updateEmail(currentUser, email));
}
if (password) {
promises.push(updatePassword(currentUser, password));
}
return promises.length > 0
? forkJoin(promises).pipe(
map(() =>
_authResolution({
message: "Account successfully updated",
variant: "success",
})
),
catchError((e: FirebaseError) => {
console.error(e);
return of(
_authResolution({
message: ["Account update failed", `Error: ${e.code}`],
variant: "danger",
})
);
})
)
: of(
_authResolution({
message: ["Account not updated", "No new values provided"],
variant: "info",
})
);
}
)
);
export const authEpic = combineEpics(
authResolutionEpic,
loginRequestEpic,
signupRequestEpic,
logoutRequestEpic,
resetPasswordRequestEpic,
accountUpdateRequestEpic
);
export function initializeAuth(
dispatch: Dispatch<PayloadAction<User | null>>
): Unsubscribe {
return auth.onAuthStateChanged((user) => {
dispatch(updateUser(user));
});
}