File size: 5,333 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 |
import { DESKTOP_BREAKPOINT } from '@automattic/viewport';
import { useBreakpoint } from '@automattic/viewport-react';
import {
__experimentalText as Text,
__experimentalConfirmDialog as ConfirmDialog,
Spinner,
Button,
Card,
CardBody,
CardHeader,
} from '@wordpress/components';
import { arrowLeft } from '@wordpress/icons';
import { useTranslate } from 'i18n-calypso';
import { useState } from 'react';
import { useDeleteUpdateScheduleMutation } from 'calypso/data/plugins/use-update-schedules-mutation';
import { useUpdateScheduleQuery } from 'calypso/data/plugins/use-update-schedules-query';
import { recordTracksEvent } from 'calypso/lib/analytics/tracks';
import { useSelector } from 'calypso/state';
import { getSiteAdminUrl, isAdminInterfaceWPAdmin } from 'calypso/state/sites/selectors';
import { useCanCreateSchedules } from './hooks/use-can-create-schedules';
import { useIsEligibleForFeature } from './hooks/use-is-eligible-for-feature';
import { useSiteHasEligiblePlugins } from './hooks/use-site-has-eligible-plugins';
import { useSiteSlug } from './hooks/use-site-slug';
import { ScheduleListCards } from './schedule-list-cards';
import { ScheduleListEmpty } from './schedule-list-empty';
import { ScheduleListTable } from './schedule-list-table';
interface Props {
siteId: number | null;
onNavBack?: () => void;
onCreateNewSchedule?: () => void;
onEditSchedule: ( id: string ) => void;
onShowLogs: ( id: string ) => void;
}
export const ScheduleList = ( props: Props ) => {
const siteSlug = useSiteSlug();
const translate = useTranslate();
const isDesktopScreen = useBreakpoint( DESKTOP_BREAKPOINT );
const { isEligibleForFeature, loading: isEligibleForFeatureLoading } = useIsEligibleForFeature();
const { siteHasEligiblePlugins, loading: siteHasEligiblePluginsLoading } =
useSiteHasEligiblePlugins();
const { siteId, onNavBack, onCreateNewSchedule, onEditSchedule, onShowLogs } = props;
const [ removeDialogOpen, setRemoveDialogOpen ] = useState( false );
const [ selectedScheduleId, setSelectedScheduleId ] = useState< undefined | string >();
const adminInterfaceIsWPAdmin = useSelector( ( state ) =>
isAdminInterfaceWPAdmin( state, siteId )
);
const siteAdminUrl = useSelector( ( state ) => getSiteAdminUrl( state, siteId ) );
const {
data: schedules = [],
isLoading: isLoadingSchedules,
isFetched,
refetch,
} = useUpdateScheduleQuery( siteSlug, isEligibleForFeature, {
refetchOnWindowFocus: true,
refetchInterval: 1000 * 10,
} );
const { deleteUpdateSchedule } = useDeleteUpdateScheduleMutation( siteSlug, {
onSuccess: () => refetch(),
} );
const { canCreateSchedules, isLoading: isLoadingCanCreateSchedules } = useCanCreateSchedules(
siteSlug,
isEligibleForFeature
);
const isLoading =
isLoadingSchedules ||
isLoadingCanCreateSchedules ||
isEligibleForFeatureLoading ||
siteHasEligiblePluginsLoading;
const showScheduleListEmpty =
( schedules.length === 0 && ! isEligibleForFeature && ! isEligibleForFeatureLoading ) ||
( ! siteHasEligiblePlugins && ! siteHasEligiblePluginsLoading ) ||
( isFetched &&
! isLoadingCanCreateSchedules &&
( schedules.length === 0 || ! canCreateSchedules ) );
const openRemoveDialog = ( id: string ) => {
setRemoveDialogOpen( true );
setSelectedScheduleId( id );
};
const closeRemoveConfirm = () => {
setRemoveDialogOpen( false );
setSelectedScheduleId( undefined );
};
const onRemoveDialogConfirm = () => {
if ( selectedScheduleId ) {
deleteUpdateSchedule( selectedScheduleId );
recordTracksEvent( 'calypso_scheduled_updates_delete_schedule', {
site_slug: siteSlug,
} );
}
closeRemoveConfirm();
};
return (
<>
<ConfirmDialog
isOpen={ removeDialogOpen }
onConfirm={ onRemoveDialogConfirm }
onCancel={ closeRemoveConfirm }
>
{ translate( 'Are you sure you want to delete this schedule?' ) }
</ConfirmDialog>
<Card className="plugins-update-manager schedule-list--card__single-site">
<CardHeader size="extraSmall">
<div className="ch-placeholder">
{ onNavBack && (
<Button icon={ arrowLeft } onClick={ onNavBack }>
{ translate( 'Back' ) }
</Button>
) }
</div>
<Text>{ translate( 'Schedules' ) }</Text>
<div className="ch-placeholder"></div>
</CardHeader>
<CardBody>
{ schedules.length === 0 && isLoading && <Spinner /> }
{ ! isLoading && showScheduleListEmpty && (
<ScheduleListEmpty
pluginsUrl={
adminInterfaceIsWPAdmin
? `${ siteAdminUrl }plugin-install.php`
: `/plugins/${ siteSlug }`
}
onCreateNewSchedule={ onCreateNewSchedule }
canCreateSchedules={ canCreateSchedules }
/>
) }
{ isFetched &&
! isLoadingCanCreateSchedules &&
siteHasEligiblePlugins &&
schedules.length > 0 &&
canCreateSchedules && (
<>
{ ! isDesktopScreen ? (
<ScheduleListCards
onRemoveClick={ openRemoveDialog }
onEditClick={ onEditSchedule }
onShowLogs={ onShowLogs }
/>
) : (
<ScheduleListTable
onRemoveClick={ openRemoveDialog }
onEditClick={ onEditSchedule }
onShowLogs={ onShowLogs }
/>
) }
</>
) }
</CardBody>
</Card>
</>
);
};
|