mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-30 18:33:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			104 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { MouseEvent } from 'react'
 | |
| import {
 | |
|   memo,
 | |
| } from 'react'
 | |
| import { useTranslation } from 'react-i18next'
 | |
| import {
 | |
|   RiCursorLine,
 | |
|   RiFunctionAddLine,
 | |
|   RiHand,
 | |
|   RiStickyNoteAddLine,
 | |
| } from '@remixicon/react'
 | |
| import {
 | |
|   useNodesReadOnly,
 | |
|   useWorkflowMoveMode,
 | |
|   useWorkflowOrganize,
 | |
| } from '../hooks'
 | |
| import {
 | |
|   ControlMode,
 | |
| } from '../types'
 | |
| import { useStore } from '../store'
 | |
| import Divider from '../../base/divider'
 | |
| import AddBlock from './add-block'
 | |
| import TipPopup from './tip-popup'
 | |
| import ExportImage from './export-image'
 | |
| import { useOperator } from './hooks'
 | |
| import cn from '@/utils/classnames'
 | |
| 
 | |
| const Control = () => {
 | |
|   const { t } = useTranslation()
 | |
|   const controlMode = useStore(s => s.controlMode)
 | |
|   const { handleModePointer, handleModeHand } = useWorkflowMoveMode()
 | |
|   const { handleLayout } = useWorkflowOrganize()
 | |
|   const { handleAddNote } = useOperator()
 | |
|   const {
 | |
|     nodesReadOnly,
 | |
|     getNodesReadOnly,
 | |
|   } = useNodesReadOnly()
 | |
| 
 | |
|   const addNote = (e: MouseEvent<HTMLDivElement>) => {
 | |
|     if (getNodesReadOnly())
 | |
|       return
 | |
| 
 | |
|     e.stopPropagation()
 | |
|     handleAddNote()
 | |
|   }
 | |
| 
 | |
|   return (
 | |
|     <div className='flex items-center rounded-lg border-[0.5px] border-components-actionbar-border bg-components-actionbar-bg p-0.5 text-text-tertiary shadow-lg'>
 | |
|       <AddBlock />
 | |
|       <TipPopup title={t('workflow.nodes.note.addNote')}>
 | |
|         <div
 | |
|           className={cn(
 | |
|             'ml-[1px] flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg hover:bg-state-base-hover hover:text-text-secondary',
 | |
|             `${nodesReadOnly && 'cursor-not-allowed text-text-disabled hover:bg-transparent hover:text-text-disabled'}`,
 | |
|           )}
 | |
|           onClick={addNote}
 | |
|         >
 | |
|           <RiStickyNoteAddLine className='h-4 w-4' />
 | |
|         </div>
 | |
|       </TipPopup>
 | |
|       <Divider type='vertical' className='mx-0.5 h-3.5' />
 | |
|       <TipPopup title={t('workflow.common.pointerMode')} shortcuts={['v']}>
 | |
|         <div
 | |
|           className={cn(
 | |
|             'mr-[1px] flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg',
 | |
|             controlMode === ControlMode.Pointer ? 'bg-state-accent-active text-text-accent' : 'hover:bg-state-base-hover hover:text-text-secondary',
 | |
|             `${nodesReadOnly && 'cursor-not-allowed text-text-disabled hover:bg-transparent hover:text-text-disabled'}`,
 | |
|           )}
 | |
|           onClick={handleModePointer}
 | |
|         >
 | |
|           <RiCursorLine className='h-4 w-4' />
 | |
|         </div>
 | |
|       </TipPopup>
 | |
|       <TipPopup title={t('workflow.common.handMode')} shortcuts={['h']}>
 | |
|         <div
 | |
|           className={cn(
 | |
|             'flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg',
 | |
|             controlMode === ControlMode.Hand ? 'bg-state-accent-active text-text-accent' : 'hover:bg-state-base-hover hover:text-text-secondary',
 | |
|             `${nodesReadOnly && 'cursor-not-allowed text-text-disabled hover:bg-transparent hover:text-text-disabled'}`,
 | |
|           )}
 | |
|           onClick={handleModeHand}
 | |
|         >
 | |
|           <RiHand className='h-4 w-4' />
 | |
|         </div>
 | |
|       </TipPopup>
 | |
|       <Divider type='vertical' className='mx-0.5 h-3.5' />
 | |
|       <ExportImage />
 | |
|       <TipPopup title={t('workflow.panel.organizeBlocks')} shortcuts={['ctrl', 'o']}>
 | |
|         <div
 | |
|           className={cn(
 | |
|             'flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg hover:bg-state-base-hover hover:text-text-secondary',
 | |
|             `${nodesReadOnly && 'cursor-not-allowed text-text-disabled hover:bg-transparent hover:text-text-disabled'}`,
 | |
|           )}
 | |
|           onClick={handleLayout}
 | |
|         >
 | |
|           <RiFunctionAddLine className='h-4 w-4' />
 | |
|         </div>
 | |
|       </TipPopup>
 | |
|     </div>
 | |
|   )
 | |
| }
 | |
| 
 | |
| export default memo(Control)
 | 
