File size: 4,975 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 |
import config from '@automattic/calypso-config';
import { translate } from 'i18n-calypso';
import AdvancedCredentials from 'calypso/components/advanced-credentials';
import BackupRetentionManagement from 'calypso/components/backup-retention-management';
import DocumentHead from 'calypso/components/data/document-head';
import HasSitePurchasesSwitch from 'calypso/components/has-site-purchases-switch';
import BackupScheduleSetting from 'calypso/components/jetpack/backup-schedule-setting';
import IsCurrentUserAdminSwitch from 'calypso/components/jetpack/is-current-user-admin-switch';
import NotAuthorizedPage from 'calypso/components/jetpack/not-authorized-page';
import JetpackStagingSitesManagement from 'calypso/components/jetpack-staging-sites-management';
import Main from 'calypso/components/main';
import SidebarNavigation from 'calypso/components/sidebar-navigation';
import { dashboardPath } from 'calypso/lib/jetpack/paths';
import DisconnectSite from 'calypso/my-sites/site-settings/disconnect-site';
import ConfirmDisconnection from 'calypso/my-sites/site-settings/disconnect-site/confirm';
import { getSelectedSiteId } from 'calypso/state/ui/selectors';
import NoSitesPurchasesMessage from './empty-content';
import HasRetentionCapabilitiesSwitch from './has-retention-capabilities-switch';
import HasSiteCredentialsSwitch from './has-site-credentials-switch';
import AdvancedCredentialsLoadingPlaceholder from './loading';
import SettingsPage from './main';
import type { Callback } from '@automattic/calypso-router';
export const settings: Callback = ( context, next ) => {
context.primary = <SettingsPage />;
next();
};
export const advancedCredentials: Callback = ( context, next ) => {
const { host, action } = context.query;
const siteId = getSelectedSiteId( context.store.getState() ) as number;
const sectionElt = <AdvancedCredentials action={ action } host={ host } role="main" />;
// This parameter is useful to redirect back from checkout page and select the retention period
// the customer previously selected.
const retention = Number.isInteger( Number( context.query.retention ) )
? Number( context.query.retention )
: undefined;
// It means that the customer has purchased storage
const storagePurchased = Boolean( context.query.storage_purchased );
context.primary = (
<Main>
<DocumentHead title={ translate( 'Settings' ) } />
<SidebarNavigation />
{ config.isEnabled( 'jetpack/backup-retention-settings' ) ? (
<HasRetentionCapabilitiesSwitch
siteId={ siteId }
trueComponent={
<BackupRetentionManagement
defaultRetention={ retention }
storagePurchased={ storagePurchased }
/>
}
falseComponent={ null }
loadingComponent={ <AdvancedCredentialsLoadingPlaceholder /> } // Let's use the same placeholder for now
/>
) : null }
<HasSiteCredentialsSwitch
siteId={ siteId }
trueComponent={ sectionElt }
falseComponent={
<HasSitePurchasesSwitch
siteId={ siteId }
trueComponent={ sectionElt }
falseComponent={ <NoSitesPurchasesMessage /> }
loadingComponent={ <AdvancedCredentialsLoadingPlaceholder /> }
/>
}
loadingComponent={ <AdvancedCredentialsLoadingPlaceholder /> }
/>
<HasSiteCredentialsSwitch
siteId={ siteId }
trueComponent={ <JetpackStagingSitesManagement /> }
falseComponent={ null }
loadingComponent={ <AdvancedCredentialsLoadingPlaceholder /> }
/>
{ config.isEnabled( 'jetpack/backup-schedule-setting' ) ? (
<HasSitePurchasesSwitch
siteId={ siteId }
trueComponent={ <BackupScheduleSetting /> }
falseComponent={ null }
loadingComponent={ <AdvancedCredentialsLoadingPlaceholder /> }
/>
) : null }
</Main>
);
next();
};
export const showNotAuthorizedForNonAdmins: Callback = ( context, next ) => {
context.primary = (
<IsCurrentUserAdminSwitch
trueComponent={ context.primary }
falseComponent={ <NotAuthorizedPage /> }
/>
);
next();
};
export const disconnectSite: Callback = ( context, next ) => {
context.primary = (
<DisconnectSite
// Ignore type checking because TypeScript is incorrectly inferring the prop type due to the redirectNonJetpack HOC.
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
//@ts-ignore
reason={ context.params.reason }
type={ context.query.type }
backHref={ dashboardPath() }
/>
);
next();
};
export const disconnectSiteConfirm: Callback = ( context, next ) => {
const { reason, type, text } = context.query;
const dashboardHref = dashboardPath();
context.primary = (
<ConfirmDisconnection
// Ignore type checking because TypeScript is incorrectly inferring the prop type due to the redirectNonJetpack HOC.
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
//@ts-ignore
reason={ reason }
type={ type }
text={ text }
disconnectHref={ dashboardHref }
stayConnectedHref={ dashboardHref }
/>
);
next();
};
|