fix: redesign
This commit is contained in:
@@ -5,6 +5,8 @@ import { useAuth } from '@/contexts/AuthContext';
|
||||
import { promotionsApi } from '@/lib/api/promotions';
|
||||
import PromotionList from '@/components/admin/promotions/PromotionList';
|
||||
import PromotionForm from '@/components/admin/promotions/PromotionForm';
|
||||
import PageHeader from '@/components/admin/PageHeader';
|
||||
import { showToast } from '@/components/Toast';
|
||||
import { Promotion, CreatePromotionData, UpdatePromotionData } from '@/types/promotion';
|
||||
import { PlusIcon } from '@heroicons/react/24/outline';
|
||||
|
||||
@@ -15,11 +17,9 @@ export default function PromotionsPage() {
|
||||
const [isLoading, setIsLoading] = useState(false);
|
||||
const [isFormVisible, setIsFormVisible] = useState(false);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [success, setSuccess] = useState<string | null>(null);
|
||||
|
||||
|
||||
const initialLoadRef = useRef(false);
|
||||
|
||||
// Load promotions on mount
|
||||
useEffect(() => {
|
||||
if (token && !initialLoadRef.current) {
|
||||
initialLoadRef.current = true;
|
||||
@@ -57,11 +57,10 @@ export default function PromotionsPage() {
|
||||
|
||||
setIsLoading(true);
|
||||
setError(null);
|
||||
setSuccess(null);
|
||||
|
||||
try {
|
||||
await promotionsApi.deletePromotion(promotion.id, token!);
|
||||
setSuccess('تبلیغ با موفقیت حذف شد');
|
||||
showToast('success', 'تبلیغ با موفقیت حذف شد');
|
||||
await loadPromotions();
|
||||
} catch (err) {
|
||||
setError(err instanceof Error ? err.message : 'خطا در حذف تبلیغ');
|
||||
@@ -73,11 +72,10 @@ export default function PromotionsPage() {
|
||||
const handleToggleActive = async (promotion: Promotion) => {
|
||||
setIsLoading(true);
|
||||
setError(null);
|
||||
setSuccess(null);
|
||||
|
||||
try {
|
||||
await promotionsApi.toggleActive(promotion.id, !promotion.is_active, token!);
|
||||
setSuccess(`تبلیغ با موفقیت ${!promotion.is_active ? 'فعال' : 'غیرفعال'} شد`);
|
||||
showToast('success', `تبلیغ با موفقیت ${!promotion.is_active ? 'فعال' : 'غیرفعال'} شد`);
|
||||
await loadPromotions();
|
||||
} catch (err) {
|
||||
setError(err instanceof Error ? err.message : 'خطا در تغییر وضعیت تبلیغ');
|
||||
@@ -89,17 +87,14 @@ export default function PromotionsPage() {
|
||||
const handleSubmit = async (data: CreatePromotionData | UpdatePromotionData) => {
|
||||
setIsLoading(true);
|
||||
setError(null);
|
||||
setSuccess(null);
|
||||
|
||||
try {
|
||||
if (selectedPromotion) {
|
||||
// Update existing promotion
|
||||
await promotionsApi.updatePromotion(selectedPromotion.id, data, token!);
|
||||
setSuccess('تبلیغ با موفقیت بهروزرسانی شد');
|
||||
showToast('success', 'تبلیغ با موفقیت بهروزرسانی شد');
|
||||
} else {
|
||||
// Create new promotion
|
||||
await promotionsApi.createPromotion(data as CreatePromotionData, token!);
|
||||
setSuccess('تبلیغ با موفقیت ایجاد شد');
|
||||
showToast('success', 'تبلیغ با موفقیت ایجاد شد');
|
||||
}
|
||||
|
||||
await loadPromotions();
|
||||
@@ -116,42 +111,38 @@ export default function PromotionsPage() {
|
||||
setIsFormVisible(false);
|
||||
setSelectedPromotion(null);
|
||||
setError(null);
|
||||
setSuccess(null);
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="p-6">
|
||||
<div className="p-4 sm:p-8">
|
||||
<div className="max-w-7xl mx-auto">
|
||||
<div className="flex justify-between items-center mb-6">
|
||||
<h1 className="text-2xl font-bold text-gray-900 dark:text-gray-100">
|
||||
مدیریت تبلیغات
|
||||
</h1>
|
||||
{!isFormVisible && (
|
||||
<button
|
||||
onClick={handleCreate}
|
||||
disabled={isLoading}
|
||||
className="inline-flex items-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 dark:focus:ring-offset-gray-900 focus:ring-indigo-500 disabled:opacity-50 transition-colors"
|
||||
>
|
||||
<PlusIcon className="h-5 w-5 ml-2" />
|
||||
تبلیغ جدید
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
<PageHeader
|
||||
title="مدیریت تبلیغات"
|
||||
action={
|
||||
!isFormVisible ? (
|
||||
<button
|
||||
onClick={handleCreate}
|
||||
disabled={isLoading}
|
||||
className="inline-flex items-center gap-2 px-4 py-2.5 bg-indigo-600 text-white rounded-xl text-sm font-medium hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 dark:focus:ring-offset-gray-900 focus:ring-indigo-500 disabled:opacity-50 transition-colors shadow-sm shadow-indigo-500/20"
|
||||
>
|
||||
<PlusIcon className="h-4 w-4" />
|
||||
تبلیغ جدید
|
||||
</button>
|
||||
) : undefined
|
||||
}
|
||||
/>
|
||||
|
||||
{/* Messages */}
|
||||
{error && (
|
||||
<div className="mb-4 rounded-md bg-red-50 dark:bg-red-900/20 p-4">
|
||||
<p className="text-sm text-red-800 dark:text-red-300">{error}</p>
|
||||
<div className="mb-4 rounded-xl bg-red-50 dark:bg-red-950/40 ring-1 ring-red-200 dark:ring-red-800/60 p-4 flex items-center gap-3">
|
||||
<p className="text-sm text-red-700 dark:text-red-300">{error}</p>
|
||||
<button onClick={() => setError(null)} className="mr-auto text-red-400 hover:text-red-600">
|
||||
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" strokeWidth={2} stroke="currentColor">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18 18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{success && (
|
||||
<div className="mb-4 rounded-md bg-green-50 dark:bg-green-900/20 p-4">
|
||||
<p className="text-sm text-green-800 dark:text-green-300">{success}</p>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Form or List */}
|
||||
{isFormVisible ? (
|
||||
<PromotionForm
|
||||
promotion={selectedPromotion}
|
||||
@@ -171,4 +162,4 @@ export default function PromotionsPage() {
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user