dify/web/app/components/workflow/node-actions-menu/context-menu-content.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

112 lines
4.1 KiB
TypeScript

import type { NodeActionsMenuProps } from './types'
import {
ContextMenuGroup,
ContextMenuItem,
ContextMenuLinkItem,
ContextMenuSeparator,
} from '@langgenius/dify-ui/context-menu'
import { useTranslation } from 'react-i18next'
import { ChangeBlockMenuTrigger } from './change-block-menu-trigger'
import {
NODE_ACTIONS_MENU_DELETE_ITEM_CLASS_NAME,
NODE_ACTIONS_MENU_ITEM_WITH_SHORTCUT_CLASS_NAME,
NodeActionsMenuAbout,
NodeActionsMenuItemContent,
} from './shared'
import { useNodeActionsMenuModel } from './use-node-actions-menu-model'
export function NodeActionsContextMenuContent(props: NodeActionsMenuProps) {
const { t } = useTranslation()
const model = useNodeActionsMenuModel(props)
const hasRunGroup = model.canRun || model.canChangeBlock
const hasEditGroup = !model.nodesReadOnly && !model.isSingleton
const hasDeleteGroup = !model.nodesReadOnly && !model.isUndeletable
const singleRunActionLabel = model.isSingleRunning
? t(($) => $['debug.variableInspect.trigger.stop'], { ns: 'workflow' })
: t(($) => $['panel.runThisStep'], { ns: 'workflow' })
return (
<>
{hasRunGroup && (
<ContextMenuGroup>
{model.canRun && (
<ContextMenuItem onClick={model.handleRun}>{singleRunActionLabel}</ContextMenuItem>
)}
{model.canChangeBlock && (
<ChangeBlockMenuTrigger
nodeId={model.id}
nodeData={model.data}
sourceHandle={model.sourceHandle}
/>
)}
</ContextMenuGroup>
)}
{hasRunGroup &&
(hasEditGroup || hasDeleteGroup || model.workflowAppHref || model.helpLinkUri) && (
<ContextMenuSeparator />
)}
{hasEditGroup && (
<ContextMenuGroup>
<ContextMenuItem
className={NODE_ACTIONS_MENU_ITEM_WITH_SHORTCUT_CLASS_NAME}
onClick={model.handleCopy}
>
<NodeActionsMenuItemContent shortcut="workflow.copy">
{t(($) => $['common.copy'], { ns: 'workflow' })}
</NodeActionsMenuItemContent>
</ContextMenuItem>
<ContextMenuItem
className={NODE_ACTIONS_MENU_ITEM_WITH_SHORTCUT_CLASS_NAME}
onClick={model.handleDuplicate}
>
<NodeActionsMenuItemContent shortcut="workflow.duplicate">
{t(($) => $['common.duplicate'], { ns: 'workflow' })}
</NodeActionsMenuItemContent>
</ContextMenuItem>
</ContextMenuGroup>
)}
{hasEditGroup && (hasDeleteGroup || model.workflowAppHref || model.helpLinkUri) && (
<ContextMenuSeparator />
)}
{hasDeleteGroup && (
<ContextMenuGroup>
<ContextMenuItem
className={NODE_ACTIONS_MENU_DELETE_ITEM_CLASS_NAME}
onClick={model.handleDelete}
>
<NodeActionsMenuItemContent shortcut="workflow.delete">
{t(($) => $['operation.delete'], { ns: 'common' })}
</NodeActionsMenuItemContent>
</ContextMenuItem>
</ContextMenuGroup>
)}
{hasDeleteGroup && (model.workflowAppHref || model.helpLinkUri) && <ContextMenuSeparator />}
{model.workflowAppHref && (
<ContextMenuGroup>
<ContextMenuLinkItem
href={model.workflowAppHref}
target="_blank"
rel="noopener noreferrer"
>
{t(($) => $['panel.openWorkflow'], { ns: 'workflow' })}
</ContextMenuLinkItem>
</ContextMenuGroup>
)}
{model.workflowAppHref && model.helpLinkUri && <ContextMenuSeparator />}
{model.helpLinkUri && (
<ContextMenuGroup>
<ContextMenuLinkItem href={model.helpLinkUri} target="_blank" rel="noopener noreferrer">
{t(($) => $['panel.helpLink'], { ns: 'workflow' })}
</ContextMenuLinkItem>
</ContextMenuGroup>
)}
<ContextMenuSeparator />
<NodeActionsMenuAbout
title={t(($) => $['panel.about'], { ns: 'workflow' })}
description={model.about.description}
author={`${t(($) => $['panel.createdBy'], { ns: 'workflow' })} ${model.about.author}`}
/>
</>
)
}