import React from 'react' import { ProductOption as ProductOptionController, useLanguage } from 'ordering-components/native' import { Container, WrapHeader, } from './styles' import { OText } from '../shared' import { useTheme } from 'styled-components/native' const ProductOptionUI = (props: any) => { const { children, option, error } = props const theme = useTheme() const [, t] = useLanguage() let maxMin = `(${t('MIN', 'Min')}: ${option.min} / ${t('MAX', 'Max')}: ${option.max})` if (option.min === 1 && option.max === 1) { maxMin = t('REQUIRED', 'Required') } else if (option.min === 0 && option.max > 0) { maxMin = `(${t('MAX', 'Max')}: ${option.max})` } else if (option.min > 0 && option.max === 0) { maxMin = `(${t('MIN', 'Min')}: ${option.min})` } return ( {option.name} {maxMin} {children} ) } export const ProductOption = (props: any) => { const productOptionProps = { ...props, UIComponent: ProductOptionUI } return ( ) }