complated
This commit is contained in:
@@ -4,20 +4,32 @@ import { cart_api } from '@/features/cart/lib/api';
|
|||||||
import { product_api } from '@/shared/config/api/product/api';
|
import { product_api } from '@/shared/config/api/product/api';
|
||||||
import { BASE_URL } from '@/shared/config/api/URLs';
|
import { BASE_URL } from '@/shared/config/api/URLs';
|
||||||
import { useCartId } from '@/shared/hooks/cartId';
|
import { useCartId } from '@/shared/hooks/cartId';
|
||||||
|
import formatDate from '@/shared/lib/formatDate';
|
||||||
import formatPrice from '@/shared/lib/formatPrice';
|
import formatPrice from '@/shared/lib/formatPrice';
|
||||||
|
import { cn } from '@/shared/lib/utils';
|
||||||
|
import { Button } from '@/shared/ui/button';
|
||||||
import {
|
import {
|
||||||
Carousel,
|
Carousel,
|
||||||
|
CarouselApi,
|
||||||
CarouselContent,
|
CarouselContent,
|
||||||
CarouselItem,
|
CarouselItem,
|
||||||
CarouselNext,
|
|
||||||
CarouselPrevious,
|
|
||||||
} from '@/shared/ui/carousel';
|
} from '@/shared/ui/carousel';
|
||||||
import { Input } from '@/shared/ui/input';
|
import { Input } from '@/shared/ui/input';
|
||||||
import { Skeleton } from '@/shared/ui/skeleton';
|
import { Skeleton } from '@/shared/ui/skeleton';
|
||||||
import { ProductCard } from '@/widgets/categories/ui/product-card';
|
import { ProductCard } from '@/widgets/categories/ui/product-card';
|
||||||
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
|
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
|
||||||
import { AxiosError } from 'axios';
|
import { AxiosError } from 'axios';
|
||||||
import { Heart, Minus, Plus, Shield, ShoppingCart, Truck } from 'lucide-react';
|
import {
|
||||||
|
Banknote,
|
||||||
|
ChevronLeft,
|
||||||
|
ChevronRight,
|
||||||
|
Heart,
|
||||||
|
Minus,
|
||||||
|
Plus,
|
||||||
|
Shield,
|
||||||
|
ShoppingCart,
|
||||||
|
Truck,
|
||||||
|
} from 'lucide-react';
|
||||||
import { useTranslations } from 'next-intl';
|
import { useTranslations } from 'next-intl';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import { useParams } from 'next/navigation';
|
import { useParams } from 'next/navigation';
|
||||||
@@ -29,6 +41,9 @@ const ProductDetail = () => {
|
|||||||
const { product } = useParams<{ product: string }>();
|
const { product } = useParams<{ product: string }>();
|
||||||
const queryClient = useQueryClient();
|
const queryClient = useQueryClient();
|
||||||
const { cart_id } = useCartId();
|
const { cart_id } = useCartId();
|
||||||
|
const [api, setApi] = useState<CarouselApi>();
|
||||||
|
const [canScrollPrev, setCanScrollPrev] = useState(false);
|
||||||
|
const [canScrollNext, setCanScrollNext] = useState(false);
|
||||||
|
|
||||||
const [quantity, setQuantity] = useState(1);
|
const [quantity, setQuantity] = useState(1);
|
||||||
const [selectedImage, setSelectedImage] = useState(0);
|
const [selectedImage, setSelectedImage] = useState(0);
|
||||||
@@ -58,6 +73,7 @@ const ProductDetail = () => {
|
|||||||
|
|
||||||
/* ---------------- DERIVED DATA ---------------- */
|
/* ---------------- DERIVED DATA ---------------- */
|
||||||
const price = Number(data?.prices?.[0]?.price || 0);
|
const price = Number(data?.prices?.[0]?.price || 0);
|
||||||
|
const maxBalance = data?.balance ?? 0; // <-- balance limit
|
||||||
|
|
||||||
/* ---------------- SYNC CART QUANTITY ---------------- */
|
/* ---------------- SYNC CART QUANTITY ---------------- */
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -134,12 +150,25 @@ const ProductDetail = () => {
|
|||||||
|
|
||||||
/* ---------------- HANDLERS ---------------- */
|
/* ---------------- HANDLERS ---------------- */
|
||||||
const handleAddToCart = () => {
|
const handleAddToCart = () => {
|
||||||
|
if (quantity >= maxBalance) {
|
||||||
|
toast.warning(t(`only_available`, { maxBalance }), {
|
||||||
|
richColors: true,
|
||||||
|
position: 'top-center',
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (!data || !cart_id) return;
|
if (!data || !cart_id) return;
|
||||||
|
|
||||||
const cartItem = cartItems?.data.cart_item.find(
|
const cartItem = cartItems?.data.cart_item.find(
|
||||||
(i) => Number(i.product.id) === data.id,
|
(i) => Number(i.product.id) === data.id,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (quantity > maxBalance) {
|
||||||
|
toast.error(t(`Faqat ${maxBalance} dona mavjud`), { richColors: true });
|
||||||
|
setQuantity(maxBalance);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (cartItem) {
|
if (cartItem) {
|
||||||
updateCartItem({
|
updateCartItem({
|
||||||
cart_item_id: cartItem.id.toString(),
|
cart_item_id: cartItem.id.toString(),
|
||||||
@@ -154,6 +183,43 @@ const ProductDetail = () => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleIncrease = () => {
|
||||||
|
if (quantity >= maxBalance) {
|
||||||
|
toast.warning(t(`Faqat ${maxBalance} dona mavjud`), {
|
||||||
|
richColors: true,
|
||||||
|
position: 'top-center',
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setQuantity((q) => q + 1);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDecrease = () => {
|
||||||
|
setQuantity((q) => Math.max(1, q - 1));
|
||||||
|
};
|
||||||
|
|
||||||
|
/* ---------------- CAROUSEL ---------------- */
|
||||||
|
useEffect(() => {
|
||||||
|
if (!api) return;
|
||||||
|
|
||||||
|
const updateButtons = () => {
|
||||||
|
setCanScrollPrev(api.canScrollPrev());
|
||||||
|
setCanScrollNext(api.canScrollNext());
|
||||||
|
};
|
||||||
|
|
||||||
|
updateButtons();
|
||||||
|
api.on('select', updateButtons);
|
||||||
|
api.on('reInit', updateButtons);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
api.off('select', updateButtons);
|
||||||
|
api.off('reInit', updateButtons);
|
||||||
|
};
|
||||||
|
}, [api]);
|
||||||
|
|
||||||
|
const scrollPrev = () => api?.scrollPrev();
|
||||||
|
const scrollNext = () => api?.scrollNext();
|
||||||
|
|
||||||
/* ---------------- LOADING ---------------- */
|
/* ---------------- LOADING ---------------- */
|
||||||
if (isLoading) {
|
if (isLoading) {
|
||||||
return (
|
return (
|
||||||
@@ -216,41 +282,51 @@ const ProductDetail = () => {
|
|||||||
{/* INFO */}
|
{/* INFO */}
|
||||||
<div>
|
<div>
|
||||||
<h1 className="text-3xl font-bold mb-2">{data?.name}</h1>
|
<h1 className="text-3xl font-bold mb-2">{data?.name}</h1>
|
||||||
|
|
||||||
<div className="text-4xl font-bold text-blue-600 mb-4">
|
<div className="text-4xl font-bold text-blue-600 mb-4">
|
||||||
{formatPrice(price, true)}
|
{formatPrice(price, true)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p className="text-gray-600 mb-6">{data?.short_name}</p>
|
<p className="text-gray-600 mb-6">{data?.short_name}</p>
|
||||||
|
|
||||||
<div className="grid grid-cols-2 gap-4 mb-6">
|
{/* IMPROVED UPDATED_AT WARNING */}
|
||||||
<div>
|
{data?.updated_at && (
|
||||||
<span className="text-gray-500">Kategoriya:</span>
|
<div className="bg-yellow-50 border-2 border-yellow-500 text-yellow-900 p-4 mb-6 rounded-lg shadow-sm">
|
||||||
<p className="font-semibold">{data?.groups[0].name}</p>
|
<p className="text-base font-bold mb-2 flex items-center gap-2">
|
||||||
</div>
|
<span className="text-yellow-600">⚠️</span>
|
||||||
|
{t("Diqqat! Mahsulot narxi o'zgargan bo'lishi mumkin")}
|
||||||
|
</p>
|
||||||
|
<p className="text-sm font-medium text-gray-700">
|
||||||
|
{t("So'nggi yangilanish:")}{' '}
|
||||||
|
<span className="font-semibold text-gray-900">
|
||||||
|
{formatDate.format(data.updated_at, 'DD-MM-YYYY')}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* QUANTITY */}
|
||||||
<div className="flex items-center gap-4 mb-6">
|
<div className="flex items-center gap-4 mb-6">
|
||||||
<button
|
<button onClick={handleDecrease} className="p-2 border rounded">
|
||||||
onClick={() => setQuantity((q) => Math.max(1, q - 1))}
|
|
||||||
className="p-2 border rounded"
|
|
||||||
>
|
|
||||||
<Minus />
|
<Minus />
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<Input
|
<Input
|
||||||
value={quantity}
|
value={quantity}
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
const v = Number(e.target.value);
|
let v = Number(e.target.value);
|
||||||
if (v > 0) setQuantity(v);
|
if (v < 1) v = 1;
|
||||||
|
if (v > maxBalance) {
|
||||||
|
toast.warning(t(`Faqat ${maxBalance} dona mavjud`), {
|
||||||
|
richColors: true,
|
||||||
|
position: 'top-center',
|
||||||
|
});
|
||||||
|
v = maxBalance;
|
||||||
|
}
|
||||||
|
setQuantity(v);
|
||||||
}}
|
}}
|
||||||
className="w-16 text-center"
|
className="w-16 text-center"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<button
|
<button onClick={handleIncrease} className="p-2 border rounded">
|
||||||
onClick={() => setQuantity((q) => q + 1)}
|
|
||||||
className="p-2 border rounded"
|
|
||||||
>
|
|
||||||
<Plus />
|
<Plus />
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
@@ -280,9 +356,12 @@ const ProductDetail = () => {
|
|||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
{/* FEATURES */}
|
className={cn(
|
||||||
<div className="grid grid-cols-2 gap-4 mt-6 border-t pt-4">
|
'grid gap-4 mt-6 border-t pt-4',
|
||||||
|
data?.payment_type ? 'grid-cols-3' : 'grid-cols-2',
|
||||||
|
)}
|
||||||
|
>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<Truck className="mx-auto mb-1" />
|
<Truck className="mx-auto mb-1" />
|
||||||
{t('Bepul yetkazib berish')}
|
{t('Bepul yetkazib berish')}
|
||||||
@@ -291,19 +370,41 @@ const ProductDetail = () => {
|
|||||||
<Shield className="mx-auto mb-1" />
|
<Shield className="mx-auto mb-1" />
|
||||||
{t('Kafolat')}
|
{t('Kafolat')}
|
||||||
</div>
|
</div>
|
||||||
|
{data?.payment_type && (
|
||||||
|
<div className="text-center">
|
||||||
|
<Banknote className="mx-auto mb-1" size={28} />
|
||||||
|
|
||||||
|
{data.payment_type === 'cash'
|
||||||
|
? t('Naqd bilan olinadi')
|
||||||
|
: t("Pul o'tkazish yo'li bilan olinadi")}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* RELATED */}
|
{/* RELATED PRODUCTS */}
|
||||||
<div className="mt-10 bg-white p-6 rounded-lg shadow">
|
<div className="mt-10 bg-white p-6 rounded-lg shadow relative">
|
||||||
|
<Button
|
||||||
|
onClick={scrollPrev}
|
||||||
|
disabled={!canScrollPrev}
|
||||||
|
className="absolute top-1/2 left-0 -translate-x-1/2 z-20 rounded-full"
|
||||||
|
size={'icon'}
|
||||||
|
variant={'outline'}
|
||||||
|
>
|
||||||
|
<ChevronLeft size={32} />
|
||||||
|
</Button>
|
||||||
|
|
||||||
<h2 className="text-2xl font-bold mb-4">{t("O'xshash mahsulotlar")}</h2>
|
<h2 className="text-2xl font-bold mb-4">{t("O'xshash mahsulotlar")}</h2>
|
||||||
|
|
||||||
<Carousel>
|
<Carousel setApi={setApi}>
|
||||||
<CarouselContent>
|
<CarouselContent>
|
||||||
{recLoad &&
|
{recLoad &&
|
||||||
Array.from({ length: 6 }).map((_, i) => (
|
Array.from({ length: 6 }).map((_, i) => (
|
||||||
<CarouselItem key={i} className="basis-1/5">
|
<CarouselItem
|
||||||
|
key={i}
|
||||||
|
className="basis-1/2 sm:basis-1/3 md:basis-1/4 lg:basis-1/5 xl:basis-1/6 pb-2"
|
||||||
|
>
|
||||||
<Skeleton className="h-60 w-full" />
|
<Skeleton className="h-60 w-full" />
|
||||||
</CarouselItem>
|
</CarouselItem>
|
||||||
))}
|
))}
|
||||||
@@ -311,15 +412,25 @@ const ProductDetail = () => {
|
|||||||
{recomendation
|
{recomendation
|
||||||
?.filter((p) => p.state === 'A')
|
?.filter((p) => p.state === 'A')
|
||||||
.map((p) => (
|
.map((p) => (
|
||||||
<CarouselItem key={p.id} className="basis-1/5">
|
<CarouselItem
|
||||||
|
key={p.id}
|
||||||
|
className="basis-1/2 sm:basis-1/3 md:basis-1/4 lg:basis-1/5 xl:basis-1/6 pb-2"
|
||||||
|
>
|
||||||
<ProductCard product={p} />
|
<ProductCard product={p} />
|
||||||
</CarouselItem>
|
</CarouselItem>
|
||||||
))}
|
))}
|
||||||
</CarouselContent>
|
</CarouselContent>
|
||||||
|
|
||||||
<CarouselPrevious />
|
|
||||||
<CarouselNext />
|
|
||||||
</Carousel>
|
</Carousel>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
onClick={scrollNext}
|
||||||
|
disabled={!canScrollNext}
|
||||||
|
className="absolute top-1/2 -translate-x-1/2 z-20 -right-10 rounded-full"
|
||||||
|
size={'icon'}
|
||||||
|
variant={'outline'}
|
||||||
|
>
|
||||||
|
<ChevronRight size={32} />
|
||||||
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -3,13 +3,58 @@ import { API_URLS } from '@/shared/config/api/URLs';
|
|||||||
import { AxiosResponse } from 'axios';
|
import { AxiosResponse } from 'axios';
|
||||||
|
|
||||||
export interface OrderList {
|
export interface OrderList {
|
||||||
total: number;
|
id: number;
|
||||||
page: number;
|
user: number;
|
||||||
page_size: number;
|
comment: string;
|
||||||
total_pages: number;
|
delivery_date: string;
|
||||||
has_next: boolean;
|
items: {
|
||||||
has_previous: boolean;
|
id: number;
|
||||||
results: OrderListRes[];
|
quantity: number;
|
||||||
|
price: string;
|
||||||
|
product: {
|
||||||
|
id: number;
|
||||||
|
images: { id: number; images: string | null }[];
|
||||||
|
liked: false;
|
||||||
|
meansurement: null | string;
|
||||||
|
inventory_id: null | string;
|
||||||
|
product_id: string;
|
||||||
|
code: string;
|
||||||
|
name: string;
|
||||||
|
short_name: string;
|
||||||
|
weight_netto: null | number;
|
||||||
|
weight_brutto: null | number;
|
||||||
|
litr: null | number;
|
||||||
|
box_type_code: null | number;
|
||||||
|
box_quant: null | number;
|
||||||
|
groups: {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
}[];
|
||||||
|
state: 'A' | 'P';
|
||||||
|
barcodes: string;
|
||||||
|
article_code: null | string;
|
||||||
|
marketing_group_code: null | string;
|
||||||
|
inventory_kinds: {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
}[];
|
||||||
|
|
||||||
|
sector_codes: [];
|
||||||
|
prices: {
|
||||||
|
id: number;
|
||||||
|
price: string;
|
||||||
|
price_type: {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
code: string;
|
||||||
|
};
|
||||||
|
}[];
|
||||||
|
|
||||||
|
payment_type: null | string;
|
||||||
|
balance: number;
|
||||||
|
updated_at: string;
|
||||||
|
};
|
||||||
|
}[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface OrderListRes {
|
export interface OrderListRes {
|
||||||
@@ -41,12 +86,10 @@ export interface OrderListRes {
|
|||||||
expires_date: string;
|
expires_date: string;
|
||||||
manufacturer: string;
|
manufacturer: string;
|
||||||
volume: string;
|
volume: string;
|
||||||
images: [
|
images: {
|
||||||
{
|
|
||||||
id: string;
|
id: string;
|
||||||
image: string;
|
image: string;
|
||||||
},
|
}[];
|
||||||
];
|
|
||||||
};
|
};
|
||||||
price: number;
|
price: number;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
@@ -57,11 +100,8 @@ export interface OrderListRes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const order_api = {
|
export const order_api = {
|
||||||
async list(params: {
|
async list(): Promise<AxiosResponse<OrderList[]>> {
|
||||||
page: number;
|
const res = await httpClient.get(API_URLS.OrderList);
|
||||||
page_size: number;
|
|
||||||
}): Promise<AxiosResponse<OrderList>> {
|
|
||||||
const res = await httpClient.get(API_URLS.OrderList, { params });
|
|
||||||
return res;
|
return res;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,38 +1,35 @@
|
|||||||
import { usePathname, useRouter } from '@/shared/config/i18n/navigation';
|
'use client';
|
||||||
import formatDate from '@/shared/lib/formatDate';
|
|
||||||
|
import { BASE_URL } from '@/shared/config/api/URLs';
|
||||||
|
import { useRouter } from '@/shared/config/i18n/navigation';
|
||||||
import formatPrice from '@/shared/lib/formatPrice';
|
import formatPrice from '@/shared/lib/formatPrice';
|
||||||
import { cn } from '@/shared/lib/utils';
|
|
||||||
import { Button } from '@/shared/ui/button';
|
import { Button } from '@/shared/ui/button';
|
||||||
import { Card, CardContent } from '@/shared/ui/card';
|
import { Card, CardContent } from '@/shared/ui/card';
|
||||||
import { GlobalPagination } from '@/shared/ui/global-pagination';
|
|
||||||
import { useQuery } from '@tanstack/react-query';
|
import { useQuery } from '@tanstack/react-query';
|
||||||
import {
|
import {
|
||||||
Calendar,
|
Calendar,
|
||||||
CheckCircle,
|
|
||||||
Clock,
|
|
||||||
Loader2,
|
Loader2,
|
||||||
|
MessageSquare,
|
||||||
Package,
|
Package,
|
||||||
RefreshCw,
|
RefreshCw,
|
||||||
|
ShoppingBag,
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
import { useTranslations } from 'next-intl';
|
import { useTranslations } from 'next-intl';
|
||||||
|
import Image from 'next/image';
|
||||||
import { useSearchParams } from 'next/navigation';
|
import { useSearchParams } from 'next/navigation';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import { order_api, OrderListRes } from '../lib/api';
|
import { order_api, OrderList } from '../lib/api';
|
||||||
|
|
||||||
const HistoryTabs = () => {
|
const HistoryTabs = () => {
|
||||||
const t = useTranslations();
|
const t = useTranslations();
|
||||||
const searchParams = useSearchParams();
|
const searchParams = useSearchParams();
|
||||||
const [page, setPage] = useState(1);
|
const [page, setPage] = useState(1);
|
||||||
const PAGE_SIZE = 36;
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const pathname = usePathname();
|
|
||||||
|
|
||||||
const { data, isLoading } = useQuery({
|
const { data, isLoading } = useQuery({
|
||||||
queryKey: ['order_list', page],
|
queryKey: ['order_list', page],
|
||||||
queryFn: () => order_api.list({ page, page_size: PAGE_SIZE }),
|
queryFn: () => order_api.list(),
|
||||||
select(data) {
|
select: (res) => res.data,
|
||||||
return data.data;
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -40,206 +37,257 @@ const HistoryTabs = () => {
|
|||||||
setPage(urlPage);
|
setPage(urlPage);
|
||||||
}, [searchParams]);
|
}, [searchParams]);
|
||||||
|
|
||||||
const handlePageChange = (newPage: number) => {
|
|
||||||
const params = new URLSearchParams(searchParams.toString());
|
|
||||||
params.set('page', newPage.toString());
|
|
||||||
|
|
||||||
router.push(`${pathname}?${params.toString()}`, {
|
|
||||||
scroll: true,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const getStatusConfig = (status: 'NEW' | 'DONE') => {
|
|
||||||
return status === 'DONE'
|
|
||||||
? {
|
|
||||||
bgColor: 'bg-emerald-100',
|
|
||||||
textColor: 'text-emerald-600',
|
|
||||||
icon: CheckCircle,
|
|
||||||
text: 'Yetkazildi',
|
|
||||||
}
|
|
||||||
: {
|
|
||||||
bgColor: 'bg-yellow-100',
|
|
||||||
textColor: 'text-yellow-600',
|
|
||||||
icon: Clock,
|
|
||||||
text: 'Kutilmoqda',
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
const getPaymentTypeText = (type: 'CASH' | 'ACCOUNT_NUMBER') => {
|
|
||||||
return type === 'CASH' ? 'Naqd pul' : 'Hisob raqami';
|
|
||||||
};
|
|
||||||
|
|
||||||
if (isLoading) {
|
if (isLoading) {
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center justify-center py-12">
|
<div className="flex items-center justify-center py-12">
|
||||||
<Loader2 className="w-8 h-8 animate-spin text-primary" />
|
<Loader2 className="w-8 h-8 animate-spin text-blue-600" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!data?.results || data.results.length === 0) {
|
if (!data || data.length === 0) {
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col items-center justify-center py-12 text-center">
|
<div className="flex flex-col items-center justify-center py-16 text-center">
|
||||||
<Package className="w-16 h-16 text-muted-foreground mb-4" />
|
<div className="bg-gray-100 p-6 rounded-full mb-4">
|
||||||
<p className="text-lg font-semibold text-foreground mb-2">
|
<Package className="w-16 h-16 text-gray-400" />
|
||||||
|
</div>
|
||||||
|
<p className="text-xl font-bold text-gray-800 mb-2">
|
||||||
{t('Buyurtmalar topilmadi')}
|
{t('Buyurtmalar topilmadi')}
|
||||||
</p>
|
</p>
|
||||||
<p className="text-sm text-muted-foreground">
|
<p className="text-sm text-gray-500 max-w-md">
|
||||||
{t('Hali buyurtma qilmagansiz')}
|
{t(
|
||||||
|
"Hali buyurtma qilmagansiz. Mahsulotlarni ko'rib chiqing va birinchi buyurtmangizni bering!",
|
||||||
|
)}
|
||||||
</p>
|
</p>
|
||||||
|
<Button onClick={() => router.push('/')} className="mt-6">
|
||||||
|
<ShoppingBag className="w-4 h-4 mr-2" />
|
||||||
|
{t('Xarid qilish')}
|
||||||
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="max-w-5xl mx-auto">
|
||||||
<div className="flex items-center justify-between mb-4 md:mb-6">
|
{/* Header */}
|
||||||
<h2 className="text-xl md:text-2xl font-bold text-foreground">
|
<div className="flex items-center justify-between mb-6 pb-4 border-b">
|
||||||
|
<div>
|
||||||
|
<h2 className="text-2xl md:text-3xl font-bold text-gray-900">
|
||||||
{t('Buyurtmalar tarixi')}
|
{t('Buyurtmalar tarixi')}
|
||||||
</h2>
|
</h2>
|
||||||
<div className="text-sm text-muted-foreground">
|
<p className="text-sm text-gray-500 mt-1">
|
||||||
{data.results.length} ta buyurtma
|
{data.length} {t('ta buyurtma')}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="space-y-3 md:space-y-4">
|
{/* Orders List */}
|
||||||
{data.results.map((order: OrderListRes, idx: number) => {
|
<div className="space-y-6">
|
||||||
const statusConfig = getStatusConfig(order.status);
|
{data.map((order: OrderList) => {
|
||||||
const StatusIcon = statusConfig.icon;
|
const totalPrice = order.items.reduce(
|
||||||
|
(sum, item) => sum + Number(item.price) * item.quantity,
|
||||||
|
0,
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div key={order.id} className="flex gap-3 md:gap-4">
|
<Card
|
||||||
{/* Status Timeline */}
|
key={order.id}
|
||||||
<div className="flex flex-col items-center">
|
className="border-2 border-gray-200 hover:border-blue-400 transition-all duration-200 shadow-sm hover:shadow-lg"
|
||||||
<div
|
|
||||||
className={cn(
|
|
||||||
'w-8 h-8 md:w-10 md:h-10 rounded-full flex items-center justify-center shrink-0',
|
|
||||||
statusConfig.bgColor,
|
|
||||||
)}
|
|
||||||
>
|
>
|
||||||
<StatusIcon
|
<CardContent className="p-0">
|
||||||
className={cn(
|
{/* Order Header */}
|
||||||
'w-4 h-4 md:w-5 md:h-5',
|
<div className="bg-gradient-to-r from-blue-50 to-indigo-50 p-4 border-b-2 border-gray-200">
|
||||||
statusConfig.textColor,
|
<div className="flex flex-col md:flex-row md:items-center justify-between gap-3">
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<div className="bg-blue-600 text-white px-3 py-1 rounded-full text-sm font-bold">
|
||||||
|
#{order.id}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p className="text-xs text-gray-500">
|
||||||
|
{t('Buyurtma raqami')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{order.delivery_date && (
|
||||||
|
<div className="flex items-center gap-2 bg-white px-3 py-2 rounded-lg shadow-sm">
|
||||||
|
<Calendar className="w-4 h-4 text-blue-600" />
|
||||||
|
<div>
|
||||||
|
<p className="text-xs text-gray-500">
|
||||||
|
{t('Yetkazib berish')}
|
||||||
|
</p>
|
||||||
|
<p className="text-sm font-semibold text-gray-800">
|
||||||
|
{order.delivery_date}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Comment */}
|
||||||
|
{order.comment && (
|
||||||
|
<div className="mt-3 bg-white p-3 rounded-lg shadow-sm border border-gray-200">
|
||||||
|
<div className="flex items-start gap-2">
|
||||||
|
<MessageSquare className="w-4 h-4 text-blue-600 mt-0.5 flex-shrink-0" />
|
||||||
|
<div className="flex-1">
|
||||||
|
<p className="text-xs font-medium text-gray-500 mb-1">
|
||||||
|
{t('Izoh')}:
|
||||||
|
</p>
|
||||||
|
<p className="text-sm text-gray-700 leading-relaxed">
|
||||||
|
{order.comment}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Products */}
|
||||||
|
<div className="p-4 space-y-3">
|
||||||
|
{order.items.map((item, index) => {
|
||||||
|
const product = item.product;
|
||||||
|
|
||||||
|
// Get product image
|
||||||
|
const productImage = product.images?.[0]?.images
|
||||||
|
? product.images[0].images.includes(BASE_URL)
|
||||||
|
? product.images[0].images
|
||||||
|
: BASE_URL + product.images[0].images
|
||||||
|
: '/placeholder.svg';
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
key={item.id}
|
||||||
|
className="border-2 border-gray-100 rounded-xl p-4 bg-gradient-to-br from-white to-gray-50 hover:shadow-md transition-shadow"
|
||||||
|
>
|
||||||
|
{/* Product Header with Image */}
|
||||||
|
<div className="flex gap-4 mb-3">
|
||||||
|
{/* Product Image */}
|
||||||
|
<div className="flex-shrink-0">
|
||||||
|
<div className="w-20 h-20 md:w-24 md:h-24 bg-gray-100 rounded-lg overflow-hidden border-2 border-gray-200">
|
||||||
|
<Image
|
||||||
|
src={productImage}
|
||||||
|
alt={product.name}
|
||||||
|
width={96}
|
||||||
|
height={96}
|
||||||
|
className="w-full h-full object-contain"
|
||||||
|
unoptimized
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{idx < data.results.length - 1 && (
|
|
||||||
<div className="w-0.5 flex-1 bg-slate-200 my-2" />
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Order Card */}
|
{/* Product Info */}
|
||||||
<Card className="flex-1 border-0 shadow-sm hover:shadow-md transition-shadow">
|
<div className="flex-1 min-w-0">
|
||||||
<CardContent className="p-3 md:p-4">
|
<div className="flex items-start justify-between gap-3 mb-2">
|
||||||
{/* Header */}
|
<div className="flex-1 min-w-0">
|
||||||
<div className="flex flex-col md:flex-row md:items-start justify-between mb-3 gap-2">
|
<div className="flex items-center gap-2 mb-2">
|
||||||
<div className="flex-1">
|
<span className="bg-blue-100 text-blue-800 text-xs font-semibold px-2 py-1 rounded">
|
||||||
<div className="flex items-center gap-2 mb-1">
|
{index + 1}
|
||||||
<p className="font-semibold text-sm md:text-base text-foreground">
|
</span>
|
||||||
#{order.order_number}
|
<h3 className="font-bold text-base md:text-lg text-gray-900 truncate">
|
||||||
|
{product.name}
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
{product.short_name && (
|
||||||
|
<p className="text-sm text-gray-600 line-clamp-2">
|
||||||
|
{product.short_name}
|
||||||
</p>
|
</p>
|
||||||
<span
|
|
||||||
className={cn(
|
|
||||||
'text-xs px-2 py-0.5 rounded-full',
|
|
||||||
statusConfig.bgColor,
|
|
||||||
statusConfig.textColor,
|
|
||||||
)}
|
)}
|
||||||
>
|
</div>
|
||||||
{statusConfig.text}
|
<div className="text-right flex-shrink-0">
|
||||||
|
<p className="text-xs text-gray-500 mb-1">
|
||||||
|
{t('Mahsulotlar narxi')}
|
||||||
|
</p>
|
||||||
|
<p className="text-lg font-bold text-blue-600">
|
||||||
|
{formatPrice(Number(item.price), true)}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Product Details Grid */}
|
||||||
|
<div className="grid grid-cols-2 gap-3 p-3 bg-white rounded-lg border border-gray-200">
|
||||||
|
<div className="flex flex-col">
|
||||||
|
<span className="text-xs text-gray-500 mb-1">
|
||||||
|
{t('Miqdor')}
|
||||||
|
</span>
|
||||||
|
<span className="text-base font-bold text-gray-900">
|
||||||
|
{item.quantity}{' '}
|
||||||
|
{product.meansurement || t('dona')}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center gap-2 text-xs md:text-sm text-muted-foreground flex-wrap">
|
<div className="flex flex-col items-end">
|
||||||
<span className="flex items-center gap-1">
|
<span className="text-xs text-gray-500 mb-1">
|
||||||
<Calendar className="w-3 h-3 md:w-4 md:h-4" />
|
{t('Jami')}
|
||||||
{formatDate.format(
|
|
||||||
order.created_at,
|
|
||||||
'DD.MM.YYYY HH:mm',
|
|
||||||
)}
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
<span className="text-base font-bold text-green-600">
|
||||||
</div>
|
|
||||||
<div className="text-right">
|
|
||||||
<p className="font-bold text-base md:text-lg text-foreground">
|
|
||||||
{formatPrice(
|
{formatPrice(
|
||||||
order.total_price + order.delivery_price,
|
Number(item.price) * item.quantity,
|
||||||
true,
|
|
||||||
)}
|
|
||||||
</p>
|
|
||||||
<p className="text-xs text-muted-foreground">
|
|
||||||
{getPaymentTypeText(order.payment_type)}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{order.comment && (
|
|
||||||
<div className="mb-3 p-2 bg-slate-50 rounded-lg">
|
|
||||||
<p className="text-xs text-muted-foreground mb-1">
|
|
||||||
Izoh:
|
|
||||||
</p>
|
|
||||||
<p className="text-sm text-foreground">{order.comment}</p>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{/* Total Price Breakdown */}
|
|
||||||
<div className="border-t pt-3 mb-3 space-y-1 text-sm">
|
|
||||||
<div className="flex justify-between">
|
|
||||||
<span className="text-muted-foreground">
|
|
||||||
Mahsulotlar narxi:
|
|
||||||
</span>
|
|
||||||
<span className="font-medium">
|
|
||||||
{formatPrice(order.total_price, true)}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div className="flex justify-between">
|
|
||||||
<span className="text-muted-foreground">Yetkazish:</span>
|
|
||||||
<span className="font-medium">
|
|
||||||
{formatPrice(order.delivery_price, true)}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div className="flex justify-between font-bold text-base pt-1 border-t">
|
|
||||||
<span>Jami:</span>
|
|
||||||
<span>
|
|
||||||
{formatPrice(
|
|
||||||
order.total_price + order.delivery_price,
|
|
||||||
true,
|
true,
|
||||||
)}
|
)}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Actions */}
|
|
||||||
<div className="flex gap-2">
|
|
||||||
<Button
|
|
||||||
variant="outline"
|
|
||||||
size="sm"
|
|
||||||
onClick={() => {
|
|
||||||
router.push('/profile/refresh-order');
|
|
||||||
// setOrder(order);
|
|
||||||
}}
|
|
||||||
className="bg-transparent gap-1 md:gap-2 text-xs md:text-sm h-8 md:h-9 px-2 md:px-3"
|
|
||||||
>
|
|
||||||
<RefreshCw className="w-3 h-3 md:w-4 md:h-4" />
|
|
||||||
{t('Qayta buyurtma')}
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</CardContent>
|
|
||||||
</Card>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="w-full flex justify-end mt-5">
|
{/* Order Footer */}
|
||||||
<GlobalPagination
|
<div className="bg-gradient-to-r from-gray-50 to-blue-50 p-4 border-t-2 border-gray-200">
|
||||||
onChange={handlePageChange}
|
{/* Price Breakdown */}
|
||||||
page={page}
|
<div className="mb-4 space-y-2">
|
||||||
total={data.total_pages}
|
<div className="flex justify-between text-sm text-gray-600">
|
||||||
pageSize={PAGE_SIZE}
|
<span>{t('Mahsulotlar narxi')}:</span>
|
||||||
/>
|
<span className="font-semibold">
|
||||||
|
{formatPrice(totalPrice, true)}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between text-sm text-gray-600">
|
||||||
|
<span>{t('Mahsulotlar soni')}:</span>
|
||||||
|
<span className="font-semibold">
|
||||||
|
{order.items.reduce(
|
||||||
|
(sum, item) => sum + item.quantity,
|
||||||
|
0,
|
||||||
|
)}
|
||||||
|
{t('dona')}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="border-t-2 border-dashed border-gray-300 pt-2 mt-2">
|
||||||
|
<div className="flex justify-between items-center">
|
||||||
|
<span className="text-base font-bold text-gray-800">
|
||||||
|
{t('Umumiy summa')}:
|
||||||
|
</span>
|
||||||
|
<span className="text-2xl font-bold text-green-600">
|
||||||
|
{formatPrice(totalPrice, true)}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex flex-col md:flex-row items-center justify-between gap-4">
|
||||||
|
{/* Actions */}
|
||||||
|
<div className="flex gap-2 w-full md:w-auto">
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
size="default"
|
||||||
|
onClick={() =>
|
||||||
|
router.push(`/profile/refresh-order?id=${order.id}`)
|
||||||
|
}
|
||||||
|
className="flex-1 md:flex-none gap-2 font-semibold hover:bg-blue-50 hover:text-blue-600 hover:border-blue-600 transition-colors"
|
||||||
|
>
|
||||||
|
<RefreshCw className="w-4 h-4" />
|
||||||
|
{t('Qayta buyurtma')}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import { cart_api, OrderCreateBody } from '@/features/cart/lib/api';
|
import { cart_api, OrderCreateBody } from '@/features/cart/lib/api';
|
||||||
import { orderForm } from '@/features/cart/lib/form';
|
import { orderForm } from '@/features/cart/lib/form';
|
||||||
|
import { BASE_URL } from '@/shared/config/api/URLs';
|
||||||
import formatDate from '@/shared/lib/formatDate';
|
import formatDate from '@/shared/lib/formatDate';
|
||||||
import formatPrice from '@/shared/lib/formatPrice';
|
import formatPrice from '@/shared/lib/formatPrice';
|
||||||
import { cn } from '@/shared/lib/utils';
|
import { cn } from '@/shared/lib/utils';
|
||||||
@@ -33,7 +34,7 @@ import {
|
|||||||
YMaps,
|
YMaps,
|
||||||
ZoomControl,
|
ZoomControl,
|
||||||
} from '@pbe/react-yandex-maps';
|
} from '@pbe/react-yandex-maps';
|
||||||
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
|
||||||
import {
|
import {
|
||||||
Calendar as CalIcon,
|
Calendar as CalIcon,
|
||||||
CheckCircle2,
|
CheckCircle2,
|
||||||
@@ -41,15 +42,18 @@ import {
|
|||||||
Loader2,
|
Loader2,
|
||||||
LocateFixed,
|
LocateFixed,
|
||||||
MapPin,
|
MapPin,
|
||||||
|
Package,
|
||||||
|
ShoppingBag,
|
||||||
User,
|
User,
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
import { useTranslations } from 'next-intl';
|
import { useTranslations } from 'next-intl';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
|
import { useSearchParams } from 'next/navigation';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import { useForm } from 'react-hook-form';
|
import { useForm } from 'react-hook-form';
|
||||||
import { toast } from 'sonner';
|
import { toast } from 'sonner';
|
||||||
import z from 'zod';
|
import z from 'zod';
|
||||||
import useOrderStore from '../lib/order';
|
import { order_api } from '../lib/api';
|
||||||
|
|
||||||
const deliveryTimeSlots = [
|
const deliveryTimeSlots = [
|
||||||
{ id: 1, label: '09:00 - 11:00', start: '09:00', end: '11:00' },
|
{ id: 1, label: '09:00 - 11:00', start: '09:00', end: '11:00' },
|
||||||
@@ -69,46 +73,43 @@ interface CoordsData {
|
|||||||
const RefreshOrder = () => {
|
const RefreshOrder = () => {
|
||||||
const [deliveryDate, setDeliveryDate] = useState<Date>();
|
const [deliveryDate, setDeliveryDate] = useState<Date>();
|
||||||
const [selectedTimeSlot, setSelectedTimeSlot] = useState<string>('');
|
const [selectedTimeSlot, setSelectedTimeSlot] = useState<string>('');
|
||||||
const { order: initialValues } = useOrderStore();
|
|
||||||
const t = useTranslations();
|
const t = useTranslations();
|
||||||
const queryClient = useQueryClient();
|
const queryClient = useQueryClient();
|
||||||
|
const searchParams = useSearchParams();
|
||||||
|
const id = searchParams.get('id');
|
||||||
|
|
||||||
const initialCartItems = initialValues?.cart_item.map((item) => ({
|
const { data, isLoading } = useQuery({
|
||||||
id: item.id,
|
queryKey: ['order_list'],
|
||||||
product_id: item.product.id,
|
queryFn: () => order_api.list(),
|
||||||
product_name: item.product.name,
|
select: (res) => res.data,
|
||||||
product_price: item.product.prices[0].price,
|
});
|
||||||
product_image: item.product.images[0].image || '/placeholder.svg',
|
|
||||||
quantity: item.quantity,
|
|
||||||
}));
|
|
||||||
|
|
||||||
const cartItems = initialCartItems;
|
const initialValues = data?.find((e) => e.id === Number(id));
|
||||||
|
|
||||||
const form = useForm<z.infer<typeof orderForm>>({
|
const form = useForm<z.infer<typeof orderForm>>({
|
||||||
resolver: zodResolver(orderForm),
|
resolver: zodResolver(orderForm),
|
||||||
defaultValues: {
|
defaultValues: {
|
||||||
comment: '',
|
comment: initialValues?.comment || '',
|
||||||
lat: '41.311081',
|
lat: '41.311081',
|
||||||
long: '69.240562',
|
long: '69.240562',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Update form when initialValues loads
|
||||||
|
useEffect(() => {
|
||||||
|
if (initialValues?.comment) {
|
||||||
|
form.setValue('comment', initialValues.comment);
|
||||||
|
}
|
||||||
|
}, [initialValues, form]);
|
||||||
|
|
||||||
const [orderSuccess, setOrderSuccess] = useState(false);
|
const [orderSuccess, setOrderSuccess] = useState(false);
|
||||||
|
|
||||||
const subtotal = cartItems
|
|
||||||
? cartItems.reduce(
|
|
||||||
(sum, item) => sum + Number(item.product_price) * item.quantity,
|
|
||||||
0,
|
|
||||||
)
|
|
||||||
: 0;
|
|
||||||
|
|
||||||
const total = subtotal;
|
|
||||||
|
|
||||||
const { mutate, isPending } = useMutation({
|
const { mutate, isPending } = useMutation({
|
||||||
mutationFn: (body: OrderCreateBody) => cart_api.createOrder(body),
|
mutationFn: (body: OrderCreateBody) => cart_api.createOrder(body),
|
||||||
onSuccess: () => {
|
onSuccess: () => {
|
||||||
setOrderSuccess(true);
|
setOrderSuccess(true);
|
||||||
queryClient.refetchQueries({ queryKey: ['cart_items'] });
|
queryClient.refetchQueries({ queryKey: ['cart_items'] });
|
||||||
|
queryClient.refetchQueries({ queryKey: ['order_list'] });
|
||||||
},
|
},
|
||||||
onError: () => {
|
onError: () => {
|
||||||
toast.error(t('Xatolik yuz berdi'), {
|
toast.error(t('Xatolik yuz berdi'), {
|
||||||
@@ -164,7 +165,7 @@ const RefreshOrder = () => {
|
|||||||
|
|
||||||
const handleShowMyLocation = () => {
|
const handleShowMyLocation = () => {
|
||||||
if (!navigator.geolocation) {
|
if (!navigator.geolocation) {
|
||||||
alert('Sizning brauzeringiz geolokatsiyani qo‘llab-quvvatlamaydi');
|
alert("Sizning brauzeringiz geolokatsiyani qo'llab-quvvatlamaydi");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
navigator.geolocation.getCurrentPosition(
|
navigator.geolocation.getCurrentPosition(
|
||||||
@@ -217,15 +218,15 @@ const RefreshOrder = () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (initialValues === null) {
|
if (!initialValues) {
|
||||||
toast.error(t('Savatcha bo‘sh'), {
|
toast.error(t('Buyurtma topilmadi'), {
|
||||||
richColors: true,
|
richColors: true,
|
||||||
position: 'top-center',
|
position: 'top-center',
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const order_products = initialValues.cart_item
|
const order_products = initialValues.items
|
||||||
.filter(
|
.filter(
|
||||||
(item) =>
|
(item) =>
|
||||||
item.product.prices &&
|
item.product.prices &&
|
||||||
@@ -263,6 +264,41 @@ const RefreshOrder = () => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Calculate total price
|
||||||
|
const totalPrice =
|
||||||
|
initialValues?.items.reduce(
|
||||||
|
(sum, item) => sum + Number(item.price) * item.quantity,
|
||||||
|
0,
|
||||||
|
) || 0;
|
||||||
|
|
||||||
|
const totalItems =
|
||||||
|
initialValues?.items.reduce((sum, item) => sum + item.quantity, 0) || 0;
|
||||||
|
|
||||||
|
if (isLoading) {
|
||||||
|
return (
|
||||||
|
<div className="flex items-center justify-center h-screen">
|
||||||
|
<Loader2 className="w-12 h-12 animate-spin text-blue-600" />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!initialValues) {
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col items-center justify-center h-screen">
|
||||||
|
<Package className="w-20 h-20 text-gray-400 mb-4" />
|
||||||
|
<h2 className="text-2xl font-bold text-gray-800 mb-2">
|
||||||
|
{t('Buyurtma topilmadi')}
|
||||||
|
</h2>
|
||||||
|
<p className="text-gray-500 mb-6">
|
||||||
|
{t("Ushbu buyurtma mavjud emas yoki o'chirilgan")}
|
||||||
|
</p>
|
||||||
|
<Button onClick={() => (window.location.href = '/profile/history')}>
|
||||||
|
{t('Buyurtmalar tarixiga qaytish')}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (orderSuccess) {
|
if (orderSuccess) {
|
||||||
return (
|
return (
|
||||||
<div className="flex justify-center items-center h-screen">
|
<div className="flex justify-center items-center h-screen">
|
||||||
@@ -274,7 +310,7 @@ const RefreshOrder = () => {
|
|||||||
{t('Buyurtma qabul qilindi!')}
|
{t('Buyurtma qabul qilindi!')}
|
||||||
</h2>
|
</h2>
|
||||||
<p className="text-gray-500 mb-6">
|
<p className="text-gray-500 mb-6">
|
||||||
{t('Buyurtmangiz muvaffaqiyatli qabul qilindi')}
|
{t('Buyurtmangiz muvaffaqiyatli qayta qabul qilindi')}
|
||||||
</p>
|
</p>
|
||||||
<button
|
<button
|
||||||
onClick={() => (window.location.href = '/')}
|
onClick={() => (window.location.href = '/')}
|
||||||
@@ -293,9 +329,12 @@ const RefreshOrder = () => {
|
|||||||
{/* Header */}
|
{/* Header */}
|
||||||
<div className="mb-6">
|
<div className="mb-6">
|
||||||
<h1 className="text-3xl font-bold text-gray-800 mb-2">
|
<h1 className="text-3xl font-bold text-gray-800 mb-2">
|
||||||
{t('Buyurtmani rasmiylashtirish')}
|
{t('Buyurtmani qayta rasmiylashtirish')}
|
||||||
</h1>
|
</h1>
|
||||||
<p className="text-gray-600">{t("Ma'lumotlaringizni to'ldiring")}</p>
|
<p className="text-gray-600">
|
||||||
|
{t('Buyurtma')} #{initialValues.id}{' '}
|
||||||
|
{t("uchun ma'lumotlarni yangilang")}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<Form {...form}>
|
<Form {...form}>
|
||||||
<form onSubmit={form.handleSubmit(onSubmit)}>
|
<form onSubmit={form.handleSubmit(onSubmit)}>
|
||||||
@@ -409,7 +448,7 @@ const RefreshOrder = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Yetkazib berish vaqti - Yangilangan versiya */}
|
{/* Yetkazib berish vaqti */}
|
||||||
<div className="bg-white rounded-lg shadow-md p-6">
|
<div className="bg-white rounded-lg shadow-md p-6">
|
||||||
<div className="flex items-center gap-2 mb-4">
|
<div className="flex items-center gap-2 mb-4">
|
||||||
<Clock className="w-5 h-5 text-blue-600" />
|
<Clock className="w-5 h-5 text-blue-600" />
|
||||||
@@ -510,44 +549,70 @@ const RefreshOrder = () => {
|
|||||||
{/* Right Column - Order Summary */}
|
{/* Right Column - Order Summary */}
|
||||||
<div className="lg:col-span-1">
|
<div className="lg:col-span-1">
|
||||||
<div className="bg-white rounded-lg shadow-md p-6 sticky top-4">
|
<div className="bg-white rounded-lg shadow-md p-6 sticky top-4">
|
||||||
<h3 className="text-xl font-bold mb-4">{t('Mahsulotlar')}</h3>
|
<div className="flex items-center gap-2 mb-4">
|
||||||
|
<ShoppingBag className="w-5 h-5 text-blue-600" />
|
||||||
|
<h3 className="text-xl font-bold">
|
||||||
|
{t('Buyurtma tafsilotlari')}
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* Cart Items */}
|
{/* Cart Items */}
|
||||||
<div className="space-y-3 mb-4 max-h-60 overflow-y-auto">
|
<div className="space-y-3 mb-4 max-h-96 overflow-y-auto">
|
||||||
{cartItems?.map((item) => (
|
{initialValues.items.map((item) => {
|
||||||
<div key={item.id} className="flex gap-3 pb-3 border-b">
|
const productImage = item.product.images?.[0]?.images
|
||||||
|
? item.product.images[0].images.includes(BASE_URL)
|
||||||
|
? item.product.images[0].images
|
||||||
|
: BASE_URL + item.product.images[0].images
|
||||||
|
: '/placeholder.svg';
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
key={item.id}
|
||||||
|
className="flex gap-3 p-3 bg-gray-50 rounded-lg border border-gray-200"
|
||||||
|
>
|
||||||
|
<div className="w-16 h-16 flex-shrink-0 bg-white rounded-lg overflow-hidden border">
|
||||||
<Image
|
<Image
|
||||||
width={500}
|
src={productImage}
|
||||||
height={500}
|
alt={item.product.name}
|
||||||
src={item.product_image}
|
width={64}
|
||||||
alt={item.product_name}
|
height={64}
|
||||||
|
className="w-full h-full object-contain"
|
||||||
unoptimized
|
unoptimized
|
||||||
className="w-16 h-16 object-contain bg-gray-100 rounded"
|
|
||||||
/>
|
/>
|
||||||
<div className="flex-1">
|
</div>
|
||||||
<h4 className="font-medium text-sm">
|
<div className="flex-1 min-w-0">
|
||||||
{item.product_name}
|
<h4 className="font-semibold text-sm text-gray-900 truncate">
|
||||||
|
{item.product.name}
|
||||||
</h4>
|
</h4>
|
||||||
<p className="text-sm text-gray-500">
|
<p className="text-xs text-gray-500 mt-1">
|
||||||
{item.quantity} x{' '}
|
{item.quantity} ×{' '}
|
||||||
{formatPrice(item.product_price, true)}
|
{formatPrice(Number(item.price), true)}
|
||||||
</p>
|
</p>
|
||||||
<p className="font-semibold text-sm">
|
<p className="text-sm font-bold text-blue-600 mt-1">
|
||||||
{formatPrice(
|
{formatPrice(
|
||||||
Number(item.product_price) * item.quantity,
|
Number(item.price) * item.quantity,
|
||||||
true,
|
true,
|
||||||
)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
))}
|
);
|
||||||
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Pricing */}
|
{/* Pricing */}
|
||||||
<div className="space-y-2 mb-4 pt-4 border-t">
|
<div className="space-y-2 mb-4 pt-4 border-t">
|
||||||
<div className="flex justify-between text-gray-600">
|
<div className="flex justify-between text-gray-600">
|
||||||
<span>{t('Mahsulotlar')}:</span>
|
<span>{t('Mahsulotlar soni')}:</span>
|
||||||
<span>{subtotal && formatPrice(subtotal, true)}</span>
|
<span className="font-semibold">
|
||||||
|
{totalItems} {t('dona')}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between text-gray-600">
|
||||||
|
<span>{t('Mahsulotlar narxi')}:</span>
|
||||||
|
<span className="font-semibold">
|
||||||
|
{formatPrice(totalPrice, true)}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -556,8 +621,8 @@ const RefreshOrder = () => {
|
|||||||
<span className="text-lg font-semibold">
|
<span className="text-lg font-semibold">
|
||||||
{t('Jami')}:
|
{t('Jami')}:
|
||||||
</span>
|
</span>
|
||||||
<span className="text-2xl font-bold text-blue-600">
|
<span className="text-2xl font-bold text-green-600">
|
||||||
{total && formatPrice(total, true)}
|
{formatPrice(totalPrice, true)}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -570,6 +635,7 @@ const RefreshOrder = () => {
|
|||||||
{isPending ? (
|
{isPending ? (
|
||||||
<span className="flex items-center justify-center gap-2">
|
<span className="flex items-center justify-center gap-2">
|
||||||
<Loader2 className="animate-spin" />
|
<Loader2 className="animate-spin" />
|
||||||
|
{t('Yuklanmoqda...')}
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : (
|
||||||
t('Buyurtmani tasdiqlash')
|
t('Buyurtmani tasdiqlash')
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ export interface ProductListResult {
|
|||||||
box_quant: null | string;
|
box_quant: null | string;
|
||||||
groups: number[];
|
groups: number[];
|
||||||
state: 'A' | 'P';
|
state: 'A' | 'P';
|
||||||
|
payment_type: 'cash' | 'card' | null;
|
||||||
barcodes: string;
|
barcodes: string;
|
||||||
article_code: null | string;
|
article_code: null | string;
|
||||||
marketing_group_code: null | string;
|
marketing_group_code: null | string;
|
||||||
@@ -38,6 +39,7 @@ export interface ProductListResult {
|
|||||||
name: string;
|
name: string;
|
||||||
};
|
};
|
||||||
}[];
|
}[];
|
||||||
|
balance: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductDetail {
|
export interface ProductDetail {
|
||||||
@@ -62,6 +64,9 @@ export interface ProductDetail {
|
|||||||
marketing_group_code: null | string;
|
marketing_group_code: null | string;
|
||||||
inventory_kinds: { id: number; name: string }[];
|
inventory_kinds: { id: number; name: string }[];
|
||||||
sector_codes: { id: number; code: string }[];
|
sector_codes: { id: number; code: string }[];
|
||||||
|
payment_type: null | 'cash' | 'card';
|
||||||
|
balance: number;
|
||||||
|
updated_at: string;
|
||||||
prices: {
|
prices: {
|
||||||
id: number;
|
id: number;
|
||||||
price: string;
|
price: string;
|
||||||
@@ -106,12 +111,14 @@ export interface FavouriteProductRes {
|
|||||||
box_type_code: null | string;
|
box_type_code: null | string;
|
||||||
box_quant: null | string;
|
box_quant: null | string;
|
||||||
groups: number[];
|
groups: number[];
|
||||||
|
payment_type: 'cash' | 'card' | null;
|
||||||
state: 'A' | 'P';
|
state: 'A' | 'P';
|
||||||
barcodes: string;
|
barcodes: string;
|
||||||
article_code: null | string;
|
article_code: null | string;
|
||||||
marketing_group_code: null | string;
|
marketing_group_code: null | string;
|
||||||
inventory_kinds: { id: number; name: string }[];
|
inventory_kinds: { id: number; name: string }[];
|
||||||
sector_codes: { id: number; code: string }[];
|
sector_codes: { id: number; code: string }[];
|
||||||
|
balance: number;
|
||||||
prices: {
|
prices: {
|
||||||
id: number;
|
id: number;
|
||||||
price: string;
|
price: string;
|
||||||
|
|||||||
@@ -209,5 +209,18 @@
|
|||||||
"Bu kategoriyada hozircha mahsulot yo‘q": "В этой категории пока нет товаров",
|
"Bu kategoriyada hozircha mahsulot yo‘q": "В этой категории пока нет товаров",
|
||||||
"Tez orada qo‘shiladi": "Скоро будет добавлено",
|
"Tez orada qo‘shiladi": "Скоро будет добавлено",
|
||||||
"Hozirchali bu kategoriyada mahsulot yo'q": "Пока нет товаров в этой категории",
|
"Hozirchali bu kategoriyada mahsulot yo'q": "Пока нет товаров в этой категории",
|
||||||
"Kataloglar": "Каталог"
|
"Kataloglar": "Каталог",
|
||||||
|
|
||||||
|
"Naqd bilan olinadi": "Получено наличными",
|
||||||
|
"Pul o'tkazish yo'li bilan olinadi": "Получено путём перевода денег",
|
||||||
|
"Diqqat! Mahsulot narxi o'zgargan bo'lishi mumkin": "Внимание! Цена продукта может измениться",
|
||||||
|
"So'nggi yangilanish:": "Последнее обновление",
|
||||||
|
"only_available": "Доступно только {maxBalance} штук",
|
||||||
|
"Buyurtmalar topilmadi": "Заказов не найдено",
|
||||||
|
"Hali buyurtma qilmagansiz": "Вы ещё не сделали заказ",
|
||||||
|
"ta buyurtma": "Заказы",
|
||||||
|
"Mahsulotlar soni": "Количество товаров",
|
||||||
|
"dona": "шт",
|
||||||
|
"Umumiy summa": "Общая сумма",
|
||||||
|
"Qayta buyurtma": "Заказать заново"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -209,5 +209,18 @@ declare const messages: {
|
|||||||
'Tez orada qo‘shiladi': 'Tez orada qo‘shiladi';
|
'Tez orada qo‘shiladi': 'Tez orada qo‘shiladi';
|
||||||
"Hozirchali bu kategoriyada mahsulot yo'q": "Hozirchali bu kategoriyada mahsulot yo'q";
|
"Hozirchali bu kategoriyada mahsulot yo'q": "Hozirchali bu kategoriyada mahsulot yo'q";
|
||||||
Kataloglar: 'Kataloglar';
|
Kataloglar: 'Kataloglar';
|
||||||
|
'Naqd bilan olinadi': 'Naqd bilan olinadi';
|
||||||
|
"Pul o'tkazish yo'li bilan olinadi": "Pul o'tkazish yo'li bilan olinadi";
|
||||||
|
|
||||||
|
"Diqqat! Mahsulot narxi o'zgargan bo'lishi mumkin": "Diqqat! Mahsulot narxi o'zgargan bo'lishi mumkin";
|
||||||
|
"So'nggi yangilanish:": "So'nggi yangilanish";
|
||||||
|
only_available: 'Faqat {maxBalance} dona mavjud';
|
||||||
|
'Buyurtmalar topilmadi': 'Buyurtmalar topilmadi';
|
||||||
|
'Hali buyurtma qilmagansiz': 'Hali buyurtma qilmagansiz';
|
||||||
|
'ta buyurtma': 'ta buyurtma';
|
||||||
|
'Mahsulotlar soni': 'Mahsulotlar soni';
|
||||||
|
dona: 'dona';
|
||||||
|
'Umumiy summa': 'Umumiy summa';
|
||||||
|
'Qayta buyurtma': 'Qayta buyurtma';
|
||||||
};
|
};
|
||||||
export default messages;
|
export default messages;
|
||||||
|
|||||||
@@ -205,5 +205,18 @@
|
|||||||
"Bu kategoriyada hozircha mahsulot yo‘q": "Bu kategoriyada hozircha mahsulot yo‘q",
|
"Bu kategoriyada hozircha mahsulot yo‘q": "Bu kategoriyada hozircha mahsulot yo‘q",
|
||||||
"Tez orada qo‘shiladi": "Tez orada qo‘shiladi",
|
"Tez orada qo‘shiladi": "Tez orada qo‘shiladi",
|
||||||
"Hozirchali bu kategoriyada mahsulot yo'q": "Hozirchali bu kategoriyada mahsulot yo'q",
|
"Hozirchali bu kategoriyada mahsulot yo'q": "Hozirchali bu kategoriyada mahsulot yo'q",
|
||||||
"Kataloglar": "Kataloglar"
|
"Kataloglar": "Kataloglar",
|
||||||
|
"Naqd bilan olinadi": "Naqd bilan olinadi",
|
||||||
|
"Pul o'tkazish yo'li bilan olinadi": "Pul o'tkazish yo'li bilan olinadi",
|
||||||
|
|
||||||
|
"Diqqat! Mahsulot narxi o'zgargan bo'lishi mumkin": "Diqqat! Mahsulot narxi o'zgargan bo'lishi mumkin",
|
||||||
|
"So'nggi yangilanish:": "So'nggi yangilanish",
|
||||||
|
"only_available": "Faqat {maxBalance} dona mavjud",
|
||||||
|
"Buyurtmalar topilmadi": "Buyurtmalar topilmadi",
|
||||||
|
"Hali buyurtma qilmagansiz": "Hali buyurtma qilmagansiz",
|
||||||
|
"ta buyurtma": "ta buyurtma",
|
||||||
|
"Mahsulotlar soni": "Mahsulotlar soni",
|
||||||
|
"dona": "dona",
|
||||||
|
"Umumiy summa": "Umumiy summa",
|
||||||
|
"Qayta buyurtma": "Qayta buyurtma"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export function ProductCard({
|
|||||||
const debounceRef = useRef<NodeJS.Timeout | null>(null);
|
const debounceRef = useRef<NodeJS.Timeout | null>(null);
|
||||||
const imageRef = useRef<HTMLDivElement>(null);
|
const imageRef = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
const { mutate } = useMutation({
|
const { mutate: addToCart } = useMutation({
|
||||||
mutationFn: (body: { product: string; quantity: number; cart: string }) =>
|
mutationFn: (body: { product: string; quantity: number; cart: string }) =>
|
||||||
cart_api.cart_item(body),
|
cart_api.cart_item(body),
|
||||||
onSuccess: () => {
|
onSuccess: () => {
|
||||||
@@ -57,6 +57,7 @@ export function ProductCard({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
const maxBalance = product.balance ?? 0;
|
||||||
|
|
||||||
const { mutate: updateCartItem } = useMutation({
|
const { mutate: updateCartItem } = useMutation({
|
||||||
mutationFn: ({
|
mutationFn: ({
|
||||||
@@ -120,24 +121,6 @@ export function ProductCard({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const increase = (e: MouseEvent<HTMLButtonElement>) => {
|
|
||||||
e.stopPropagation();
|
|
||||||
const newQty = (quantity === '' ? 0 : quantity) + 1;
|
|
||||||
setQuantity(newQty);
|
|
||||||
|
|
||||||
if (newQty > 1) {
|
|
||||||
const cartItemId = cartItems?.data?.cart_item.find(
|
|
||||||
(item) => Number(item.product.id) === product.id,
|
|
||||||
)?.id;
|
|
||||||
if (cartItemId) {
|
|
||||||
updateCartItem({
|
|
||||||
body: { quantity: newQty },
|
|
||||||
cart_item_id: cartItemId.toString(),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const decrease = (e: MouseEvent<HTMLButtonElement>) => {
|
const decrease = (e: MouseEvent<HTMLButtonElement>) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|
||||||
@@ -165,6 +148,35 @@ export function ProductCard({
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const getCartItemId = () =>
|
||||||
|
cartItems?.data.cart_item.find(
|
||||||
|
(item) => Number(item.product.id) === product.id,
|
||||||
|
)?.id;
|
||||||
|
|
||||||
|
const increase = (e: MouseEvent<HTMLButtonElement>) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
|
||||||
|
const current = quantity === '' ? 0 : quantity;
|
||||||
|
|
||||||
|
if (current >= maxBalance) {
|
||||||
|
toast.warning(t(`Faqat ${maxBalance} dona mavjud`), {
|
||||||
|
richColors: true,
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const newQty = current + 1;
|
||||||
|
setQuantity(newQty);
|
||||||
|
|
||||||
|
const id = getCartItemId();
|
||||||
|
if (id) {
|
||||||
|
updateCartItem({
|
||||||
|
cart_item_id: id.toString(),
|
||||||
|
body: { quantity: newQty },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
return (
|
return (
|
||||||
<Card className="p-4 rounded-xl">
|
<Card className="p-4 rounded-xl">
|
||||||
@@ -257,18 +269,25 @@ export function ProductCard({
|
|||||||
)} */}
|
)} */}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="p-3 sm:p-4 pt-0">
|
<div className="p-4 pt-0">
|
||||||
{quantity === 0 ? (
|
{quantity === 0 ? (
|
||||||
<Button
|
<Button
|
||||||
|
disabled={maxBalance <= 0}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
mutate({
|
|
||||||
|
if (maxBalance <= 0) {
|
||||||
|
toast.error(t('Mahsulot mavjud emas'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
addToCart({
|
||||||
product: String(product.id),
|
product: String(product.id),
|
||||||
quantity: 1,
|
quantity: 1,
|
||||||
cart: cart_id!,
|
cart: cart_id!,
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
className="w-full h-9 sm:h-11 text-sm bg-green-600 hover:bg-green-600/80"
|
className="w-full bg-green-600"
|
||||||
>
|
>
|
||||||
<ShoppingCart className="w-4 h-4 mr-1" />
|
<ShoppingCart className="w-4 h-4 mr-1" />
|
||||||
{t('Savatga')}
|
{t('Savatga')}
|
||||||
@@ -276,61 +295,62 @@ export function ProductCard({
|
|||||||
) : (
|
) : (
|
||||||
<div
|
<div
|
||||||
onClick={(e) => e.stopPropagation()}
|
onClick={(e) => e.stopPropagation()}
|
||||||
className="flex items-center justify-between border border-green-500 rounded-lg h-9 sm:h-11"
|
className="flex items-center justify-between border border-green-500 rounded-lg h-10"
|
||||||
>
|
>
|
||||||
<Button size="icon" variant="ghost" onClick={decrease}>
|
<Button size="icon" variant="ghost" onClick={decrease}>
|
||||||
<Minus className="w-4 h-4" />
|
<Minus />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Input
|
<Input
|
||||||
value={quantity}
|
value={quantity}
|
||||||
className="border-none text-center focus-visible:border-none focus-visible:ring-0"
|
className="border-none text-center"
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
const v = e.target.value;
|
const v = e.target.value;
|
||||||
|
|
||||||
// ❌ faqat raqam
|
|
||||||
if (!/^\d*$/.test(v)) return;
|
if (!/^\d*$/.test(v)) return;
|
||||||
|
|
||||||
// ⛔ oldingi debounce'ni tozalaymiz
|
|
||||||
if (debounceRef.current) {
|
if (debounceRef.current) {
|
||||||
clearTimeout(debounceRef.current);
|
clearTimeout(debounceRef.current);
|
||||||
}
|
}
|
||||||
|
|
||||||
// bo‘sh input — faqat UI
|
|
||||||
if (v === '') {
|
if (v === '') {
|
||||||
setQuantity('');
|
setQuantity('');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const num = Number(v);
|
let num = Number(v);
|
||||||
|
if (num > maxBalance) {
|
||||||
|
num = maxBalance;
|
||||||
|
toast.warning(t(`Maksimal ${maxBalance} dona`), {
|
||||||
|
richColors: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
setQuantity(num);
|
setQuantity(num);
|
||||||
|
|
||||||
if (!cartItems) return;
|
const id = getCartItemId();
|
||||||
|
if (!id) return;
|
||||||
|
|
||||||
const cartItemId = cartItems.data.cart_item.find(
|
|
||||||
(item) => Number(item.product.id) === product.id,
|
|
||||||
)?.id;
|
|
||||||
|
|
||||||
if (!cartItemId) return;
|
|
||||||
|
|
||||||
// ❗ 0 bo‘lsa — DELETE (darhol)
|
|
||||||
if (num === 0) {
|
if (num === 0) {
|
||||||
deleteCartItem({ cart_item_id: cartItemId.toString() });
|
deleteCartItem({ cart_item_id: id.toString() });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 🕒 debounce bilan UPDATE
|
|
||||||
debounceRef.current = setTimeout(() => {
|
debounceRef.current = setTimeout(() => {
|
||||||
updateCartItem({
|
updateCartItem({
|
||||||
|
cart_item_id: id.toString(),
|
||||||
body: { quantity: num },
|
body: { quantity: num },
|
||||||
cart_item_id: cartItemId.toString(),
|
|
||||||
});
|
});
|
||||||
}, 500);
|
}, 500);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Button size="icon" variant="ghost" onClick={increase}>
|
<Button
|
||||||
<Plus className="w-4 h-4" />
|
size="icon"
|
||||||
|
variant="ghost"
|
||||||
|
onClick={increase}
|
||||||
|
disabled={Number(quantity) >= maxBalance}
|
||||||
|
>
|
||||||
|
<Plus />
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user