File size: 822 Bytes
8a37e0a | 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 | import { usePruneQueue } from 'features/queue/hooks/usePruneQueue';
import { memo } from 'react';
import { useTranslation } from 'react-i18next';
import { PiBroomBold } from 'react-icons/pi';
import QueueButton from './common/QueueButton';
type Props = {
asIconButton?: boolean;
};
const PruneQueueButton = ({ asIconButton }: Props) => {
const { t } = useTranslation();
const { pruneQueue, isLoading, finishedCount, isDisabled } = usePruneQueue();
return (
<QueueButton
isDisabled={isDisabled}
isLoading={isLoading}
asIconButton={asIconButton}
label={t('queue.prune')}
tooltip={t('queue.pruneTooltip', { item_count: finishedCount })}
icon={<PiBroomBold />}
onClick={pruneQueue}
colorScheme="invokeBlue"
/>
);
};
export default memo(PruneQueueButton);
|