mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-29 18:03:13 +00:00 
			
		
		
		
	
		
			
	
	
		
			86 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			86 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|   | 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) |