mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
74 lines
3.0 KiB
TypeScript
74 lines
3.0 KiB
TypeScript
import { Button } from '@langgenius/dify-ui/button'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
import { memo, useEffect, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import ViewWorkflowHistory from '@/app/components/workflow/header/view-workflow-history'
|
|
import { useNodesReadOnly } from '@/app/components/workflow/hooks'
|
|
import { useWorkflowHistoryStore } from '@/app/components/workflow/workflow-history-store'
|
|
import Divider from '../../base/divider'
|
|
import TipPopup from '../operator/tip-popup'
|
|
|
|
type UndoRedoProps = { handleUndo: () => void; handleRedo: () => void }
|
|
function UndoRedo({ handleUndo, handleRedo }: UndoRedoProps) {
|
|
const { t } = useTranslation()
|
|
const { store } = useWorkflowHistoryStore()
|
|
const [buttonsDisabled, setButtonsDisabled] = useState({ undo: true, redo: true })
|
|
|
|
useEffect(() => {
|
|
const unsubscribe = store.temporal.subscribe((state) => {
|
|
setButtonsDisabled({
|
|
undo: state.pastStates.length === 0,
|
|
redo: state.futureStates.length === 0,
|
|
})
|
|
})
|
|
return () => unsubscribe()
|
|
}, [store])
|
|
|
|
const { nodesReadOnly } = useNodesReadOnly()
|
|
|
|
return (
|
|
<div className="flex items-center space-x-0.5 rounded-lg border-[0.5px] border-components-actionbar-border bg-components-actionbar-bg p-0.5 shadow-lg backdrop-blur-[5px]">
|
|
<TipPopup title={t(($) => $['common.undo'], { ns: 'workflow' })!} shortcut="workflow.undo">
|
|
<Button
|
|
variant="ghost"
|
|
size="small"
|
|
aria-label={t(($) => $['common.undo'], { ns: 'workflow' })!}
|
|
data-tooltip-id="workflow.undo"
|
|
disabled={nodesReadOnly || buttonsDisabled.undo}
|
|
focusableWhenDisabled
|
|
className={cn(
|
|
'size-8 p-0 text-text-tertiary hover:bg-state-base-hover hover:text-text-secondary',
|
|
(nodesReadOnly || buttonsDisabled.undo) &&
|
|
'cursor-not-allowed text-text-disabled hover:bg-transparent hover:text-text-disabled',
|
|
)}
|
|
onClick={handleUndo}
|
|
>
|
|
<span aria-hidden className="i-ri-arrow-go-back-line size-4" />
|
|
</Button>
|
|
</TipPopup>
|
|
<TipPopup title={t(($) => $['common.redo'], { ns: 'workflow' })!} shortcut="workflow.redo">
|
|
<Button
|
|
variant="ghost"
|
|
size="small"
|
|
aria-label={t(($) => $['common.redo'], { ns: 'workflow' })!}
|
|
data-tooltip-id="workflow.redo"
|
|
disabled={nodesReadOnly || buttonsDisabled.redo}
|
|
focusableWhenDisabled
|
|
className={cn(
|
|
'size-8 p-0 text-text-tertiary hover:bg-state-base-hover hover:text-text-secondary',
|
|
(nodesReadOnly || buttonsDisabled.redo) &&
|
|
'cursor-not-allowed text-text-disabled hover:bg-transparent hover:text-text-disabled',
|
|
)}
|
|
onClick={handleRedo}
|
|
>
|
|
<span aria-hidden className="i-ri-arrow-go-forward-fill size-4" />
|
|
</Button>
|
|
</TipPopup>
|
|
<Divider type="vertical" className="mx-0.5 h-3.5" />
|
|
<ViewWorkflowHistory />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(UndoRedo)
|