File size: 1,394 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 |
import { createElement } from 'react';
import { fetchSitePlans } from 'calypso/state/sites/plans/actions';
import { getCurrentPlan } from 'calypso/state/sites/plans/selectors';
import { getSelectedSite, getSelectedSiteId } from 'calypso/state/ui/selectors';
import Hosting from './main';
function waitForState( context ) {
return new Promise( ( resolve ) => {
const unsubscribe = context.store.subscribe( () => {
const state = context.store.getState();
const siteId = getSelectedSiteId( state );
if ( ! siteId ) {
return;
}
const currentPlan = getCurrentPlan( state, siteId );
if ( ! currentPlan ) {
return;
}
unsubscribe();
resolve();
} );
// Trigger a `store.subscribe()` callback
context.store.dispatch( fetchSitePlans( getSelectedSiteId( context.store.getState() ) ) );
} );
}
export async function handleHostingPanelRedirect( context, next ) {
const { store } = context;
await waitForState( context );
const state = store.getState();
const site = getSelectedSite( state );
const isAtomicSite = !! site?.is_wpcom_atomic || !! site?.is_wpcom_staging_site;
const isJetpackNonAtomic = ! isAtomicSite && !! site?.jetpack;
if ( isJetpackNonAtomic ) {
context.page.replace( `/overview/${ site?.slug }` );
return;
}
next();
return;
}
export function layout( context, next ) {
context.primary = createElement( Hosting );
next();
}
|