| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | 
							- 'use client'
 - import { useTranslation } from 'react-i18next'
 - import classNames from 'classnames'
 - import s from './index.module.css'
 - import { DataSet } from '@/models/datasets'
 - 
 - const itemClass = `
 -   w-[234px] p-3 rounded-xl bg-gray-25 border border-gray-100 cursor-pointer
 - `
 - const radioClass = `
 -   w-4 h-4 border-[2px] border-gray-200 rounded-full
 - `
 - type IIndexMethodRadioProps = {
 -   value?: DataSet['indexing_technique']
 -   onChange: (v?: DataSet['indexing_technique']) => void
 - }
 - 
 - const IndexMethodRadio = ({
 -   value,
 -   onChange
 - }: IIndexMethodRadioProps) => {
 -   const { t } = useTranslation()
 -   const options = [
 -     {
 -       key: 'high_quality',
 -       text: t('datasetSettings.form.indexMethodHighQuality'),
 -       desc: t('datasetSettings.form.indexMethodHighQualityTip'),
 -       icon: 'high-quality'
 -     },
 -     {
 -       key: 'economy',
 -       text: t('datasetSettings.form.indexMethodEconomy'),
 -       desc: t('datasetSettings.form.indexMethodEconomyTip'),
 -       icon: 'economy'
 -     }
 -   ]
 - 
 -   return (
 -     <div className={classNames(s.wrapper, 'flex justify-between w-full')}>
 -       {
 -         options.map(option => (
 -           <div 
 -             key={option.key} 
 -             className={classNames(
 -               option.key === value && s['item-active'], 
 -               s.item,
 -               itemClass
 -             )}
 -             onClick={() => onChange(option.key as DataSet['indexing_technique'])}
 -           >
 -             <div className='flex items-center mb-1'>
 -               <div className={classNames(s.icon, s[`${option.icon}-icon`])} />
 -               <div className='grow text-sm text-gray-900'>{option.text}</div>
 -               <div className={classNames(radioClass, s.radio)} />
 -             </div>
 -             <div className='pl-9 text-xs text-gray-500 leading-[18px]'>{option.desc}</div>
 -           </div>
 -         ))
 -       }
 -     </div>
 -   )
 - }
 - 
 - export default IndexMethodRadio
 
 
  |