better login

This commit is contained in:
2026-03-30 14:14:35 +03:00
parent be8212deed
commit 429d96e46f
6 changed files with 1602 additions and 761 deletions

View File

@@ -1,736 +1,20 @@
'use client';
import React, { useState } from 'react';
import {
User, Crown, Home, ShoppingBag, Wallet, MapPin,
Headphones, Heart, IdCard, LogOut, TrendingUp,
Plus, Hash, Clock, AlertCircle, Eye, Reply,
CreditCard, Gift, Edit, Trash2, CircleCheck, Info, Box, Camera, Check, Shield, ShieldAlert, Mail, CheckCircle, ShieldX
} from 'lucide-react';
import { useSearchParams } from "next/navigation";
import { useEffect } from "react";
import { useRouter } from "next/navigation";
// === رابط‌ها و کامپوننت‌های کمکی ===
interface PriceDisplayProps {
amount: number | string | null;
currency?: string;
unit?: string;
}
const PriceDisplay: React.FC<PriceDisplayProps> = ({ amount, currency = 'تومان', unit }) => {
if (amount === null || amount === undefined || amount === 0) {
return <span className="text-gray-400">استعلام</span>;
}
const formattedAmount = typeof amount === 'number'
? amount.toLocaleString('fa-IR')
: Number(amount.toString().replace(/,/g, '')).toLocaleString('fa-IR');
import { Suspense } from "react";
import { DashboardClient } from "@/components/dashboard/dashboard-client";
function DashboardFallback() {
return (
<>
{formattedAmount} {unit ? unit : currency}
</>
);
};
// === داده‌های نمونه ===
const sampleOrders = [
{
id: "PR-10452",
status: "در حال پردازش",
statusColor: "amber",
items: [
{ name: "پمپ آب صنعتی مدل PX-200", qty: 2, price: "۳۰۰,۰۰۰" },
{ name: "فیلتر هوای کابین خودرو", qty: 1, price: "۲۰۰,۰۰۰" },
],
total: "۵۰۰,۰۰۰",
regDate: "۱۵ دی ۱۴۰۴",
deliveryDate: "۲۰ دی ۱۴۰۴",
delivered: false,
},
{
id: "PR-10451",
status: "تحویل شده",
statusColor: "green",
items: [
{ name: "روغن موتور ۵W-30 کاسترول", qty: 4, price: "۱۲۰,۰۰۰" },
],
total: "۱۲۰,۰۰۰",
regDate: "۱۰ دی ۱۴۰۴",
deliveryDate: "۱۲ دی ۱۴۰۴",
delivered: true,
},
];
const sampleTickets = [
{
id: "54321",
title: "عدم تطابق قطعه ارسالی با فاکتور",
date: "۱۴ دی ۱۴۰۴",
department: "بخش فروش",
priority: "اولویت بالا",
status: "در حال بررسی",
statusColor: "amber",
},
];
const sampleAddresses = [
{
id: "addr1",
text: "شیراز، بلوار معالی آباد، خیابان پزشکان، ساختمان پارس، واحد ۴",
receiver: "علی محمدی",
phone: "۰۹۱۲۳۴۵۶۷۸۹",
isDefault: true,
},
{
id: "addr2",
text: "تهران، خیابان سعدی جنوبی، کوچه ناظم‌الاطباء، پلاک ۲۰",
receiver: "دفتر تهران (شرکت پترو صدف)",
phone: "۰۲۱-۳۳۹۰۰۰۰",
isDefault: false,
},
];
export default function Dashboard() {
const [activeTab, setActiveTab] = useState('dash');
const searchParams = useSearchParams();
const success = searchParams.get("success");
const [authorized, setAuthorized] = useState<boolean | null>(null);
React.useEffect(() => {
const token = localStorage.getItem("accessToken");
const role = localStorage.getItem("role");
if (token && (role === "user" || role === "admin")) {
setAuthorized(true);
} else {
setAuthorized(false);
}
}, []);
const menuItems = [
{ id: 'dash', label: 'پیشخوان', icon: Home },
{ id: 'orders', label: 'سفارش‌های من', icon: ShoppingBag },
{ id: 'wallet', label: 'کیف پول', icon: Wallet },
{ id: 'address', label: 'آدرس‌ها', icon: MapPin },
{ id: 'tickets', label: 'تیکت پشتیبانی', icon: Headphones },
{ id: 'profile', label: 'مشخصات حساب', icon: IdCard },
];
// ✅ حالت در حال بررسی
if (authorized === null) {
return (
<div className="min-h-screen flex items-center justify-center bg-gray-50" dir="rtl">
<p className="text-gray-600">در حال بررسی دسترسی...</p>
</div>
);
}
// ❌ دسترسی ندارد
if (!authorized) {
const router = useRouter();
return (
<div className="min-h-screen flex items-center justify-center bg-gray-50 px-4" dir="rtl">
<div className="bg-white shadow-xl rounded-2xl p-10 max-w-md w-full text-center border border-gray-100">
<div className="flex justify-center mb-6">
<div className="bg-red-100 p-4 rounded-full">
<ShieldX className="w-10 h-10 text-red-600" />
</div>
</div>
<h1 className="text-2xl font-bold text-gray-800 mb-2">
دسترسی غیرمجاز
</h1>
<p className="text-gray-500 text-sm leading-relaxed mb-6">
شما اجازه دسترسی به این صفحه را ندارید.
برای مشاهده داشبورد باید ابتدا وارد حساب کاربری خود شوید.
</p>
<div className="flex gap-3 justify-center">
<button
onClick={() => router.push("/")}
className="flex cursor-pointer items-center gap-2 bg-gray-900 text-white px-4 py-2 rounded-lg text-sm hover:bg-black transition"
>
<Home className="w-4 h-4" />
بازگشت به صفحه اصلی
</button>
</div>
</div>
</div>
);
}
return (
<div className="min-h-screen bg-gray-50 py-8" dir="rtl">
<div className="container mx-auto px-4 max-w-6xl">
{success === "login" && (
<div className="mb-4 flex items-center gap-2 p-3 bg-[#d2f6dca3] text-green-700 rounded-xl text-sm">
<CheckCircle className="w-4 h-4 text-green-600" />
<span>ورود با موفقیت انجام شد</span>
</div>
)}
{success === "register" && (
<div className="mb-4 flex items-center gap-2 p-3 bg-[#d2f6dca3] text-green-700 rounded-xl text-sm">
<CheckCircle className="w-4 h-4 text-green-600" />
<span>ثبت نام با موفقیت انجام شد</span>
</div>
)}
<div className="flex flex-col lg:flex-row gap-8">
<aside className="w-full lg:w-[280px] bg-white rounded-2xl shadow-sm flex-shrink-0 h-fit">
<div className="p-6 flex flex-col items-center border-b border-gray-100">
<div className="w-20 h-20 bg-gray-50 rounded-full flex items-center justify-center text-gray-400 mb-4">
<User size={32} strokeWidth={1.5} />
</div>
<div className="text-lg font-bold text-gray-800 mb-1">علی محمدی</div>
<div className="text-sm text-gray-500 mb-4 font-mono" dir="ltr">0912 345 6789</div>
<div className="w-full flex flex-col items-center">
<div className="inline-flex items-center gap-1.5 px-3 py-1 bg-yellow-100 text-yellow-700 rounded-full text-xs font-bold mb-3">
<Crown size={14} /> کاربر طلایی
</div>
<div className="w-full">
<div className="w-full h-1.5 bg-gray-100 rounded-full overflow-hidden mb-1.5">
<div className="h-full bg-yellow-400 rounded-full transition-all duration-500" style={{ width: '75%' }}></div>
</div>
<div className="text-[10px] text-gray-400 text-center">۷۵٪ تا سطح پلاتینی</div>
</div>
</div>
</div>
<ul className="p-4 flex flex-col gap-1">
{menuItems.map((item) => (
<li key={item.id}>
<button
onClick={() => setActiveTab(item.id)}
className={`w-full cursor-pointer flex items-center gap-3 px-4 py-3 rounded-xl text-sm font-semibold transition-all duration-200 ${activeTab === item.id
? 'bg-[#1a2332] text-white shadow-md'
: 'text-gray-600 hover:bg-gray-50 hover:text-[#ffb900]'
}`}
>
<item.icon size={18} className={activeTab === item.id ? 'text-white' : 'text-gray-400'} />
{item.label}
</button>
</li>
))}
<li className="mt-2 pt-2 border-t border-gray-100">
<button className="w-full flex items-center gap-3 px-4 py-3 rounded-xl text-sm font-semibold text-red-500 hover:bg-red-50 transition-colors">
<LogOut size={18} /> خروج
</button>
</li>
</ul>
</aside>
<main className="flex-1 overflow-hidden">
{/* -------------------- تب پیشخوان -------------------- */}
{activeTab === 'dash' && (
<div className="animate-in fade-in slide-in-from-bottom-4 duration-500">
<h2 className="text-2xl font-bold text-gray-800 mb-6">خوش آمدید، علی عزیز</h2>
<div className="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-4 gap-4 mb-6">
<div className="bg-white p-5 rounded-2xl border border-gray-100 flex-col shadow-sm flex items-center gap-4 hover:shadow-md transition-shadow">
<div className="w-12 h-12 rounded-xl bg-blue-50 text-blue-600 flex items-center justify-center flex-shrink-0"><Wallet size={24} /></div>
<div>
<h4 className="text-xs text-gray-500 mb-1">موجودی کیف پول</h4>
<strong className="text-[1em] text-gray-800"><PriceDisplay amount={1500000} /></strong>
</div>
</div>
<div className="bg-white flex-col p-5 rounded-2xl border border-gray-100 shadow-sm flex items-center gap-4 hover:shadow-md transition-shadow">
<div className="w-12 h-12 rounded-xl bg-green-50 text-green-600 flex items-center justify-center flex-shrink-0"><ShoppingBag size={24} /></div>
<div className='flex flex-col items-center'>
<h4 className="text-xs text-gray-500 mb-1">سفارشات جاری</h4>
<strong className="text-lg text-gray-800">۲ <span className="text-xs font-normal text-gray-500">مورد</span></strong>
</div>
</div>
<div className="bg-white flex-col p-5 rounded-2xl border border-gray-100 shadow-sm flex items-center gap-4 hover:shadow-md transition-shadow">
<div className="w-12 h-12 rounded-xl bg-orange-50 text-orange-600 flex items-center justify-center flex-shrink-0"><Headphones size={24} /></div>
<div className='flex flex-col items-center'>
<h4 className="text-xs text-gray-500 mb-1">تیکتهای باز</h4>
<strong className="text-lg text-gray-800">۱ <span className="text-xs font-normal text-gray-500">مورد</span></strong>
</div>
</div>
<div className="bg-white flex-col p-5 rounded-2xl border border-gray-100 shadow-sm flex items-center gap-4 hover:shadow-md transition-shadow">
<div className="w-12 h-12 rounded-xl bg-purple-50 text-purple-600 flex items-center justify-center flex-shrink-0"><TrendingUp size={24} /></div>
<div className='flex flex-col items-center'>
<h4 className="text-xs text-gray-500 mb-1">امتیاز وفاداری</h4>
<strong className="text-lg text-gray-800">۲,۳۴۰ <span className="text-xs font-normal text-gray-500">امتیاز</span></strong>
</div>
</div>
</div>
<div className="grid lg:grid-cols-2 gap-6">
<div className="bg-white rounded-2xl border border-gray-100 shadow-sm p-6">
<div className="flex justify-between items-center pb-4 border-b border-gray-100 mb-4">
<h3 className="font-bold text-gray-800">آخرین سفارشات</h3>
<button onClick={() => setActiveTab('orders')} className="text-sm text-blue-600 hover:text-blue-700">مشاهده همه</button>
</div>
<div className="text-sm text-gray-500 py-4 flex flex-col gap-3">
{/* پیش‌نمایش کوچکی از سفارشات */}
<div className="flex justify-between items-center bg-gray-50 p-3 rounded-lg">
<span className="font-medium text-gray-700">#PR-10452</span>
<span className="bg-amber-100 text-amber-700 px-2 py-1 rounded text-xs">در حال پردازش</span>
</div>
</div>
</div>
</div>
</div>
)}
{/* -------------------- تب تیکت‌ها -------------------- */}
{activeTab === 'tickets' && (
<div className="animate-in fade-in duration-500">
<div className="flex flex-col sm:flex-row justify-between items-start sm:items-center gap-4 mb-6">
<h1 className="text-2xl font-bold text-gray-800 m-0">تیکتهای پشتیبانی</h1>
<button onClick={() => alert('فرم تیکت جدید باز شود')} className="bg-[#1a2332] hover:bg-[#ffb900] text-white px-5 py-2.5 rounded-xl flex items-center gap-2 transition-colors text-sm font-medium">
<Plus size={18} /> تیکت جدید
</button>
</div>
<div className="grid grid-cols-2 lg:grid-cols-4 gap-4 mb-8">
<div className="bg-white p-5 rounded-2xl border border-gray-100 shadow-sm flex flex-col items-center justify-center">
<span className="text-3xl font-bold text-gray-800 mb-2">۵</span>
<div className="text-sm text-gray-500">کل تیکتها</div>
</div>
<div className="bg-white p-5 rounded-2xl border border-gray-100 shadow-sm flex flex-col items-center justify-center">
<span className="text-3xl font-bold text-amber-600 mb-2">۱</span>
<div className="text-sm text-gray-500">در حال بررسی</div>
</div>
<div className="bg-white p-5 rounded-2xl border border-gray-100 shadow-sm flex flex-col items-center justify-center">
<span className="text-3xl font-bold text-green-700 mb-2">۳</span>
<div className="text-sm text-gray-500">پاسخ داده شده</div>
</div>
<div className="bg-white p-5 rounded-2xl border border-gray-100 shadow-sm flex flex-col items-center justify-center">
<span className="text-3xl font-bold text-red-700 mb-2">۱</span>
<div className="text-sm text-gray-500">بسته شده</div>
</div>
</div>
<div className="mb-6 overflow-x-auto pb-2 scrollbar-hide">
<div className="flex gap-2 min-w-max">
<button className="bg-gray-800 text-white px-5 py-2 rounded-full text-sm font-medium transition-colors">همه تیکتها</button>
<button className="bg-white border border-gray-200 text-gray-600 hover:bg-gray-50 px-5 py-2 rounded-full text-sm font-medium transition-colors">باز</button>
<button className="bg-white border border-gray-200 text-gray-600 hover:bg-gray-50 px-5 py-2 rounded-full text-sm font-medium transition-colors">پاسخ داده شده</button>
<button className="bg-white border border-gray-200 text-gray-600 hover:bg-gray-50 px-5 py-2 rounded-full text-sm font-medium transition-colors">بسته شده</button>
</div>
</div>
<div className="flex flex-col gap-4">
{sampleTickets.map(ticket => (
<div key={ticket.id} className="bg-white p-5 rounded-2xl border border-gray-100 shadow-sm flex flex-col lg:flex-row justify-between items-start lg:items-center gap-4 transition-all hover:shadow-md">
<div className="flex-1">
<h3 className="text-lg font-bold text-gray-800 mb-3">{ticket.title}</h3>
<div className="flex flex-wrap items-center gap-4 text-xs sm:text-sm text-gray-500">
<span className="flex items-center gap-1"><Hash size={14} /> {ticket.id}</span>
<span className="flex items-center gap-1"><Clock size={14} /> {ticket.date}</span>
<span className="flex items-center gap-1"><User size={14} /> {ticket.department}</span>
<span className="flex items-center gap-1 text-red-600 font-medium"><AlertCircle size={14} /> {ticket.priority}</span>
</div>
</div>
<div className="flex items-center gap-3 w-full lg:w-auto justify-between lg:justify-end border-t lg:border-0 pt-4 lg:pt-0 mt-2 lg:mt-0">
<span className="bg-amber-100 text-amber-800 px-3 py-1 rounded-full text-xs font-medium">
{ticket.status}
</span>
<div className="flex gap-2">
<button className="w-10 h-10 rounded-full bg-gray-50 text-gray-600 flex items-center justify-center hover:bg-blue-50 hover:text-[#ffb900] transition-colors">
<Eye size={18} />
</button>
<button className="w-10 h-10 rounded-full bg-gray-50 text-gray-600 flex items-center justify-center hover:bg-blue-50 hover:text-[#ffb900] transition-colors">
<Reply size={18} />
</button>
</div>
</div>
</div>
))}
</div>
</div>
)}
{/* -------------------- تب آدرس‌ها -------------------- */}
{activeTab === 'address' && (
<div className="animate-in fade-in duration-500">
<div className="flex flex-col sm:flex-row justify-between items-start sm:items-center gap-4 mb-6">
<h1 className="text-2xl font-bold text-gray-800 m-0">آدرسهای من</h1>
<button className="bg-[#1a2332] hover:bg-[#ffb900] text-white px-5 py-2.5 rounded-xl flex items-center gap-2 transition-colors text-sm font-medium">
<MapPin size={18} /> افزودن آدرس جدید
</button>
</div>
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
{sampleAddresses.map((address) => (
<div
key={address.id}
className={`bg-white p-6 rounded-2xl border-2 ${address.isDefault ? 'border-[#ffd230] relative' : 'border-gray-200'} transition-all`}
>
{address.isDefault && (
<span className="absolute -top-3 right-6 bg-[#ffd230] text-white text-[10px] font-bold px-2 py-1 rounded">
پیشفرض
</span>
)}
<div className="text-gray-800 leading-relaxed font-medium mb-4 text-sm sm:text-base">
{address.text}
</div>
<div className="flex flex-col gap-2 text-sm text-gray-500 mb-6">
<div className="flex items-center gap-2"><User size={16} /> گیرنده: {address.receiver}</div>
<div className="flex items-center gap-2"><Headphones size={16} /> تماس: {address.phone}</div>
</div>
<div className="flex items-center justify-end gap-2 border-t border-gray-100 pt-4 mt-auto">
{!address.isDefault && (
<button title="انتخاب به عنوان پیش‌فرض" className="w-10 h-10 rounded-full bg-gray-50 text-gray-600 flex items-center justify-center hover:bg-green-50 hover:text-green-600 transition-colors">
<CircleCheck size={18} />
</button>
)}
<button className="w-10 h-10 rounded-full bg-gray-50 text-gray-600 flex items-center justify-center hover:bg-blue-50 hover:text-[#ffb900] transition-colors">
<Edit size={18} />
</button>
<button className="w-10 h-10 rounded-full bg-red-50 text-red-500 flex items-center justify-center hover:bg-red-500 hover:text-white transition-colors">
<Trash2 size={18} />
</button>
</div>
</div>
))}
</div>
</div>
)}
{/* -------------------- تب کیف پول -------------------- */}
{activeTab === 'wallet' && (
<div className="animate-in fade-in duration-500">
<h1 className="text-2xl font-bold text-gray-800 mb-6">کیف پول و مدیریت مالی</h1>
<div className="bg-gray-800 text-white p-6 sm:p-8 rounded-2xl flex flex-col md:flex-row justify-between items-center gap-6 mb-8 bg-[url('/pattern.png')] bg-cover bg-center">
<div className="text-center md:text-right">
<span className="text-gray-300 text-sm mb-2 block">موجودی فعلی حساب شما:</span>
<div className="text-3xl sm:text-4xl font-bold text-yellow-400">
۱,۵۰۰,۰۰۰ <span className="text-lg font-normal text-white">تومان</span>
</div>
<div className="mt-3 text-sm text-gray-400 flex items-center justify-center md:justify-start gap-1">
<CreditCard size={14} /> آخرین بروزرسانی: امروز ۱۴:۳۰
</div>
</div>
<div className="flex flex-col gap-3 w-full md:w-auto">
<button className="bg-yellow-400 hover:bg-yellow-500 text-gray-900 px-8 py-3 rounded-xl font-bold flex items-center justify-center gap-2 transition-colors">
<Plus size={18} /> افزایش موجودی
</button>
<button className="bg-transparent border border-gray-600 hover:bg-gray-700 text-white px-8 py-2.5 rounded-xl font-medium flex items-center justify-center gap-2 transition-colors">
<Plus size={18} className="rotate-180" /> برداشت وجه
</button>
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-4 mb-8">
<div className="bg-white p-5 rounded-2xl border border-gray-100 shadow-sm flex items-center gap-4">
<div className="w-12 h-12 rounded-xl bg-green-100 text-green-700 flex items-center justify-center"><Plus size={24} /></div>
<div>
<h4 className="text-xs text-gray-500 mb-1">کل واریزیها</h4>
<strong className="text-lg text-gray-800">۵,۲۰۰,۰۰۰ تومان</strong>
</div>
</div>
<div className="bg-white p-5 rounded-2xl border border-gray-100 shadow-sm flex items-center gap-4">
<div className="w-12 h-12 rounded-xl bg-red-100 text-red-700 flex items-center justify-center"><Plus size={24} className="rotate-180" /></div>
<div>
<h4 className="text-xs text-gray-500 mb-1">کل برداشتها</h4>
<strong className="text-lg text-gray-800">۳,۷۰۰,۰۰۰ تومان</strong>
</div>
</div>
<div className="bg-white p-5 rounded-2xl border border-gray-100 shadow-sm flex items-center gap-4">
<div className="w-12 h-12 rounded-xl bg-blue-100 text-blue-700 flex items-center justify-center"><TrendingUp size={24} /></div>
<div>
<h4 className="text-xs text-gray-500 mb-1">امتیاز وفاداری</h4>
<strong className="text-lg text-gray-800">۲,۳۴۰ امتیاز</strong>
</div>
</div>
</div>
<div className="bg-white rounded-2xl border border-gray-100 shadow-sm p-6">
<div className="flex flex-col sm:flex-row justify-between items-start sm:items-center pb-4 border-b border-gray-100 mb-4 gap-4">
<div className="text-lg font-bold text-gray-800 flex items-center gap-2">
<Clock size={20} className="text-gray-400" /> تاریخچه تراکنشها
</div>
<select className="bg-gray-50 border border-gray-200 text-gray-700 px-4 py-2 rounded-xl text-sm outline-none focus:border-blue-500">
<option>همه تراکنشها</option>
<option>واریزیها</option>
<option>برداشتها</option>
<option>خرید محصول</option>
</select>
</div>
<div className="flex flex-col gap-4">
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between p-4 bg-gray-50 rounded-xl gap-4 border border-transparent hover:border-gray-200 transition-colors">
<div className="flex items-center gap-4">
<div className="w-10 h-10 rounded-full bg-red-100 text-red-600 flex items-center justify-center flex-shrink-0">
<ShoppingBag size={18} />
</div>
<div>
<div className="font-bold text-gray-800 text-sm mb-1">پرداخت بابت سفارش #PR-10452</div>
<div className="text-xs text-gray-500 mb-1">۱۵ دی ۱۴۰۴ - ساعت ۱4:۳۰</div>
<div className="text-xs text-gray-400">کد پیگیری: TXN-789456123</div>
</div>
</div>
<div className="text-red-600 font-bold bg-red-50 px-3 py-1 rounded-full text-sm">
- ۵۰۰,۰۰۰ تومان
</div>
</div>
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between p-4 bg-gray-50 rounded-xl gap-4 border border-transparent hover:border-gray-200 transition-colors">
<div className="flex items-center gap-4">
<div className="w-10 h-10 rounded-full bg-green-100 text-green-600 flex items-center justify-center flex-shrink-0">
<CreditCard size={18} />
</div>
<div>
<div className="font-bold text-gray-800 text-sm mb-1">افزایش آنلاین موجودی (درگاه بانکی)</div>
<div className="text-xs text-gray-500 mb-1">۱۴ دی ۱۴۰۴ - ساعت ۱۰:۱۵</div>
<div className="text-xs text-gray-400">کد پیگیری: TXN-789456122</div>
</div>
</div>
<div className="text-green-600 font-bold bg-green-50 px-3 py-1 rounded-full text-sm">
+ ۲,۰۰۰,۰۰۰ تومان
</div>
</div>
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between p-4 bg-gray-50 rounded-xl gap-4 border border-transparent hover:border-gray-200 transition-colors">
<div className="flex items-center gap-4">
<div className="w-10 h-10 rounded-full bg-green-100 text-green-600 flex items-center justify-center flex-shrink-0">
<Gift size={18} />
</div>
<div>
<div className="font-bold text-gray-800 text-sm mb-1">استفاده از امتیاز وفاداری</div>
<div className="text-xs text-gray-500 mb-1">۱۲ دی ۱۴۰۴ - ساعت ۱۶:۲۰</div>
<div className="text-xs text-gray-400">تبدیل ۵۰۰ امتیاز به تومان</div>
</div>
</div>
<div className="text-green-600 font-bold bg-green-50 px-3 py-1 rounded-full text-sm">
+ ۵۰,۰۰۰ تومان
</div>
</div>
</div>
</div>
</div>
)}
{/* -------------------- تب سفارش‌ها -------------------- */}
{activeTab === 'orders' && (
<div className="animate-in fade-in duration-500">
<h1 className="text-2xl font-bold text-gray-800 mb-6">سفارشهای من</h1>
<div className="mb-6 overflow-x-auto pb-2 scrollbar-hide">
<div className="flex gap-2 min-w-max border-b border-gray-200 pb-2">
<button className="text-blue-600 border-b-2 border-blue-600 px-4 py-2 text-sm font-bold">همه سفارشات</button>
<button className="text-gray-500 hover:text-gray-800 px-4 py-2 text-sm font-medium transition-colors">در حال پردازش</button>
<button className="text-gray-500 hover:text-gray-800 px-4 py-2 text-sm font-medium transition-colors">ارسال شده</button>
<button className="text-gray-500 hover:text-gray-800 px-4 py-2 text-sm font-medium transition-colors">تحویل شده</button>
<button className="text-gray-500 hover:text-gray-800 px-4 py-2 text-sm font-medium transition-colors">لغو شده</button>
</div>
</div>
<div className="flex flex-col gap-6">
{sampleOrders.map((order) => (
<div key={order.id} className="bg-white rounded-2xl border border-gray-100 shadow-sm overflow-hidden hover:shadow-md transition-shadow">
<div className="bg-gray-50 px-6 py-4 flex justify-between items-center border-b border-gray-100">
<div className="font-bold text-gray-800 flex items-center gap-2">
<Hash size={16} className="text-gray-400" /> {order.id}
</div>
<span className={`px-3 py-1 rounded-full text-xs font-bold ${order.statusColor === 'amber' ? 'bg-amber-100 text-amber-700' :
order.statusColor === 'green' ? 'bg-green-100 text-green-700' :
'bg-gray-200 text-gray-700'
}`}>
{order.status}
</span>
</div>
<div className="p-6">
<div className="flex flex-col lg:flex-row gap-6">
<div className="flex-1">
{order.items.map((item, idx) => (
<div key={idx} className="flex justify-between items-center py-3 border-b border-gray-50 last:border-0 text-sm">
<span className="font-medium text-gray-700 flex-1">{item.name}</span>
<span className="text-gray-500 w-24 text-center">تعداد: {item.qty}</span>
<span className="font-bold text-gray-800 w-32 text-left">{item.price} تومان</span>
</div>
))}
</div>
<div className="w-full lg:w-64 bg-gray-50 rounded-xl p-4 flex flex-col gap-3 text-sm text-gray-600">
<div className="flex items-center gap-2"><Clock size={16} className="text-gray-400" /> تاریخ ثبت: {order.regDate}</div>
<div className="flex items-center gap-2">
{order.delivered ? <CircleCheck size={16} className="text-green-500" /> : <Box size={16} className="text-blue-500" />}
{order.delivered ? 'تحویل شده:' : 'تحویل تا:'} {order.deliveryDate}
</div>
<div className="flex items-center gap-2 border-t border-gray-200 pt-3 mt-1 font-bold text-gray-800">
<CreditCard size={16} className="text-gray-400" /> مبلغ کل: {order.total} تومان
</div>
</div>
</div>
<div className="flex flex-wrap gap-2 mt-6 pt-4 border-t border-gray-100 justify-end">
<button className="px-4 py-2 border border-gray-200 text-gray-700 rounded-xl text-sm font-medium hover:bg-gray-50 transition-colors">جزئیات سفارش</button>
{!order.delivered && (
<button className="px-4 py-2 border border-gray-200 text-gray-700 rounded-xl text-sm font-medium hover:bg-gray-50 transition-colors">پیگیری مرسوله</button>
)}
{order.delivered ? (
<>
<button className="px-4 py-2 bg-[#1a2332] text-white rounded-xl text-sm font-medium hover:bg-[#ffb900] transition-colors">خرید مجدد</button>
<button className="px-4 py-2 border border-gray-200 text-gray-700 rounded-xl text-sm font-medium hover:bg-gray-50 transition-colors">نظر و امتیاز</button>
</>
) : (
<button className="px-4 py-2 border border-red-200 text-red-500 rounded-xl text-sm font-medium hover:bg-red-50 transition-colors">لغو سفارش</button>
)}
</div>
</div>
</div>
))}
</div>
</div>
)}
{/* -------------------- تب پروفایل -------------------- */}
{activeTab === 'profile' && (
<div className="animate-in fade-in duration-500">
<h1 className="text-2xl font-bold text-gray-800 mb-6">پروفایل کاربری</h1>
<div className="space-y-6">
{/* اطلاعات شخصی */}
<div className="bg-white rounded-2xl border border-gray-100 shadow-sm p-6">
<h2 className="text-xl font-bold text-gray-800 mb-6 border-b border-gray-100 pb-4">اطلاعات شخصی</h2>
<form>
{/* Avatar Section */}
<div className="flex flex-col sm:flex-row items-center gap-6 mb-8">
<div className="relative">
<img
src="/avatar-placeholder.png"
alt="User Avatar"
className="w-24 h-24 rounded-full object-cover border-4 border-gray-50 shadow-sm"
/>
</div>
<div className="flex flex-col items-center sm:items-start gap-2">
<button
type="button"
className="flex items-center gap-2 px-4 py-2 border border-blue-600 text-blue-600 rounded-xl hover:bg-blue-50 transition-colors text-sm font-medium"
>
<Camera size={18} />
تغییر تصویر
</button>
<p className="text-xs text-gray-500">فرمتهای مجاز: JPG, PNG. حداکثر حجم: ۲ مگابایت</p>
</div>
</div>
{/* Form Fields Grid */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">نام و نام خانوادگی <span className="text-red-500">*</span></label>
<input type="text" defaultValue="علی محمدی" required className="w-full px-4 py-2 border border-gray-200 rounded-xl focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-all text-gray-800" />
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">شماره موبایل</label>
<input type="text" defaultValue="09123456789" disabled className="w-full px-4 py-2 border border-gray-100 bg-gray-50 text-gray-500 rounded-xl cursor-not-allowed" />
<p className="text-xs text-gray-400 mt-1">برای تغییر شماره موبایل با پشتیبانی تماس بگیرید.</p>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">پست الکترونیک</label>
<input type="email" defaultValue="ali.m@gmail.com" className="w-full px-4 py-2 border border-gray-200 rounded-xl focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-all text-left text-gray-800" dir="ltr" />
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">کد ملی</label>
<input type="text" defaultValue="2280000000" className="w-full px-4 py-2 border border-gray-200 rounded-xl focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-all text-gray-800" />
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">تاریخ تولد</label>
<input type="text" placeholder="مثال: ۱۳۷۰/۰۵/۱۲" className="w-full px-4 py-2 border border-gray-200 rounded-xl focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-all text-gray-800" />
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">جنسیت</label>
<select className="w-full px-4 py-2 border border-gray-200 rounded-xl focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-all appearance-none bg-white text-gray-800">
<option value="male">مرد</option>
<option value="female">زن</option>
</select>
</div>
</div>
{/* Submit Button */}
<div className="flex justify-end pt-4 border-t border-gray-50">
<button type="submit" className="flex items-center gap-2 bg-[#1a2332] text-white px-6 py-2.5 rounded-xl hover:bg-[#ffb900] transition-colors font-medium shadow-sm text-sm">
<Check size={18} />
ثبت تغییرات
</button>
</div>
</form>
</div>
{/* تنظیمات امنیتی */}
<div className="bg-white rounded-2xl border border-gray-100 shadow-sm p-6">
<h2 className="text-xl font-bold text-gray-800 mb-6 border-b border-gray-100 pb-4">تنظیمات امنیتی</h2>
<div className="space-y-4">
{/* Change Password */}
<div className="flex flex-col sm:flex-row sm:items-center justify-between p-4 border border-gray-100 rounded-xl bg-gray-50 hover:bg-gray-100/50 transition-colors">
<div className="flex items-center gap-4">
<div className="w-10 h-10 rounded-full bg-blue-50 text-blue-600 flex items-center justify-center flex-shrink-0">
<Shield size={20} />
</div>
<div>
<h3 className="font-bold text-gray-800 text-sm">تغییر رمز عبور</h3>
<p className="text-xs text-gray-500 mt-1">آخرین تغییر: ۲ ماه پیش</p>
</div>
</div>
<button className="mt-4 sm:mt-0 flex items-center justify-center px-4 py-2 border border-gray-200 text-gray-700 bg-white rounded-xl hover:bg-gray-50 transition-colors text-sm font-medium shadow-sm">
تغییر رمز
</button>
</div>
{/* Two-Factor Authentication */}
<div className="flex flex-col sm:flex-row sm:items-center justify-between p-4 border border-gray-100 rounded-xl bg-gray-50 hover:bg-gray-100/50 transition-colors">
<div className="flex items-center gap-4">
<div className="w-10 h-10 rounded-full bg-amber-50 text-amber-600 flex items-center justify-center flex-shrink-0">
<ShieldAlert size={20} />
</div>
<div>
<h3 className="font-bold text-gray-800 text-sm">احراز هویت دو مرحلهای</h3>
<p className="text-xs mt-1 text-gray-500">
وضعیت: <span className="text-red-500 font-bold">غیرفعال</span>
</p>
</div>
</div>
<button className="mt-4 sm:mt-0 bg-[#1a2332] text-white px-5 py-2 rounded-xl hover:bg-[#ffb900] transition-colors shadow-sm text-sm font-medium">
فعالسازی
</button>
</div>
{/* Email Notifications */}
<div className="flex items-center justify-between p-4 border border-gray-100 rounded-xl bg-gray-50 hover:bg-gray-100/50 transition-colors">
<div className="flex items-center gap-4">
<div className="w-10 h-10 rounded-full bg-green-50 text-green-600 flex items-center justify-center flex-shrink-0">
<Mail size={20} />
</div>
<div>
<h3 className="font-bold text-gray-800 text-sm">اطلاعرسانی ایمیلی</h3>
<p className="text-xs text-gray-500 mt-1">دریافت ایمیل برای ورودهای جدید و هشدارهای امنیتی</p>
</div>
</div>
{/* Toggle Switch */}
<label className="relative inline-flex items-center cursor-pointer">
<input type="checkbox" className="sr-only peer" defaultChecked />
<div className="w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 rounded-full peer peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-[#1a2332]"></div>
</label>
</div>
</div>
</div>
</div>
</div>
)}
</main>
</div>
<div className="min-h-screen bg-[#f7f3ec] px-4 py-16" dir="rtl">
<div className="mx-auto max-w-6xl rounded-[32px] border border-[#ebe4d8] bg-white px-8 py-20 text-center text-[#6e675b] shadow-[0_20px_50px_rgba(48,40,28,0.06)]">
در حال بارگذاری پیشخوان...
</div>
</div>
);
}
export default function DashboardPage() {
return (
<Suspense fallback={<DashboardFallback />}>
<DashboardClient />
</Suspense>
);
}