import { memo, useCallback } from 'react' import { useTranslation } from 'react-i18next' import cn from 'classnames' import { useKeyPress } from 'ahooks' import { useNodesReadOnly, useSelectionInteractions, useWorkflow, } from '../hooks' import { isEventTargetInputArea } from '../utils' import { useStore } from '../store' import AddBlock from './add-block' import TipPopup from './tip-popup' import { Cursor02C, Hand02, } from '@/app/components/base/icons/src/vender/line/editor' import { Cursor02C as Cursor02CSolid, Hand02 as Hand02Solid, } from '@/app/components/base/icons/src/vender/solid/editor' import { OrganizeGrid } from '@/app/components/base/icons/src/vender/line/layout' const Control = () => { const { t } = useTranslation() const controlMode = useStore(s => s.controlMode) const setControlMode = useStore(s => s.setControlMode) const { handleLayout } = useWorkflow() const { nodesReadOnly, getNodesReadOnly, } = useNodesReadOnly() const { handleSelectionCancel } = useSelectionInteractions() const handleModePointer = useCallback(() => { if (getNodesReadOnly()) return setControlMode('pointer') }, [getNodesReadOnly, setControlMode]) const handleModeHand = useCallback(() => { if (getNodesReadOnly()) return setControlMode('hand') handleSelectionCancel() }, [getNodesReadOnly, setControlMode, handleSelectionCancel]) useKeyPress('h', (e) => { if (getNodesReadOnly()) return if (isEventTargetInputArea(e.target as HTMLElement)) return e.preventDefault() handleModeHand() }, { exactMatch: true, useCapture: true, }) useKeyPress('v', (e) => { if (isEventTargetInputArea(e.target as HTMLElement)) return e.preventDefault() handleModePointer() }, { exactMatch: true, useCapture: true, }) const goLayout = () => { if (getNodesReadOnly()) return handleLayout() } return (
{ controlMode === 'pointer' ? : }
{ controlMode === 'hand' ? : }
) } export default memo(Control)