1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- import { memo } from 'react'
- import { useTranslation } from 'react-i18next'
- import cn from 'classnames'
- import {
- useNodesReadOnly,
- useWorkflow,
- } from '../hooks'
- 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 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={() => setControlMode('pointer')}
- >
- {
- 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={() => setControlMode('hand')}
- >
- {
- 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)
|