dify/web/app/components/workflow/nodes/trigger-webhook/node.tsx

29 lines
753 B
TypeScript

import type { FC } from 'react'
import React from 'react'
import { useTranslation } from 'react-i18next'
import type { WebhookTriggerNodeType } from './types'
import type { NodeProps } from '@/app/components/workflow/types'
const i18nPrefix = 'workflow.nodes.triggerWebhook'
const Node: FC<NodeProps<WebhookTriggerNodeType>> = ({
data,
}) => {
const { t } = useTranslation()
return (
<div className="mb-1 px-3 py-1">
<div className="text-xs text-gray-700">
{t(`${i18nPrefix}.nodeTitle`)}
</div>
{data.http_methods && data.http_methods.length > 0 && (
<div className="text-xs text-gray-500">
{data.http_methods.join(', ')}
</div>
)}
</div>
)
}
export default React.memo(Node)