mirror of
https://github.com/langgenius/dify.git
synced 2026-07-24 21:18:35 +08:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
'use client'
|
|
import { Textarea } from '@langgenius/dify-ui/textarea'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
type Props = Readonly<{
|
|
data?: any
|
|
value: string
|
|
onChange: (value: string) => void
|
|
}>
|
|
|
|
const MCPServerParamItem = ({ data, value, onChange }: Props) => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className="min-w-0 space-y-0.5">
|
|
<div className="flex min-h-6 min-w-0 flex-wrap items-center gap-2">
|
|
<div className="max-w-full min-w-0 system-xs-medium wrap-break-word text-text-secondary">
|
|
{data.label}
|
|
</div>
|
|
<div className="system-xs-medium text-text-quaternary">·</div>
|
|
<div className="max-w-full min-w-0 system-xs-medium break-all text-text-secondary">
|
|
{data.variable}
|
|
</div>
|
|
<div className="max-w-full min-w-0 system-xs-medium wrap-break-word text-text-tertiary">
|
|
{data.type}
|
|
</div>
|
|
</div>
|
|
<Textarea
|
|
aria-label={data.label}
|
|
className="h-8 resize-none"
|
|
value={value}
|
|
placeholder={t(($) => $['mcp.server.modal.parametersPlaceholder'], { ns: 'tools' })}
|
|
onValueChange={(value) => onChange(value)}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default MCPServerParamItem
|