File size: 3,453 Bytes
1e92f2d |
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 |
/**
* Global polyfills
*/
// `init-app-config` has to be the first import, because there could be packages reference it in their side effect.
// eslint-disable-next-line import/order
import './lib/init-app-config';
import page from '@automattic/calypso-router';
import { QueryClient } from '@tanstack/react-query';
import '@automattic/calypso-polyfills';
import { createStore, applyMiddleware, compose, Store, Middleware } from 'redux';
import { thunk as thunkMiddleware } from 'redux-thunk';
import { getPathWithUpdatedQueryString } from 'calypso/my-sites/stats/utils';
import { WithAddReducer } from 'calypso/state/add-reducer';
import analyticsMiddleware from 'calypso/state/analytics/middleware';
import currentUser from 'calypso/state/current-user/reducer';
import wpcomApiMiddleware from 'calypso/state/data-layer/wpcom-api-middleware';
import { setStore } from 'calypso/state/redux-store';
import sites from 'calypso/state/sites/reducer';
import { isSimpleSite } from 'calypso/state/sites/selectors';
import { combineReducers, addReducerEnhancer } from 'calypso/state/utils';
import config from './lib/config-api';
import initSentry from './lib/init-sentry';
import { initializeSiteData } from './lib/initialize-site-data';
import setLocale from './lib/set-locale';
import { setupContextMiddleware } from './page-middleware/setup-context';
import registerStatsPages from './routes';
import 'calypso/assets/stylesheets/style.scss';
import './app.scss';
async function AppBoot() {
const siteId = config( 'blog_id' );
const localeSlug = config( 'i18n_locale_slug' ) || config( 'i18n_default_locale_slug' ) || 'en';
const rootReducer = combineReducers( {
currentUser,
sites,
} );
// TODO: fix `intial_state` typo.
let initialState = config( 'intial_state' );
// Fix missing user.localeSlug in `initial_state`.
initialState = {
...initialState,
currentUser: {
...initialState.currentUser,
user: { ...initialState.currentUser.user, localeSlug },
},
};
const isSimple = isSimpleSite( initialState, siteId ) ?? false;
const queryClient = new QueryClient();
const middlewares = [ thunkMiddleware, analyticsMiddleware, wpcomApiMiddleware as Middleware ];
const store = createStore(
rootReducer,
initialState,
compose( addReducerEnhancer, applyMiddleware( ...middlewares ) )
);
setStore( store as Store & WithAddReducer );
setupContextMiddleware( store, queryClient );
// Initialize site data early in the app boot process.
await initializeSiteData( store );
if ( ! window.location?.hash ) {
// Redirect to the default stats page.
window.location.hash = `#!/stats/day/${ siteId }`;
} else {
// The URL could already gets broken by page.js by the appended `?page=stats`.
window.location.hash = `#!${ getPathWithUpdatedQueryString(
{},
window.location.hash.substring( 2 )
) }`;
}
// Ensure locale files are loaded before rendering.
setLocale( localeSlug, isSimple ).then( () => {
registerStatsPages( window.location.pathname + window.location.search );
// HACK: getPathWithUpdatedQueryString filters duplicate query parameters added by `page.js`.
// It has to come after `registerStatsPages` because the duplicate string added in the function.
page.show( `${ getPathWithUpdatedQueryString( {}, window.location.hash.substring( 2 ) ) }` );
} );
}
// Caution: We're loading Sentry after initializing Webpack; Webpack load failures may not be captured.
initSentry();
AppBoot();
|