Skip to content

Commit 521b60d

Browse files
fix user lang loading issues from firebase
1 parent 5e4b27b commit 521b60d

File tree

2 files changed

+12
-140
lines changed

2 files changed

+12
-140
lines changed

src/context/UserDataContext/UserDataContext.tsx

+12
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,11 @@ export const UserDataProvider = ({
226226
// If the user is signed in, sync remote data with local data
227227
if (user) {
228228
const userDoc = doc(getFirestore(firebaseApp), 'users', user.uid);
229+
230+
// For the very first firestore data read, we should set the language property
231+
// to whatever the URL query param is
232+
let shouldUseLangQueryParam = true;
233+
229234
snapshotUnsubscribe = onSnapshot(userDoc, {
230235
next: snapshot => {
231236
const data = snapshot.data();
@@ -248,13 +253,20 @@ export const UserDataProvider = ({
248253
);
249254
} else {
250255
const newUserData = assignDefaultsToUserData(data);
256+
if (shouldUseLangQueryParam) {
257+
const urlLang = getLangFromUrl();
258+
if (urlLang) {
259+
newUserData.lang = urlLang;
260+
}
261+
}
251262
localStorage.setItem(
252263
'guide:userData:v100',
253264
JSON.stringify(newUserData)
254265
);
255266
setUserData(newUserData);
256267
}
257268

269+
shouldUseLangQueryParam = false;
258270
setIsLoaded(true);
259271
},
260272
error: error => {

src/context/UserDataContext/old-properties/userLang.ts

-140
This file was deleted.

0 commit comments

Comments
 (0)