jan/web/containers/ModelSetting/SettingComponent.tsx
Faisal Amir 314cb03693
feat: stop word model setting (#4113)
* feat: stop word model setting

* chore: update test tag input

* chore: handle UI when no stop word

* chore: fix types of value tag input
2024-11-25 21:17:16 +07:00

107 lines
2.8 KiB
TypeScript

import {
SettingComponentProps,
InputComponentProps,
CheckboxComponentProps,
SliderComponentProps,
} from '@janhq/core'
import Checkbox from '@/containers/Checkbox'
import ModelConfigInput from '@/containers/ModelConfigInput'
import SliderRightPanel from '@/containers/SliderRightPanel'
import TagInput from '@/containers/TagInput'
type Props = {
componentProps: SettingComponentProps[]
disabled?: boolean
onValueUpdated: (
key: string,
value: string | number | boolean | string[]
) => void
}
const SettingComponent: React.FC<Props> = ({
componentProps,
disabled = false,
onValueUpdated,
}) => {
const components = componentProps.map((data) => {
switch (data.controllerType) {
case 'slider': {
const { min, max, step, value } =
data.controllerProps as SliderComponentProps
return (
<SliderRightPanel
key={data.key}
title={data.title}
description={data.description}
min={min}
max={max}
step={step}
value={value}
name={data.key}
disabled={disabled}
onValueChanged={(value) => onValueUpdated(data.key, value)}
/>
)
}
case 'input': {
const { placeholder, value: textValue } =
data.controllerProps as InputComponentProps
return (
<ModelConfigInput
title={data.title}
disabled={disabled}
key={data.key}
name={data.key}
description={data.description}
placeholder={placeholder}
value={textValue as string}
onValueChanged={(value) => onValueUpdated(data.key, value)}
/>
)
}
case 'tag': {
const { placeholder, value: textValue } =
data.controllerProps as InputComponentProps
return (
<TagInput
title={data.title}
disabled={disabled}
key={data.key}
name={data.key}
description={data.description}
placeholder={placeholder}
value={textValue as string[]}
onValueChanged={(value) => onValueUpdated(data.key, value)}
/>
)
}
case 'checkbox': {
const { value } = data.controllerProps as CheckboxComponentProps
return (
<Checkbox
key={data.key}
disabled={disabled}
name={data.key}
description={data.description}
title={data.title}
checked={value}
onValueChanged={(value) => onValueUpdated(data.key, value)}
/>
)
}
default:
return null
}
})
return <div className="flex flex-col gap-y-4">{components}</div>
}
export default SettingComponent