File size: 2,836 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 |
import { useBreakpoint } from '@automattic/viewport-react';
import { useTranslate } from 'i18n-calypso';
import { useEffect } from 'react';
import { useLoadScheduleFromId } from 'calypso/blocks/plugins-scheduled-updates-multisite/hooks/use-load-schedule-from-id';
import Layout from 'calypso/layout/hosting-dashboard';
import LayoutColumn from 'calypso/layout/hosting-dashboard/column';
import { recordTracksEvent } from 'calypso/lib/analytics/tracks';
import { MultisitePluginUpdateManagerContextProvider } from './context';
import { ScheduleCreate } from './schedule-create';
import { ScheduleEdit } from './schedule-edit';
import { ScheduleList } from './schedule-list';
import 'calypso/sites/components/dotcom-style.scss';
import './styles.scss';
type Props = {
onNavBack?: () => void;
id?: string;
context: 'create' | 'edit' | 'list';
onEditSchedule: ( id: string ) => void;
onShowLogs: ( id: string, siteSlug: string ) => void;
onCreateNewSchedule: () => void;
};
export const PluginsScheduledUpdatesMultisite = ( {
context,
id,
onNavBack,
onCreateNewSchedule,
onEditSchedule,
onShowLogs,
}: Props ) => {
const { schedule: selectedSchedule } = useLoadScheduleFromId( id! );
const isSmallScreen = useBreakpoint( '<660px' );
const translate = useTranslate();
const title = {
create: translate( 'New schedule' ),
edit: translate( 'Edit schedule' ),
list: translate( 'Scheduled updates' ),
}[ context ];
useEffect( () => {
recordTracksEvent( 'calypso_scheduled_updates_multisite_page_view', {
context: context,
} );
}, [ context ] );
return (
<MultisitePluginUpdateManagerContextProvider>
<Layout title={ title } wide>
{ context === 'create' || context === 'edit' ? (
<LayoutColumn className="scheduled-updates-list-compact">
<ScheduleList
compact
previewMode="card"
showSubtitle={ false }
showNewScheduleBtn={ context === 'edit' }
selectedScheduleId={ selectedSchedule?.schedule_id }
onCreateNewSchedule={ onCreateNewSchedule }
onEditSchedule={ onEditSchedule }
onShowLogs={ onShowLogs }
/>
</LayoutColumn>
) : null }
<LayoutColumn className={ `scheduled-updates-${ context }` } wide>
{ ( () => {
switch ( context ) {
case 'create':
return <ScheduleCreate onNavBack={ onNavBack } />;
case 'edit':
return <ScheduleEdit id={ id! } onNavBack={ onNavBack } />;
case 'list':
default:
return (
<ScheduleList
previewMode={ isSmallScreen ? 'card' : 'table' }
onCreateNewSchedule={ onCreateNewSchedule }
onEditSchedule={ onEditSchedule }
onShowLogs={ onShowLogs }
/>
);
}
} )() }
</LayoutColumn>
</Layout>
</MultisitePluginUpdateManagerContextProvider>
);
};
|