File tree 2 files changed +12
-140
lines changed
src/context/UserDataContext
2 files changed +12
-140
lines changed Original file line number Diff line number Diff line change @@ -226,6 +226,11 @@ export const UserDataProvider = ({
226
226
// If the user is signed in, sync remote data with local data
227
227
if ( user ) {
228
228
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
+
229
234
snapshotUnsubscribe = onSnapshot ( userDoc , {
230
235
next : snapshot => {
231
236
const data = snapshot . data ( ) ;
@@ -248,13 +253,20 @@ export const UserDataProvider = ({
248
253
) ;
249
254
} else {
250
255
const newUserData = assignDefaultsToUserData ( data ) ;
256
+ if ( shouldUseLangQueryParam ) {
257
+ const urlLang = getLangFromUrl ( ) ;
258
+ if ( urlLang ) {
259
+ newUserData . lang = urlLang ;
260
+ }
261
+ }
251
262
localStorage . setItem (
252
263
'guide:userData:v100' ,
253
264
JSON . stringify ( newUserData )
254
265
) ;
255
266
setUserData ( newUserData ) ;
256
267
}
257
268
269
+ shouldUseLangQueryParam = false ;
258
270
setIsLoaded ( true ) ;
259
271
} ,
260
272
error : error => {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments