mirror of https://github.com/langgenius/dify.git
36 lines
977 B
TypeScript
36 lines
977 B
TypeScript
import { memo } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Textarea from 'react-textarea-autosize'
|
|
import { cn } from '@/utils/classnames'
|
|
|
|
type SummaryTextProps = {
|
|
value?: string
|
|
onChange?: (value: string) => void
|
|
disabled?: boolean
|
|
}
|
|
const SummaryText = ({
|
|
value,
|
|
onChange,
|
|
disabled,
|
|
}: SummaryTextProps) => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className="space-y-1">
|
|
<div className="system-xs-medium-uppercase text-text-tertiary">{t('segment.summary', { ns: 'datasetDocuments' })}</div>
|
|
<Textarea
|
|
className={cn(
|
|
'body-sm-regular w-full resize-none bg-transparent leading-6 text-text-secondary outline-none',
|
|
)}
|
|
placeholder={t('segment.summaryPlaceholder', { ns: 'datasetDocuments' })}
|
|
minRows={1}
|
|
value={value ?? ''}
|
|
onChange={e => onChange?.(e.target.value)}
|
|
disabled={disabled}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(SummaryText)
|