dify/web/app/components/tools/mcp/mcp-server-param-item.tsx
Stephen Zhou 6d0e36479b
refactor(i18n): use JSON with flattened key and namespace (#30114)
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-12-29 14:52:32 +08:00

39 lines
1.0 KiB
TypeScript

'use client'
import * as React from 'react'
import { useTranslation } from 'react-i18next'
import Textarea from '@/app/components/base/textarea'
type Props = {
data?: any
value: string
onChange: (value: string) => void
}
const MCPServerParamItem = ({
data,
value,
onChange,
}: Props) => {
const { t } = useTranslation()
return (
<div className="space-y-0.5">
<div className="flex h-6 items-center gap-2">
<div className="system-xs-medium text-text-secondary">{data.label}</div>
<div className="system-xs-medium text-text-quaternary">·</div>
<div className="system-xs-medium text-text-secondary">{data.variable}</div>
<div className="system-xs-medium text-text-tertiary">{data.type}</div>
</div>
<Textarea
className="h-8 resize-none"
value={value}
placeholder={t('mcp.server.modal.parametersPlaceholder', { ns: 'tools' })}
onChange={e => onChange(e.target.value)}
>
</Textarea>
</div>
)
}
export default MCPServerParamItem