chore : option card (#6800)

This commit is contained in:
Joel
2024-07-30 17:33:08 +08:00
committed by GitHub
parent 0a744a73b3
commit 53a89bbbc7
2 changed files with 74 additions and 33 deletions

View File

@@ -2,35 +2,11 @@
import type { FC } from 'react'
import React, { useCallback } from 'react'
import { useTranslation } from 'react-i18next'
import cn from '@/utils/classnames'
import OptionCard from '@/app/components/workflow/nodes/_base/components/option-card'
import { Resolution } from '@/types/app'
const i18nPrefix = 'workflow.nodes.llm'
type ItemProps = {
title: string
value: Resolution
onSelect: (value: Resolution) => void
isSelected: boolean
}
const Item: FC<ItemProps> = ({ title, value, onSelect, isSelected }) => {
const handleSelect = useCallback(() => {
if (isSelected)
return
onSelect(value)
}, [value, onSelect, isSelected])
return (
<div
className={cn(isSelected ? 'bg-white border-[2px] border-primary-400 shadow-xs' : 'bg-gray-25 border border-gray-100', 'flex items-center h-8 px-3 rounded-lg text-[13px] font-normal text-gray-900 cursor-pointer')}
onClick={handleSelect}
>
{title}
</div>
)
}
type Props = {
value: Resolution
onChange: (value: Resolution) => void
@@ -42,21 +18,24 @@ const ResolutionPicker: FC<Props> = ({
}) => {
const { t } = useTranslation()
const handleOnChange = useCallback((value: Resolution) => {
return () => {
onChange(value)
}
}, [onChange])
return (
<div className='flex items-center justify-between'>
<div className='mr-2 text-xs font-medium text-gray-500 uppercase'>{t(`${i18nPrefix}.resolution.name`)}</div>
<div className='flex items-center space-x-1'>
<Item
<OptionCard
title={t(`${i18nPrefix}.resolution.high`)}
value={Resolution.high}
onSelect={onChange}
isSelected={value === Resolution.high}
onSelect={handleOnChange(Resolution.high)}
selected={value === Resolution.high}
/>
<Item
<OptionCard
title={t(`${i18nPrefix}.resolution.low`)}
value={Resolution.low}
onSelect={onChange}
isSelected={value === Resolution.low}
onSelect={handleOnChange(Resolution.low)}
selected={value === Resolution.low}
/>
</div>
</div>