mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-13 03:05:11 -05:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { IconButton, Tooltip } from '@invoke-ai/ui-library';
|
|
import { useSelectTool, useToolIsSelected } from 'features/controlLayers/components/Tool/hooks';
|
|
import { useRegisteredHotkeys } from 'features/system/components/HotkeysModal/useHotkeyData';
|
|
import { memo } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { PiBoundingBoxBold } from 'react-icons/pi';
|
|
|
|
export const ToolBboxButton = memo(() => {
|
|
const { t } = useTranslation();
|
|
const selectBbox = useSelectTool('bbox');
|
|
const isSelected = useToolIsSelected('bbox');
|
|
|
|
useRegisteredHotkeys({
|
|
id: 'selectBboxTool',
|
|
category: 'canvas',
|
|
callback: selectBbox,
|
|
options: { enabled: !isSelected },
|
|
dependencies: [selectBbox, isSelected],
|
|
});
|
|
|
|
return (
|
|
<Tooltip label={`${t('controlLayers.tool.bbox')} (C)`} placement="end">
|
|
<IconButton
|
|
aria-label={`${t('controlLayers.tool.bbox')} (C)`}
|
|
icon={<PiBoundingBoxBold />}
|
|
colorScheme={isSelected ? 'invokeBlue' : 'base'}
|
|
variant="solid"
|
|
onClick={selectBbox}
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
});
|
|
|
|
ToolBboxButton.displayName = 'ToolBboxButton';
|