File size: 3,489 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 93 94 95 96 97 98 99 100 101 102 |
/**
* Global polyfills
*/
import './load-config';
import accessibleFocus from '@automattic/accessible-focus';
import config, { isEnabled } from '@automattic/calypso-config';
import page from '@automattic/calypso-router';
import { QueryClient } from '@tanstack/react-query';
import '@automattic/calypso-polyfills';
import { createStore, applyMiddleware, compose } from 'redux';
import { thunk as thunkMiddleware } from 'redux-thunk';
import { initializeAnalytics } from 'calypso/lib/analytics/init';
import getSuperProps from 'calypso/lib/analytics/super-props';
import analyticsMiddleware from 'calypso/state/analytics/middleware';
import { setCurrentUser } from 'calypso/state/current-user/actions';
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 { setSelectedSiteId } from 'calypso/state/ui/actions';
import { combineReducers, addReducerEnhancer } from 'calypso/state/utils';
import fixPath from './lib/fix-path';
import setLocale from './lib/set-locale';
import { setupContextMiddleware } from './page-middleware/setup-context';
import registerBlazeDashboardPages from './routes';
import themes from './themes';
import 'calypso/assets/stylesheets/style.scss';
import './app.scss';
function getAppTheme() {
if ( isEnabled( 'is_running_in_woo_site' ) ) {
return 'woo';
}
return isEnabled( 'is_running_in_blaze_plugin' ) ? 'wpcom' : 'jetpack';
}
async function AppBoot() {
// Load the App theme
const theme = themes( getAppTheme() );
Object.entries( theme ).forEach( ( [ key, value ] ) => {
document.documentElement.style.setProperty( key, value );
} );
const rootReducer = combineReducers( {
currentUser,
sites,
} );
const initialState = config( 'initial_state' );
const user = initialState.currentUser.user;
const localeSlug = user.localeSlug;
const queryClient = new QueryClient();
const store = createStore(
rootReducer,
initialState,
compose(
addReducerEnhancer,
applyMiddleware( thunkMiddleware, wpcomApiMiddleware, analyticsMiddleware )
)
);
// Add accessible-focus listener
accessibleFocus();
setStore( store );
setupContextMiddleware( store, queryClient );
// Set selected site ID & current user
store.dispatch( setSelectedSiteId( config( 'blog_id' ) ) );
store.dispatch( setCurrentUser( user ) );
// Initialize analytics (we use the connected user only if Jetpack returns the user email)
const superPropsFn = getSuperProps( store );
initializeAnalytics( user?.email ? user : undefined, ( eventProperties ) =>
superPropsFn( { ...eventProperties, force_site_id: true } )
);
if ( window.location?.hash ) {
// The URL could already gets broken by page.js by the appended `?page=advertising`.
window.location.hash = fixPath( window.location.hash );
}
// Ensure locale files are loaded before rendering.
setLocale( localeSlug ).then( () => {
registerBlazeDashboardPages( window.location.pathname + window.location.search );
// Adds the section class name to the body
document.querySelector( 'body' )?.classList.add( 'is-section-promote-post-i2' );
// HACK: We need to remove the extra queryString that page adds when we configure it as hashbang
// To do this, we are showing the correct version of the path (after fixing it)
page.show( fixPath( window.location.hash ) );
} );
}
AppBoot();
|