Spaces:
Running
Running
'use client' | |
import type { FC } from 'react' | |
import React, { useCallback } from 'react' | |
import produce from 'immer' | |
import cn from 'classnames' | |
import s from './style.module.css' | |
import Switch from '@/app/components/base/switch' | |
import { FeatureEnum } from '@/app/components/base/features/types' | |
import { useFeaturesStore } from '@/app/components/base/features/hooks' | |
import { useModalContext } from '@/context/modal-context' | |
export type IFeatureItemProps = { | |
icon: React.ReactNode | |
previewImgClassName?: string | |
title: string | |
description: string | |
value: boolean | |
onChange: (type: FeatureEnum, value: boolean) => void | |
type: FeatureEnum | |
} | |
const FeatureItem: FC<IFeatureItemProps> = ({ | |
icon, | |
previewImgClassName, | |
title, | |
description, | |
value, | |
onChange, | |
type, | |
}) => { | |
const featuresStore = useFeaturesStore() | |
const { setShowModerationSettingModal } = useModalContext() | |
const handleChange = useCallback((newValue: boolean) => { | |
const { | |
features, | |
setFeatures, | |
} = featuresStore!.getState() | |
if (newValue && !features.moderation?.type && type === FeatureEnum.moderation) { | |
setShowModerationSettingModal({ | |
payload: { | |
enabled: true, | |
type: 'keywords', | |
config: { | |
keywords: '', | |
inputs_config: { | |
enabled: true, | |
preset_response: '', | |
}, | |
}, | |
}, | |
onSaveCallback: (newModeration) => { | |
setFeatures(produce(features, (draft) => { | |
draft.moderation = newModeration | |
})) | |
}, | |
onCancelCallback: () => { | |
setFeatures(produce(features, (draft) => { | |
draft.moderation = { enabled: false } | |
})) | |
}, | |
}) | |
return | |
} | |
onChange(type, newValue) | |
}, [type, onChange, featuresStore, setShowModerationSettingModal]) | |
return ( | |
<div className={cn(s.wrap, 'relative flex justify-between p-3 rounded-xl border border-transparent bg-gray-50 hover:border-gray-200 cursor-pointer')}> | |
<div className='flex space-x-3 mr-2'> | |
{/* icon */} | |
<div | |
className='shrink-0 flex items-center justify-center w-8 h-8 rounded-lg border border-gray-200 bg-white' | |
style={{ | |
boxShadow: '0px 1px 2px rgba(16, 24, 40, 0.05)', | |
}} | |
> | |
{icon} | |
</div> | |
<div> | |
<div className='text-sm font-semibold text-gray-800'>{title}</div> | |
<div className='text-xs font-normal text-gray-500'>{description}</div> | |
</div> | |
</div> | |
<Switch onChange={handleChange} defaultValue={value} /> | |
{ | |
previewImgClassName && ( | |
<div className={cn(s.preview, s[previewImgClassName])}> | |
</div>) | |
} | |
</div> | |
) | |
} | |
export default React.memo(FeatureItem) | |