From 9cfbee74e0754b4062946fe3ddd254e2569a2051 Mon Sep 17 00:00:00 2001 From: houseassassin Date: Sun, 10 May 2026 12:55:48 +0300 Subject: [PATCH] feat: estimator reads prices from DB via usePricing --- src/components/Estimator.jsx | 53 ++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/src/components/Estimator.jsx b/src/components/Estimator.jsx index f56144c..cfcd5c9 100644 --- a/src/components/Estimator.jsx +++ b/src/components/Estimator.jsx @@ -1,20 +1,21 @@ import React, { useState } from 'react'; import { motion } from 'framer-motion'; import { Calculator } from 'lucide-react'; +import { usePricing } from '../hooks/usePricing'; const Estimator = () => { - const [area, setArea] = useState(20); // in sq meters + const [area, setArea] = useState(20); const [thickness, setThickness] = useState(200); + const { prices, loading: pricesLoading } = usePricing(); - // Цены за квадратный метр в зависимости от толщины пленки - const costPerSqM = thickness === 200 ? 2000 : 3000; + const costPerSqM = prices[thickness] ?? (thickness === 200 ? 2000 : 3000); const estimatedCost = area * costPerSqM; return (
- +
{

Рассчитайте примерную стоимость обеспечения безопасности вашего периметра. Окончательная стоимость определяется после профессионального осмотра объекта.

- +
-
@@ -58,12 +59,12 @@ const Estimator = () => { {area}
- setArea(parseInt(e.target.value))} style={{ width: '100%', accentColor: 'var(--accent-blue)', height: '8px', borderRadius: '4px' }} /> @@ -79,8 +80,8 @@ const Estimator = () => { transition={{ duration: 0.6, delay: 0.2, type: "spring" }} viewport={{ once: true }} className="glass-panel" - style={{ - padding: '50px', + style={{ + padding: '50px', textAlign: 'center', border: '2px solid rgba(14, 165, 233, 0.2)', boxShadow: '0 20px 50px rgba(14, 165, 233, 0.1)' @@ -92,20 +93,20 @@ const Estimator = () => { >
- +

Ориентировочная стоимость

- {estimatedCost.toLocaleString('ru-RU')} ₽ + {pricesLoading ? '...' : estimatedCost.toLocaleString('ru-RU')} ₽

Включает бронематериалы, специализированный монтаж и финальную проверку.

- - Запросить точный расчет