diff --git a/src/components/order-form/form/car-color/car-color-select.tsx b/src/components/order-form/form/car-color/car-color-select.tsx index cf591b2..90800ca 100644 --- a/src/components/order-form/form/car-color/car-color-select.tsx +++ b/src/components/order-form/form/car-color/car-color-select.tsx @@ -1,11 +1,5 @@ import React, { forwardRef, useState } from 'react'; -import { - Input, - Box, - Stack, - Text, - Flex, -} from '@chakra-ui/react'; +import { Input, Box, Stack, Text, Flex } from '@chakra-ui/react'; import { useTranslation } from 'react-i18next'; import { CAR_COLORS } from './helper'; @@ -18,7 +12,7 @@ interface CarColorSelectProps { } export const CarColorSelect = forwardRef( - function CarColorSelect(props) { + function CarColorSelect(props, ref) { const [customColor, setCustomColor] = useState(''); const [isCustom, setIsCustom] = useState(false); @@ -33,7 +27,9 @@ export const CarColorSelect = forwardRef( } as React.ChangeEvent); }; - const handleCustomColorChange = (e: React.ChangeEvent) => { + const handleCustomColorChange = ( + e: React.ChangeEvent, + ) => { const value = e.target.value; setCustomColor(value); props.onChange?.({ @@ -48,46 +44,56 @@ export const CarColorSelect = forwardRef( const currentValue = isCustom ? 'custom' : props.value; return ( - - + + {CAR_COLORS.map(({ name, code }) => ( - handleColorChange(name)} > - - + {currentValue === name && ( - + {t(`colors.${name}`)} )} @@ -95,60 +101,67 @@ export const CarColorSelect = forwardRef( ))} - handleColorChange('custom')} > - {isCustom ? ( - - + + {t('custom-label')} e.stopPropagation()} - borderColor="primary.200" + borderColor='primary.200' _focus={{ borderColor: 'primary.500', - boxShadow: '0 0 0 1px var(--chakra-colors-primary-500)' + boxShadow: '0 0 0 1px var(--chakra-colors-primary-500)', }} /> ) : ( - + - + {t('custom')} @@ -159,4 +172,4 @@ export const CarColorSelect = forwardRef( ); }, -); \ No newline at end of file +);