Merge pull request #11801 from Bouncey/fix/langRoutes

Fix: Lang routes persist between sessions
pull/12278/head
Berkeley Martinez 2016-12-29 20:12:49 -08:00 committed by GitHub
commit ab977835e4
2 changed files with 6 additions and 3 deletions

View File

@ -16,6 +16,7 @@ import flashToToast from './utils/flash-to-toast';
import createApp from '../common/app';
import provideStore from '../common/app/provide-store';
import { getLangFromPath } from '../common/app/utils/lang';
// client specific sagas
import sagas from './sagas';
@ -34,6 +35,8 @@ const DOMContainer = document.getElementById('fcc');
const initialState = isColdStored() ?
getColdStorage() :
window.__fcc__.data;
const primaryLang = getLangFromPath(window.location.pathname);
initialState.app.csrfToken = csrfToken;
initialState.toasts = flashToToast(window.__fcc__.flash);
@ -42,7 +45,7 @@ window.__fcc__ = {};
const serviceOptions = { xhrPath: '/services', context: { _csrf: csrfToken } };
const history = useLangRoutes(createHistory)();
const history = useLangRoutes(createHistory, primaryLang)();
sendPageAnalytics(history, window.ga);
const devTools = window.devToolsExtension ? window.devToolsExtension() : f => f;

View File

@ -23,9 +23,9 @@ function getLangFromLocation(location) {
return getLangFromPath(location.pathname);
}
export default function useLangRoutes(createHistory) {
export default function useLangRoutes(createHistory, primaryLang) {
return (options = {}) => {
let lang = 'en';
let lang = primaryLang || 'en';
const history = createHistory(options);
const unsubscribeFromHistory = history.listen(nextLocation => {
lang = getLangFromLocation(nextLocation);