mirror of
https://github.com/langgenius/dify.git
synced 2026-02-24 18:05:11 +00:00
75 lines
2.9 KiB
TypeScript
75 lines
2.9 KiB
TypeScript
import type { FC } from 'react'
|
|
import type { ModerationContentConfig } from '@/models/debug'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Switch from '@/app/components/base/switch'
|
|
|
|
type ModerationContentProps = {
|
|
title: string
|
|
info?: string
|
|
showPreset?: boolean
|
|
config: ModerationContentConfig
|
|
onConfigChange: (config: ModerationContentConfig) => void
|
|
}
|
|
const ModerationContent: FC<ModerationContentProps> = ({
|
|
title,
|
|
info,
|
|
showPreset = true,
|
|
config,
|
|
onConfigChange,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
|
|
const handleConfigChange = (field: string, value: boolean | string) => {
|
|
if (field === 'preset_response' && typeof value === 'string')
|
|
value = value.slice(0, 100)
|
|
onConfigChange({ ...config, [field]: value })
|
|
}
|
|
|
|
return (
|
|
<div className="py-2">
|
|
<div className="rounded-lg border border-components-panel-border bg-components-panel-bg">
|
|
<div className="flex h-10 items-center justify-between rounded-lg px-3">
|
|
<div className="shrink-0 text-sm font-medium text-text-primary">{title}</div>
|
|
<div className="flex grow items-center justify-end">
|
|
{
|
|
info && (
|
|
<div className="mr-2 truncate text-xs text-text-tertiary" title={info}>{info}</div>
|
|
)
|
|
}
|
|
<Switch
|
|
size="l"
|
|
value={config.enabled}
|
|
onChange={v => handleConfigChange('enabled', v)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
{
|
|
config.enabled && showPreset && (
|
|
<div className="rounded-lg bg-components-panel-bg px-3 pb-3 pt-1">
|
|
<div className="flex h-8 items-center justify-between text-[13px] font-medium text-text-secondary">
|
|
{t('feature.moderation.modal.content.preset', { ns: 'appDebug' })}
|
|
<span className="text-xs font-normal text-text-tertiary">{t('feature.moderation.modal.content.supportMarkdown', { ns: 'appDebug' })}</span>
|
|
</div>
|
|
<div className="relative h-20 rounded-lg bg-components-input-bg-normal px-3 py-2">
|
|
<textarea
|
|
value={config.preset_response || ''}
|
|
className="block h-full w-full resize-none appearance-none bg-transparent text-sm text-text-secondary outline-none"
|
|
placeholder={t('feature.moderation.modal.content.placeholder', { ns: 'appDebug' }) || ''}
|
|
onChange={e => handleConfigChange('preset_response', e.target.value)}
|
|
/>
|
|
<div className="absolute bottom-2 right-2 flex h-5 items-center rounded-md bg-background-section px-1 text-xs font-medium text-text-quaternary">
|
|
<span>{(config.preset_response || '').length}</span>
|
|
/
|
|
<span className="text-text-tertiary">100</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ModerationContent
|