diff --git a/locales/en.json b/locales/en.json index 5c1b66c..c6db27a 100644 --- a/locales/en.json +++ b/locales/en.json @@ -67,6 +67,9 @@ "dry-wash.order-view.upload-car-image.file-input.button": "Upload", "dry-wash.order-view.upload-car-image-query.success.title": "The car image is successfully uploaded", "dry-wash.order-view.upload-car-image-query.error.title": "Failed to upload the car image", + "dry-wash.order-view.price-car.title": "The level of car contamination:", + "dry-wash.order-view.price-car.description": "The cost of washing:", + "dry-wash.order-view.price-car.error": "Failed to determine the level of car contamination", "dry-wash.arm.master.add": "Add", "dry-wash.arm.order.title": "Orders", "dry-wash.arm.order.table.empty": "Table empty", diff --git a/locales/ru.json b/locales/ru.json index b67ed19..816cb8b 100644 --- a/locales/ru.json +++ b/locales/ru.json @@ -122,6 +122,9 @@ "dry-wash.order-view.upload-car-image.file-input.button": "Загрузить", "dry-wash.order-view.upload-car-image-query.success.title": "Изображение автомобиля успешно загружено", "dry-wash.order-view.upload-car-image-query.error.title": "Не удалось загрузить изображение автомобиля", + "dry-wash.order-view.price-car.title": "Уровень загрязнения машины:", + "dry-wash.order-view.price-car.description": "Стоимость мойки:", + "dry-wash.order-view.price-car.error": "Не удалось определить уровень загрязнения машины", "dry-wash.notFound.title": "Страница не найдена", "dry-wash.notFound.description": "К сожалению, запрашиваемая вами страница не существует.", "dry-wash.notFound.button.back": "Вернуться на главную", diff --git a/src/components/PriceCar/PriceCar.tsx b/src/components/PriceCar/PriceCar.tsx index 23ae69c..b60d57c 100644 --- a/src/components/PriceCar/PriceCar.tsx +++ b/src/components/PriceCar/PriceCar.tsx @@ -1,8 +1,11 @@ -import { Box, Image, Progress, Text } from '@chakra-ui/react'; +import { Box, Image, Progress, Text, VStack } from '@chakra-ui/react'; import React from 'react'; import { getFeatures } from '@brojs/cli'; +import { useTranslation } from 'react-i18next'; -const PRICE_INCREASE_PERCENT_PER_RATING = 10; // 10% за каждый балл +import { formatPrice, getProgressColor } from './helper'; + +const PRICE_INCREASE_PERCENT_PER_RATING = 10; export const PriceCar = ({ image, rating, description }) => { const BASE_WASH_PRICE: number = Number( @@ -15,33 +18,56 @@ export const PriceCar = ({ image, rating, description }) => { return BASE_WASH_PRICE + priceIncrease; }; + const { i18n, t } = useTranslation('~', { + keyPrefix: 'dry-wash.order-view.price-car', + }); const washPrice = calculateWashPrice(rating); + const formattedPrice = formatPrice(washPrice, i18n.language); + const progressValue = (rating / 10) * 100; + return ( Car Image - {rating ? ( - - Рейтинг загрязнения машины: - - Стоимость мойки: {washPrice.toFixed(2)} руб. - - ) : ( - Не удалость определить уровень загрязнения машины - )} - {description} + + {!Number.isNaN(progressValue) ? ( + + + {t('title')} + div': { + backgroundColor: getProgressColor(progressValue), + }, + }} + mt={2} + /> + + {t('description')} {formattedPrice} + + + {description} + + ) : ( + {t('error')} + )} + ); }; diff --git a/src/components/PriceCar/helper.ts b/src/components/PriceCar/helper.ts new file mode 100644 index 0000000..fcff727 --- /dev/null +++ b/src/components/PriceCar/helper.ts @@ -0,0 +1,15 @@ +export const formatPrice = (price: number, locale = 'ru-RU', currency = 'RUB') => { + return new Intl.NumberFormat(locale, { + style: 'currency', + currency: currency, + minimumFractionDigits: 2, + maximumFractionDigits: 2, + }).format(price); +}; + +export const getProgressColor = (value: number) => { + const normalizedValue = value / 100; + const hue = 120 - normalizedValue * 120; + + return `hsl(${hue}, 100%, 50%)`; +};