import { isEnabled } from '@automattic/calypso-config';
import page from '@automattic/calypso-router';
import { __ } from '@wordpress/i18n';
import { useSelector } from 'react-redux';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
import { fetchSiteFeatures } from 'calypso/state/sites/features/actions';
import { isSimpleSite } from 'calypso/state/sites/selectors';
import { getSelectedSite, getSelectedSiteSlug } from 'calypso/state/ui/selectors';
import { getRouteFromContext } from 'calypso/utils';
import { SidebarItem, Sidebar, PanelWithSidebar } from '../components/panel-sidebar';
import { useBreadcrumbs } from '../hooks/breadcrumbs/use-breadcrumbs';
import {
areAdvancedHostingFeaturesSupported,
areHostingFeaturesSupported,
useAreAdvancedHostingFeaturesSupported,
useAreHostingFeaturesSupported,
} from '../hosting/features';
import DashboardBackportSiteSettingsRenderer from '../v2/site-settings';
import DeleteSite from './administration/tools/delete-site';
import ResetSite from './administration/tools/reset-site';
import TransferSite from './administration/tools/transfer-site';
import DatabaseSettings from './database';
import PerformanceSettings from './performance';
import ServerSettings from './server';
import SftpSshSettings from './sftp-ssh';
import useSftpSshSettingTitle from './sftp-ssh/hooks/use-sftp-ssh-setting-title';
import SiteSettings from './site';
import type { Context as PageJSContext } from '@automattic/calypso-router';
export function SettingsSidebar() {
const slug = useSelector( getSelectedSiteSlug );
const isSimple = useSelector( isSimpleSite );
const sftpSshTitle = useSftpSshSettingTitle();
const areHostingFeaturesSupported = useAreHostingFeaturesSupported();
const areAdvancedHostingFeaturesSupported = useAreAdvancedHostingFeaturesSupported();
const { shouldShowBreadcrumbs } = useBreadcrumbs();
if ( isSimple || shouldShowBreadcrumbs ) {
return null;
}
return (
{ __( 'General' ) }
{ areAdvancedHostingFeaturesSupported && [
{ __( 'Server' ) }
,
{ sftpSshTitle }
,
{ __( 'Database' ) }
,
] }
{ areHostingFeaturesSupported && (
{ __( 'Performance' ) }
) }
);
}
export function redirectToSiteSettingsIfHostingFeaturesNotSupported(
context: PageJSContext,
next: () => void
) {
const state = context.store.getState();
const site = getSelectedSite( state );
if ( ! areHostingFeaturesSupported( site ) ) {
return page.redirect( `/sites/settings/site/${ site?.slug }` );
}
next();
}
export function redirectToSiteSettingsIfAdvancedHostingFeaturesNotSupported(
context: PageJSContext,
next: () => void
) {
const state = context.store.getState();
const site = getSelectedSite( state );
const dispatch = context.store.dispatch;
if ( ! site?.ID ) {
return next();
}
dispatch( fetchSiteFeatures( site?.ID ) ).then( () => {
const isSupported = areAdvancedHostingFeaturesSupported( context.store.getState() );
if ( isSupported === false ) {
return page.redirect( `/sites/settings/site/${ site?.slug }` );
}
next();
} );
}
export function siteSettings( context: PageJSContext, next: () => void ) {
context.primary = (
);
next();
}
export function administrationToolResetSite( context: PageJSContext, next: () => void ) {
context.primary = (
);
next();
}
export function administrationToolTransferSite( context: PageJSContext, next: () => void ) {
context.primary = (
);
next();
}
export function administrationToolDeleteSite( context: PageJSContext, next: () => void ) {
context.primary = (
);
next();
}
export function serverSettings( context: PageJSContext, next: () => void ) {
context.primary = (
);
next();
}
export function sftpSshSettings( context: PageJSContext, next: () => void ) {
context.primary = (
);
next();
}
export function databaseSettings( context: PageJSContext, next: () => void ) {
context.primary = (
);
next();
}
export function performanceSettings( context: PageJSContext, next: () => void ) {
context.primary = (
);
next();
}
/**
* Backport Hosting Dashboard Site Settings page to the current one.
*/
export async function dashboardBackportSiteSettings( context: PageJSContext, next: () => void ) {
const { site: siteSlug, feature } = context.params;
if ( ! isEnabled( 'dashboard/v2/backport/site-settings' ) ) {
return page.redirect( `/sites/settings/site/${ siteSlug }` );
}
// Route doesn't require a because the dashboard
// fires its own page view events.
context.primary = (
);
next();
}