Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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>
</>
);
};