'use client' import { ArrowLeft, Building2, MapPin, Phone, Mail, Package, Star } from 'lucide-react' import React, { useState } from 'react' import { Badge } from '@/components/ui/badge' import { Button } from '@/components/ui/button' import { Card } from '@/components/ui/card' // import { SupplierProducts } from './supplier-products' interface Supplier { id: string inn: string name: string fullName: string address: string phone?: string email?: string rating: number productCount: number avatar?: string specialization: string[] } interface SupplierSelectionProps { onBack: () => void onClose: () => void onSupplyCreated: () => void } // Моковые данные поставщиков const mockSuppliers: Supplier[] = [ { id: '1', inn: '7707083893', name: 'ОПТ-Электроника', fullName: 'ООО "ОПТ-Электроника"', address: 'г. Москва, ул. Садовая, д. 15', phone: '+7 (495) 123-45-67', email: 'opt@electronics.ru', rating: 4.8, productCount: 1250, specialization: ['Электроника', 'Бытовая техника'], }, { id: '2', inn: '7707083894', name: 'ТекстильМастер', fullName: 'ООО "ТекстильМастер"', address: 'г. Иваново, пр. Ленина, д. 42', phone: '+7 (4932) 55-66-77', email: 'sales@textilmaster.ru', rating: 4.6, productCount: 850, specialization: ['Текстиль', 'Одежда', 'Домашний текстиль'], }, { id: '3', inn: '7707083895', name: 'МетизКомплект', fullName: 'ООО "МетизКомплект"', address: 'г. Тула, ул. Металлургов, д. 8', phone: '+7 (4872) 33-44-55', email: 'info@metiz.ru', rating: 4.9, productCount: 2100, specialization: ['Крепеж', 'Метизы', 'Инструменты'], }, { id: '4', inn: '7707083896', name: 'ПродОпт', fullName: 'ООО "ПродОпт"', address: 'г. Краснодар, ул. Красная, д. 123', phone: '+7 (861) 777-88-99', email: 'order@prodopt.ru', rating: 4.7, productCount: 560, specialization: ['Продукты питания', 'Напитки'], }, { id: '5', inn: '7707083897', name: 'СтройМатериалы+', fullName: 'ООО "СтройМатериалы+"', address: 'г. Воронеж, пр. Революции, д. 67', phone: '+7 (473) 222-33-44', email: 'stroim@materials.ru', rating: 4.5, productCount: 1800, specialization: ['Стройматериалы', 'Сантехника'], }, { id: '6', inn: '7707083898', name: 'КосметикОпт', fullName: 'ООО "КосметикОпт"', address: 'г. Санкт-Петербург, Невский пр., д. 45', phone: '+7 (812) 111-22-33', email: 'beauty@cosmeticopt.ru', rating: 4.4, productCount: 920, specialization: ['Косметика', 'Парфюмерия', 'Уход'], }, ] export function SupplierSelection({ onBack, onClose, onSupplyCreated }: SupplierSelectionProps) { const [selectedSupplier, setSelectedSupplier] = useState(null) if (selectedSupplier) { return (

Товары поставщика

{selectedSupplier.name}

Компонент товаров в разработке...

) } const renderStars = (rating: number) => { return Array.from({ length: 5 }, (_, i) => ( )) } return (

Выбор поставщика

Выберите поставщика для создания поставки

{mockSuppliers.map((supplier) => ( setSelectedSupplier(supplier)} >
{/* Заголовок карточки */}

{supplier.name}

{supplier.fullName}

{renderStars(supplier.rating)} {supplier.rating}
{/* Информация */}
{supplier.address}
{supplier.phone && (
{supplier.phone}
)} {supplier.email && (
{supplier.email}
)}
{supplier.productCount} товаров
{/* Специализация */}

Специализация:

{supplier.specialization.map((spec, index) => ( {spec} ))}
{/* ИНН */}

ИНН: {supplier.inn}

))}
) }