|
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 (
|
|
<div className='flex items-center p-0.5 rounded-lg border-[0.5px] border-gray-100 bg-white shadow-lg text-gray-500'>
|
|
<AddBlock />
|
|
<div className='mx-[3px] w-[1px] h-3.5 bg-gray-200'></div>
|
|
<TipPopup title={t('workflow.common.pointerMode')}>
|
|
<div
|
|
className={cn(
|
|
'flex items-center justify-center mr-[1px] w-8 h-8 rounded-lg cursor-pointer',
|
|
controlMode === 'pointer' ? 'bg-primary-50 text-primary-600' : 'hover:bg-black/5 hover:text-gray-700',
|
|
`${nodesReadOnly && '!cursor-not-allowed opacity-50'}`,
|
|
)}
|
|
onClick={handleModePointer}
|
|
>
|
|
{
|
|
controlMode === 'pointer' ? <Cursor02CSolid className='w-4 h-4' /> : <Cursor02C className='w-4 h-4' />
|
|
}
|
|
</div>
|
|
</TipPopup>
|
|
<TipPopup title={t('workflow.common.handMode')}>
|
|
<div
|
|
className={cn(
|
|
'flex items-center justify-center w-8 h-8 rounded-lg cursor-pointer',
|
|
controlMode === 'hand' ? 'bg-primary-50 text-primary-600' : 'hover:bg-black/5 hover:text-gray-700',
|
|
`${nodesReadOnly && '!cursor-not-allowed opacity-50'}`,
|
|
)}
|
|
onClick={handleModeHand}
|
|
>
|
|
{
|
|
controlMode === 'hand' ? <Hand02Solid className='w-4 h-4' /> : <Hand02 className='w-4 h-4' />
|
|
}
|
|
</div>
|
|
</TipPopup>
|
|
<div className='mx-[3px] w-[1px] h-3.5 bg-gray-200'></div>
|
|
<TipPopup title={t('workflow.panel.organizeBlocks')}>
|
|
<div
|
|
className={cn(
|
|
'flex items-center justify-center w-8 h-8 rounded-lg hover:bg-black/5 hover:text-gray-700 cursor-pointer',
|
|
`${nodesReadOnly && '!cursor-not-allowed opacity-50'}`,
|
|
)}
|
|
onClick={goLayout}
|
|
>
|
|
<OrganizeGrid className='w-4 h-4' />
|
|
</div>
|
|
</TipPopup>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(Control)
|
|
|