File size: 5,479 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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
import page from '@automattic/calypso-router';
import { siteLaunchStatusGroupValues } from '@automattic/sites';
import { Global, css } from '@emotion/react';
import { removeQueryArgs } from '@wordpress/url';
import i18n from 'i18n-calypso';
import AsyncLoad from 'calypso/components/async-load';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
import { removeNotice, successNotice } from 'calypso/state/notices/actions';
import { setAllSitesSelected } from 'calypso/state/ui/actions';
import { getSelectedSite } from 'calypso/state/ui/selectors';
import SitesDashboard from './components/sites-dashboard';
import { areHostingFeaturesSupported } from './hosting/features';
import type { Context, Context as PageJSContext } from '@automattic/calypso-router';
const getStatusFilterValue = ( status?: string ) => {
return siteLaunchStatusGroupValues.find( ( value ) => value === status );
};
function getQueryParams( context: Context ) {
return {
page: context.query.page ? parseInt( context.query.page ) : undefined,
perPage: context.query[ 'per-page' ] ? parseInt( context.query[ 'per-page' ] ) : undefined,
search: context.query.search,
status: context.query.status,
siteType: context.query.siteType,
};
}
export function sanitizeQueryParameters( context: PageJSContext, next: () => void ) {
if ( context.pathname.startsWith( '/p2s' ) ) {
context.query.siteType = 'p2';
}
/**
* We need a base case because `page.replace` triggers a re-render for every middleware
* in the route.
*/
if ( context.query.status === undefined ) {
return next();
}
const status = context.query.status.trim();
if ( status === '' ) {
context.page.replace( removeQueryArgs( context.canonicalPath, 'status' ) );
return;
}
const chosenStatus = getStatusFilterValue( status );
if ( ! chosenStatus ) {
context.page.replace( removeQueryArgs( context.canonicalPath, 'status' ) );
return;
}
context.query.status = chosenStatus;
next();
}
export function sitesDashboard( context: Context, next: () => void ) {
const sitesDashboardGlobalStyles = css`
body.is-group-sites-dashboard {
background: var( --color-main-background, #fcfcfc );
.layout__content {
// Add border around everything
overflow: hidden;
min-height: 100vh;
padding: calc( var( --masterbar-height ) + 16px ) 16px 16px
calc( var( --sidebar-width-max ) );
@media only screen and ( max-width: 781px ) {
padding: calc( var( --masterbar-height ) + 24px ) 24px 24px
calc( var( --sidebar-width-max ) );
}
}
.layout__secondary .global-sidebar {
border: none;
}
}
body.is-group-sites-dashboard.rtl .layout__content {
padding: calc( var( --masterbar-height ) + 16px ) calc( var( --sidebar-width-max ) ) 16px 16px;
@media only screen and ( max-width: 781px ) {
padding: calc( var( --masterbar-height ) + 24px ) calc( var( --sidebar-width-max ) ) 24px
24px;
}
}
// Update body margin to account for the sidebar width
@media only screen and ( min-width: 782px ) {
div.layout.is-global-sidebar-visible {
.layout__primary > main {
background: var( --color-surface );
border-radius: 8px;
height: calc( 100vh - 32px );
overflow: auto;
}
}
}
@media only screen and ( max-width: 781px ) {
div.layout.is-global-sidebar-visible {
.layout__primary {
overflow-x: auto;
}
}
}
`;
context.primary = (
<>
<Global styles={ sitesDashboardGlobalStyles } />
<PageViewTracker path="/sites" title="Sites Management Page" delay={ 500 } />
<AsyncLoad require="calypso/lib/analytics/track-resurrections" placeholder={ null } />
<SitesDashboard queryParams={ getQueryParams( context ) } />
</>
);
// By definition, Sites Dashboard does not select any one specific site
context.store.dispatch( setAllSitesSelected() );
next();
}
export function siteDashboard( feature: string | undefined ) {
return ( context: Context, next: () => void ) => {
context.primary = (
<SitesDashboard
initialSiteFeature={ feature }
selectedSiteFeaturePreview={ context.primary }
queryParams={ getQueryParams( context ) }
isOnlyLayoutView={ context.inSiteContext }
/>
);
next();
};
}
export function maybeRemoveCheckoutSuccessNotice( context: PageJSContext, next: () => void ) {
if ( context.query[ 'new-site' ] ) {
// `?new-site` shows a site creation notice and we don't want to show a double notice,
// so hide the checkout success notice if it's there.
context.store.dispatch( removeNotice( 'checkout-thank-you-success' ) );
}
next();
}
export function redirectToHostingFeaturesIfNotAtomic( context: PageJSContext, next: () => void ) {
const state = context.store.getState();
const site = getSelectedSite( state );
if ( ! areHostingFeaturesSupported( site ) ) {
return page.redirect( `/hosting-features/${ site?.slug }` );
}
next();
}
export function showHostingFeaturesNoticeIfPresent( context: PageJSContext, next: () => void ) {
// Update the url and show the notice after a redirect
if ( context.query && context.query.hosting_features === 'activated' ) {
context.store.dispatch(
successNotice( i18n.translate( 'Hosting features activated successfully!' ), {
displayOnNextPage: true,
} )
);
// Remove query param without triggering a re-render
window.history.replaceState(
null,
'',
removeQueryArgs( window.location.href, 'hosting_features' )
);
}
next();
}
|