mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-16 21:11:22 -05:00
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import type { IconButtonProps } from '@invoke-ai/ui-library';
|
|
import { IconButton } from '@invoke-ai/ui-library';
|
|
import { useAppSelector } from 'app/store/storeHooks';
|
|
import { memo } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { PiTrashSimpleBold } from 'react-icons/pi';
|
|
|
|
type DeleteImageButtonProps = Omit<IconButtonProps, 'aria-label'> & {
|
|
onClick: () => void;
|
|
};
|
|
|
|
export const DeleteImageButton = memo((props: DeleteImageButtonProps) => {
|
|
const { onClick, isDisabled } = props;
|
|
const { t } = useTranslation();
|
|
const isConnected = useAppSelector((s) => s.system.isConnected);
|
|
const imageSelectionLength: number = (useAppSelector((s) => s.gallery.selection) || []).length;
|
|
const labelMessage: string = imageSelectionLength > 1 ?
|
|
t('gallery.deleteImage_plural', { 'count': imageSelectionLength }) :
|
|
t('gallery.deleteImage');
|
|
|
|
return (
|
|
<IconButton
|
|
onClick={onClick}
|
|
icon={<PiTrashSimpleBold />}
|
|
tooltip={labelMessage}
|
|
aria-label={labelMessage}
|
|
isDisabled={isDisabled || !isConnected}
|
|
colorScheme="error"
|
|
/>
|
|
);
|
|
});
|
|
|
|
DeleteImageButton.displayName = 'DeleteImageButton';
|