import IAIButton from 'common/components/IAIButton'; import { memo, useCallback } from 'react'; import { ControlNetConfig } from '../store/controlNetSlice'; import { useAppDispatch } from 'app/store/storeHooks'; import { controlNetImageProcessed } from '../store/actions'; import { useIsReadyToInvoke } from 'common/hooks/useIsReadyToInvoke'; type Props = { controlNet: ControlNetConfig; }; const ControlNetPreprocessButton = (props: Props) => { const { controlNetId, controlImage } = props.controlNet; const dispatch = useAppDispatch(); const isReady = useIsReadyToInvoke(); const handleProcess = useCallback(() => { dispatch( controlNetImageProcessed({ controlNetId, }) ); }, [controlNetId, dispatch]); return ( Preprocess ); }; export default memo(ControlNetPreprocessButton);