dify/web/app/components/workflow/header/run-and-history.tsx
Wu Tianwei 33edf97f81
feat: RBAC (#37107)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: fatelei <fatelei@gmail.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: 盐粒 Yanli <yanli@dify.ai>
Co-authored-by: Charles Yao <chongbinyao33@gmail.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
Co-authored-by: yunlu.wen <yunlu.wen@dify.ai>
Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com>
Co-authored-by: Jingyi <jingyi.qi@dify.ai>
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
Co-authored-by: Joel <iamjoel007@gmail.com>
Co-authored-by: hjlarry <hjlarry@163.com>
Co-authored-by: Asuka Minato <i@asukaminato.eu.org>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Xiyuan Chen <52963600+GareArc@users.noreply.github.com>
Co-authored-by: gigglewang <gigglewang@dify.ai>
Co-authored-by: chariri <w@chariri.moe>
Co-authored-by: Evan <2869018789@qq.com>
Co-authored-by: zyssyz123 <916125788@qq.com>
2026-06-18 16:35:29 +00:00

89 lines
2.5 KiB
TypeScript

import type { ViewHistoryProps } from './view-history'
import { cn } from '@langgenius/dify-ui/cn'
import { memo } from 'react'
import { useTranslation } from 'react-i18next'
import {
useNodesReadOnly,
useWorkflowStartRun,
} from '../hooks'
import { useHooksStore } from '../hooks-store'
import Checklist from './checklist'
import RunMode from './run-mode'
import ViewHistory from './view-history'
const PreviewMode = memo(({
disabled = false,
}: {
disabled?: boolean
}) => {
const { t } = useTranslation()
const { handleWorkflowStartRunInChatflow } = useWorkflowStartRun()
const canRun = useHooksStore(s => s.accessControl.canRun)
const isDisabled = disabled || !canRun
return (
<button
type="button"
disabled={isDisabled}
className={cn(
'flex h-7 items-center rounded-md px-2.5 text-[13px] font-medium text-components-button-secondary-accent-text',
isDisabled
? 'cursor-not-allowed opacity-50'
: 'cursor-pointer hover:bg-state-accent-hover',
)}
onClick={() => {
if (!isDisabled)
handleWorkflowStartRunInChatflow()
}}
>
<span aria-hidden className="mr-1 i-ri-play-large-line size-4" />
{t('common.debugAndPreview', { ns: 'workflow' })}
</button>
)
})
export type RunAndHistoryProps = {
showRunButton?: boolean
runButtonText?: string
isRunning?: boolean
showPreviewButton?: boolean
viewHistoryProps?: ViewHistoryProps
components?: {
RunMode?: React.ComponentType<
{
text?: string
disabled?: boolean
}
>
}
}
const RunAndHistory = ({
showRunButton,
runButtonText,
showPreviewButton,
viewHistoryProps,
components,
}: RunAndHistoryProps) => {
const { nodesReadOnly } = useNodesReadOnly()
const canRun = useHooksStore(s => s.accessControl.canRun)
const { RunMode: CustomRunMode } = components || {}
return (
<div className="flex h-8 items-center rounded-lg border-[0.5px] border-components-button-secondary-border bg-components-button-secondary-bg px-0.5 shadow-xs">
{
showRunButton && (
CustomRunMode ? <CustomRunMode text={runButtonText} disabled={!canRun} /> : <RunMode text={runButtonText} disabled={!canRun} />
)
}
{
showPreviewButton && <PreviewMode disabled={!canRun} />
}
<div className="mx-0.5 h-3.5 w-px bg-divider-regular"></div>
<ViewHistory {...viewHistoryProps} />
<Checklist disabled={nodesReadOnly} />
</div>
)
}
export default memo(RunAndHistory)