2024-04-08 18:51:46 +08:00
|
|
|
import type { FC } from 'react'
|
|
|
|
import React from 'react'
|
|
|
|
import ReadonlyInputWithSelectVar from '../_base/components/readonly-input-with-select-var'
|
|
|
|
import type { HttpNodeType } from './types'
|
|
|
|
import type { NodeProps } from '@/app/components/workflow/types'
|
|
|
|
const Node: FC<NodeProps<HttpNodeType>> = ({
|
|
|
|
id,
|
|
|
|
data,
|
|
|
|
}) => {
|
|
|
|
const { method, url } = data
|
|
|
|
if (!url)
|
|
|
|
return null
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='mb-1 px-3 py-1'>
|
2025-04-10 17:15:48 +08:00
|
|
|
<div className='flex items-start rounded-md bg-workflow-block-parma-bg p-1'>
|
|
|
|
<div className='flex h-4 shrink-0 items-center rounded bg-components-badge-white-to-dark px-1 text-xs font-semibold uppercase text-text-secondary'>{method}</div>
|
2024-09-25 11:27:17 +08:00
|
|
|
<div className='pl-1 pt-1'>
|
2024-04-08 18:51:46 +08:00
|
|
|
<ReadonlyInputWithSelectVar
|
2025-04-10 17:15:48 +08:00
|
|
|
className='text-text-secondary'
|
2024-04-08 18:51:46 +08:00
|
|
|
value={url}
|
|
|
|
nodeId={id}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default React.memo(Node)
|