stable ui

This commit is contained in:
2026-06-11 19:45:03 +03:30
parent b2a79df338
commit 3ce26d4d1a
21 changed files with 6368 additions and 114 deletions
+68
View File
@@ -0,0 +1,68 @@
'use client';
import Header from '@/components/Header';
import Link from 'next/link';
import { motion } from 'framer-motion';
import { Layers, Users, BarChart3 } from 'lucide-react';
export default function AdminDashboard() {
const container = {
hidden: { opacity: 0 },
show: {
opacity: 1,
transition: { staggerChildren: 0.1 }
}
};
const item = {
hidden: { opacity: 0, y: 20 },
show: { opacity: 1, y: 0, transition: { type: 'spring', stiffness: 300, damping: 24 } }
};
return (
<div className="w-full min-h-screen bg-gray-50 flex flex-col pb-20">
<Header title="پنل مدیریت" showBack={true} />
<motion.div
variants={container}
initial="hidden"
animate="show"
className="p-5 flex flex-col gap-4"
>
<div className="grid grid-cols-2 gap-4">
<motion.div variants={item}>
<Link href="/admin/locations" className="bg-white/80 backdrop-blur-sm border border-gray-100 rounded-3xl shadow-[0_4px_20px_rgb(0,0,0,0.03)] p-6 flex flex-col items-center justify-center aspect-square gap-3 hover:bg-white hover:scale-[1.02] active:scale-95 transition-all">
<div className="w-12 h-12 bg-purple-50 text-purple-600 rounded-2xl flex items-center justify-center mb-1">
<Layers strokeWidth={1.5} size={24} />
</div>
<span className="font-extrabold text-xs text-gray-700">مدیریت قفسهها</span>
</Link>
</motion.div>
<motion.div variants={item}>
<Link href="/admin/stats" className="bg-white/80 backdrop-blur-sm border border-gray-100 rounded-3xl shadow-[0_4px_20px_rgb(0,0,0,0.03)] p-6 flex flex-col items-center justify-center aspect-square gap-3 hover:bg-white hover:scale-[1.02] active:scale-95 transition-all">
<div className="w-12 h-12 bg-blue-50 text-blue-500 rounded-2xl flex items-center justify-center mb-1">
<BarChart3 strokeWidth={1.5} size={24} />
</div>
<span className="font-extrabold text-xs text-gray-700">آمار طبقات</span>
</Link>
</motion.div>
</div>
<motion.div variants={item}>
<div className="opacity-60 bg-white/80 backdrop-blur-sm border border-gray-100 rounded-3xl shadow-[0_4px_20px_rgb(0,0,0,0.03)] p-5 flex items-center justify-between transition-all cursor-not-allowed">
<div className="flex items-center gap-4">
<div className="w-10 h-10 bg-gray-100 text-gray-400 rounded-xl flex items-center justify-center">
<Users strokeWidth={1.5} size={20} />
</div>
<span className="font-extrabold text-sm text-gray-500">مدیریت کاربران (به زودی)</span>
</div>
<div className="w-8 h-8 bg-gray-50 rounded-full flex items-center justify-center">
<svg className="w-4 h-4 text-gray-300 rotate-180" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 5l7 7-7 7" /></svg>
</div>
</div>
</motion.div>
</motion.div>
</div>
);
}
+73
View File
@@ -0,0 +1,73 @@
'use client';
import { useState, useEffect } from 'react';
import Header from '@/components/Header';
import { motion } from 'framer-motion';
export default function AdminStats() {
const [stats, setStats] = useState([]);
const [loading, setLoading] = useState(true);
useEffect(() => {
fetch('/api/admin/stats')
.then(res => res.json())
.then(data => {
setStats(data);
setLoading(false);
});
}, []);
const container = {
hidden: { opacity: 0 },
show: {
opacity: 1,
transition: { staggerChildren: 0.1 }
}
};
const item = {
hidden: { opacity: 0, y: 10 },
show: { opacity: 1, y: 0 }
};
return (
<div className="w-full min-h-screen bg-gray-50 flex flex-col pb-20">
<Header title="آمار طبقات" showBack={true} />
<div className="p-5 flex flex-col gap-4">
{loading ? (
<div className="flex justify-center items-center h-40">
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-purple-600"></div>
</div>
) : stats.length === 0 ? (
<div className="text-center text-gray-400 p-10 text-sm font-medium bg-white/60 rounded-3xl border border-gray-100">
هیچ آماری یافت نشد.
</div>
) : (
<motion.div variants={container} initial="hidden" animate="show" className="flex flex-col gap-3">
{stats.map((stat, index) => (
<motion.div
key={index}
variants={item}
className="bg-white/80 backdrop-blur-sm border border-gray-100 rounded-2xl shadow-sm p-4 flex items-center justify-between hover:scale-[1.01] transition-transform"
>
<div className="flex items-center gap-3">
<div className="w-12 h-12 bg-blue-50 text-blue-600 font-extrabold text-xl rounded-xl flex items-center justify-center">
{stat.floor}
</div>
<div className="flex flex-col">
<span className="font-extrabold text-gray-800 text-sm">شمارشهای ثبت شده</span>
<span className="text-xs text-gray-500 mt-0.5">در تمامی مناطق و قطاعها</span>
</div>
</div>
<div className="text-2xl font-black text-gray-900">
{stat.totalCountings}
</div>
</motion.div>
))}
</motion.div>
)}
</div>
</div>
);
}