Implement Invoices fetching and uploading
This commit is contained in:
@@ -29,6 +29,14 @@ import { CurrentUser } from '../../common/decorators/current-user.decorator';
|
|||||||
export class InvoicesController {
|
export class InvoicesController {
|
||||||
constructor(private invoicesService: InvoicesService) {}
|
constructor(private invoicesService: InvoicesService) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* قائمة جميع الفواتير للمكتب
|
||||||
|
*/
|
||||||
|
@Get()
|
||||||
|
async findAllByTenant(@CurrentUser() user: any) {
|
||||||
|
return this.invoicesService.findAllByTenant(user.tenantId);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* رفع فاتورة لشركة محددة
|
* رفع فاتورة لشركة محددة
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -89,6 +89,17 @@ export class InvoicesService {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* قائمة جميع الفواتير للمكتب
|
||||||
|
*/
|
||||||
|
async findAllByTenant(tenantId: string): Promise<Invoice[]> {
|
||||||
|
return this.invoiceRepository.find({
|
||||||
|
where: { tenant_id: tenantId },
|
||||||
|
relations: ['company'],
|
||||||
|
order: { created_at: 'DESC' },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* تفاصيل فاتورة
|
* تفاصيل فاتورة
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -4,8 +4,8 @@
|
|||||||
* ════════════════════════════════════════════════════════════
|
* ════════════════════════════════════════════════════════════
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { useState } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
import { motion } from 'framer-motion';
|
import { motion, AnimatePresence } from 'framer-motion';
|
||||||
import {
|
import {
|
||||||
Upload,
|
Upload,
|
||||||
Search,
|
Search,
|
||||||
@@ -16,43 +16,108 @@ import {
|
|||||||
AlertCircle,
|
AlertCircle,
|
||||||
MoreVertical,
|
MoreVertical,
|
||||||
ChevronLeft,
|
ChevronLeft,
|
||||||
ChevronRight
|
ChevronRight,
|
||||||
|
Building2,
|
||||||
|
FileText,
|
||||||
|
Send
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
|
import apiClient from '../../api/client';
|
||||||
|
|
||||||
const invoices = [
|
export const InvoicesPage = () => {
|
||||||
{ id: '1', number: 'INV-2024-001', company: 'شركة الأمل', date: '2024-04-15', total: '150.000', status: 'approved', type: 'cash' },
|
const [invoices, setInvoices] = useState<any[]>([]);
|
||||||
{ id: '2', number: 'INV-2024-002', company: 'سوبرماركت المدينة', date: '2024-04-16', total: '2,400.000', status: 'validated', type: 'credit' },
|
const [companies, setCompanies] = useState<any[]>([]);
|
||||||
{ id: '3', number: 'OCR_PENDING', company: 'مخبز السلام', date: '2024-04-16', total: '0.000', status: 'extracting', type: 'cash' },
|
const [isLoading, setIsLoading] = useState(true);
|
||||||
{ id: '4', number: 'INV-2024-003', company: 'مكتبة النجاح', date: '2024-04-14', total: '85.250', status: 'validation_failed', type: 'cash' },
|
const [searchTerm, setSearchTerm] = useState('');
|
||||||
];
|
const [isUploadModalOpen, setIsUploadModalOpen] = useState(false);
|
||||||
|
|
||||||
|
// Upload Form State
|
||||||
|
const [selectedCompanyId, setSelectedCompanyId] = useState('');
|
||||||
|
const [selectedFile, setSelectedFile] = useState<File | null>(null);
|
||||||
|
const [isUploading, setIsUploading] = useState(false);
|
||||||
|
|
||||||
|
const fetchData = async () => {
|
||||||
|
try {
|
||||||
|
const [invRes, compRes] = await Promise.all([
|
||||||
|
apiClient.get('/invoices'),
|
||||||
|
apiClient.get('/companies')
|
||||||
|
]);
|
||||||
|
setInvoices(invRes.data);
|
||||||
|
setCompanies(compRes.data);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Failed to fetch data', error);
|
||||||
|
} finally {
|
||||||
|
setIsLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetchData();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleUpload = async (e: React.FormEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
if (!selectedCompanyId || !selectedFile) return;
|
||||||
|
|
||||||
|
setIsUploading(true);
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.append('file', selectedFile);
|
||||||
|
|
||||||
|
try {
|
||||||
|
await apiClient.post(`/invoices/upload/${selectedCompanyId}`, formData, {
|
||||||
|
headers: { 'Content-Type': 'multipart/form-data' }
|
||||||
|
});
|
||||||
|
setIsUploadModalOpen(false);
|
||||||
|
setSelectedFile(null);
|
||||||
|
setSelectedCompanyId('');
|
||||||
|
fetchData();
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Upload failed', error);
|
||||||
|
alert('حدث خطأ أثناء رفع الفاتورة');
|
||||||
|
} finally {
|
||||||
|
setIsUploading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleFileChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
|
if (e.target.files && e.target.files[0]) {
|
||||||
|
setSelectedFile(e.target.files[0]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const filteredInvoices = invoices.filter(inv =>
|
||||||
|
inv.invoice_number?.includes(searchTerm) ||
|
||||||
|
inv.company?.name?.includes(searchTerm)
|
||||||
|
);
|
||||||
|
|
||||||
const StatusBadge = ({ status }: { status: string }) => {
|
const StatusBadge = ({ status }: { status: string }) => {
|
||||||
const config: any = {
|
const config: any = {
|
||||||
approved: { color: 'text-emerald-700 bg-emerald-50 border-emerald-100', icon: CheckCircle2, label: 'تم التصديق' },
|
approved: { color: 'text-emerald-700 bg-emerald-50 border-emerald-100', icon: CheckCircle2, label: 'تم التصديق' },
|
||||||
validated: { color: 'text-blue-700 bg-blue-50 border-blue-100', icon: Clock, label: 'جاهز للإرسال' },
|
validated: { color: 'text-blue-700 bg-blue-50 border-blue-100', icon: CheckCircle2, label: 'جاهز للإرسال' },
|
||||||
extracting: { color: 'text-amber-700 bg-amber-50 border-amber-100', icon: Clock, label: 'قيد الاستخراج AI' },
|
extracted: { color: 'text-indigo-700 bg-indigo-50 border-indigo-100', icon: CheckCircle2, label: 'تم الاستخراج' },
|
||||||
|
uploaded: { color: 'text-amber-700 bg-amber-50 border-amber-100', icon: Clock, label: 'قيد المعالجة AI' },
|
||||||
|
extracting: { color: 'text-amber-700 bg-amber-50 border-amber-100', icon: Clock, label: 'قيد الاستخراج' },
|
||||||
validation_failed: { color: 'text-red-700 bg-red-50 border-red-100', icon: AlertCircle, label: 'خطأ في التحقق' },
|
validation_failed: { color: 'text-red-700 bg-red-50 border-red-100', icon: AlertCircle, label: 'خطأ في التحقق' },
|
||||||
};
|
};
|
||||||
const { color, icon: Icon, label } = config[status] || config.extracting;
|
const { color, icon: Icon, label } = config[status] || { color: 'text-slate-500 bg-slate-50', icon: Clock, label: status };
|
||||||
return (
|
return (
|
||||||
<span className={`inline-flex items-center gap-1.5 px-3 py-1 rounded-full text-xs font-bold border ${color}`}>
|
<span className={`inline-flex items-center gap-1.5 px-3 py-1 rounded-full text-[10px] font-bold border ${color} uppercase tracking-tight`}>
|
||||||
<Icon className="w-3.5 h-3.5" />
|
<Icon className="w-3 h-3" />
|
||||||
{label}
|
{label}
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const InvoicesPage = () => {
|
|
||||||
const [searchTerm, setSearchTerm] = useState('');
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="space-y-8 h-full flex flex-col">
|
<div className="space-y-8 h-full flex flex-col animate-in fade-in slide-in-from-bottom-4 duration-700">
|
||||||
<header className="flex items-center justify-between">
|
<header className="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h2 className="text-3xl font-bold text-slate-900">إدارة الفواتير</h2>
|
<h2 className="text-3xl font-bold text-slate-900">إدارة الفواتير</h2>
|
||||||
<p className="text-slate-500 mt-1">عرض، معالجة، وإرسال الفواتير الضريبية لبوابة الضريبة.</p>
|
<p className="text-slate-500 mt-1">عرض، معالجة، وإرسال الفواتير الضريبية لبوابة الضريبة.</p>
|
||||||
</div>
|
</div>
|
||||||
<button className="btn-primary py-3 px-8 rounded-2xl flex items-center gap-2 shadow-xl shadow-primary-500/25 active:scale-95 transition-all">
|
<button
|
||||||
|
onClick={() => setIsUploadModalOpen(true)}
|
||||||
|
className="btn-primary py-3 px-8 rounded-2xl flex items-center gap-2 shadow-xl shadow-primary-500/25 active:scale-95 transition-all"
|
||||||
|
>
|
||||||
<Upload className="w-5 h-5" />
|
<Upload className="w-5 h-5" />
|
||||||
رفع فاتورة جديدة
|
رفع فاتورة جديدة
|
||||||
</button>
|
</button>
|
||||||
@@ -72,27 +137,42 @@ export const InvoicesPage = () => {
|
|||||||
</div>
|
</div>
|
||||||
<button className="glass border-slate-200 px-6 rounded-2xl flex items-center gap-2 text-slate-600 hover:bg-slate-50 transition-all font-semibold">
|
<button className="glass border-slate-200 px-6 rounded-2xl flex items-center gap-2 text-slate-600 hover:bg-slate-50 transition-all font-semibold">
|
||||||
<Filter className="w-4 h-4" />
|
<Filter className="w-4 h-4" />
|
||||||
فلترة متقدمة
|
فلترة
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* ── Invoices Table ───────────────────────────────────── */}
|
{/* ── Invoices Table ───────────────────────────────────── */}
|
||||||
<div className="flex-1 card-premium overflow-hidden flex flex-col bg-white">
|
<div className="flex-1 card-premium overflow-hidden flex flex-col bg-white border border-slate-100">
|
||||||
|
{isLoading ? (
|
||||||
|
<div className="flex-1 flex justify-center items-center">
|
||||||
|
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"></div>
|
||||||
|
</div>
|
||||||
|
) : filteredInvoices.length === 0 ? (
|
||||||
|
<div className="flex-1 flex flex-col items-center justify-center p-20 text-center">
|
||||||
|
<div className="w-24 h-24 bg-slate-50 rounded-full flex items-center justify-center mb-6 border border-slate-100">
|
||||||
|
<FileText className="w-10 h-10 text-slate-300" />
|
||||||
|
</div>
|
||||||
|
<h3 className="text-xl font-bold text-slate-900 mb-2">لا توجد فواتير بعد</h3>
|
||||||
|
<p className="text-slate-500 max-w-sm mb-8">ابدأ برفع أول فاتورة ليقوم محرك الذكاء الاصطناعي باستخراج بياناتها ومصادقتها ضريبياً.</p>
|
||||||
|
<button onClick={() => setIsUploadModalOpen(true)} className="btn-primary py-3 px-8 rounded-2xl flex items-center gap-2">
|
||||||
|
ارفع فاتورتك الأولى
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
<div className="overflow-x-auto">
|
<div className="overflow-x-auto">
|
||||||
<table className="w-full text-right border-collapse">
|
<table className="w-full text-right border-collapse">
|
||||||
<thead className="bg-slate-50/80 border-b border-slate-100">
|
<thead className="bg-slate-50/80 border-b border-slate-100">
|
||||||
<tr>
|
<tr>
|
||||||
<th className="px-6 py-4 text-sm font-bold text-slate-500">رقم الفاتورة</th>
|
<th className="px-6 py-4 text-sm font-bold text-slate-500">رقم الفاتورة</th>
|
||||||
<th className="px-6 py-4 text-sm font-bold text-slate-500">الشركة المصدرة</th>
|
<th className="px-6 py-4 text-sm font-bold text-slate-500">الشركة</th>
|
||||||
<th className="px-6 py-4 text-sm font-bold text-slate-500">التاريخ</th>
|
<th className="px-6 py-4 text-sm font-bold text-slate-500">التاريخ</th>
|
||||||
<th className="px-6 py-4 text-sm font-bold text-slate-500">النوع</th>
|
<th className="px-6 py-4 text-sm font-bold text-slate-500 text-left">المجموع (JOD)</th>
|
||||||
<th className="px-6 py-4 text-sm font-bold text-slate-500">المجموع (JOD)</th>
|
|
||||||
<th className="px-6 py-4 text-sm font-bold text-slate-500">الحالة</th>
|
<th className="px-6 py-4 text-sm font-bold text-slate-500">الحالة</th>
|
||||||
<th className="px-6 py-4 text-sm font-bold text-slate-500 w-20">إجراءات</th>
|
<th className="px-6 py-4 text-sm font-bold text-slate-500 w-20 text-center">إجراءات</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody className="divide-y divide-slate-100">
|
<tbody className="divide-y divide-slate-100">
|
||||||
{invoices.map((inv, idx) => (
|
{filteredInvoices.map((inv, idx) => (
|
||||||
<motion.tr
|
<motion.tr
|
||||||
key={inv.id}
|
key={inv.id}
|
||||||
initial={{ opacity: 0, x: 20 }}
|
initial={{ opacity: 0, x: 20 }}
|
||||||
@@ -100,21 +180,32 @@ export const InvoicesPage = () => {
|
|||||||
transition={{ delay: idx * 0.05 }}
|
transition={{ delay: idx * 0.05 }}
|
||||||
className="hover:bg-slate-50/50 transition-colors group cursor-pointer"
|
className="hover:bg-slate-50/50 transition-colors group cursor-pointer"
|
||||||
>
|
>
|
||||||
<td className="px-6 py-4 font-bold text-slate-900">{inv.number}</td>
|
<td className="px-6 py-4 font-bold text-slate-900">{inv.invoice_number || '---'}</td>
|
||||||
<td className="px-6 py-4 text-slate-600 font-medium">{inv.company}</td>
|
<td className="px-6 py-4 text-slate-600 font-medium">
|
||||||
<td className="px-6 py-4 text-slate-500 text-sm">{inv.date}</td>
|
<div className="flex items-center gap-2">
|
||||||
<td className="px-6 py-4">
|
<div className="w-7 h-7 bg-slate-100 rounded-md flex items-center justify-center">
|
||||||
<span className={`text-[11px] font-bold px-2 py-0.5 rounded uppercase tracking-wider ${inv.type === 'cash' ? 'bg-indigo-50 text-indigo-600' : 'bg-orange-50 text-orange-600'}`}>
|
<Building2 className="w-4 h-4 text-slate-400" />
|
||||||
{inv.type === 'cash' ? 'نقدي' : 'ذمم'}
|
</div>
|
||||||
</span>
|
{inv.company?.name || 'شركة غير معروفة'}
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td className="px-6 py-4 text-slate-500 text-sm">
|
||||||
|
{inv.issue_date ? new Date(inv.issue_date).toLocaleDateString('ar-JO') : '---'}
|
||||||
|
</td>
|
||||||
|
<td className="px-6 py-4 font-mono font-bold text-slate-800 text-left">
|
||||||
|
{Number(inv.total_amount).toLocaleString('en-US', { minimumFractionDigits: 3 })}
|
||||||
</td>
|
</td>
|
||||||
<td className="px-6 py-4 font-mono font-bold text-slate-800">{inv.total}</td>
|
|
||||||
<td className="px-6 py-4"><StatusBadge status={inv.status} /></td>
|
<td className="px-6 py-4"><StatusBadge status={inv.status} /></td>
|
||||||
<td className="px-6 py-4 text-center">
|
<td className="px-6 py-4 text-center">
|
||||||
<div className="flex items-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity">
|
<div className="flex items-center justify-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity">
|
||||||
<button className="p-2 text-slate-400 hover:text-primary-600 hover:bg-primary-50 rounded-lg transition-all">
|
<button className="p-2 text-slate-400 hover:text-primary-600 hover:bg-primary-50 rounded-lg transition-all">
|
||||||
<Eye className="w-4 h-4" />
|
<Eye className="w-4 h-4" />
|
||||||
</button>
|
</button>
|
||||||
|
{inv.status === 'validated' && (
|
||||||
|
<button className="p-2 text-emerald-500 hover:text-emerald-600 hover:bg-emerald-50 rounded-lg transition-all" title="إرسال لجو فوترة">
|
||||||
|
<Send className="w-4 h-4" />
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
<button className="p-2 text-slate-400 hover:text-slate-600 hover:bg-slate-100 rounded-lg transition-all">
|
<button className="p-2 text-slate-400 hover:text-slate-600 hover:bg-slate-100 rounded-lg transition-all">
|
||||||
<MoreVertical className="w-4 h-4" />
|
<MoreVertical className="w-4 h-4" />
|
||||||
</button>
|
</button>
|
||||||
@@ -125,24 +216,12 @@ export const InvoicesPage = () => {
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* ── Empty State Mock (Hidden if data exists) ───────────── */}
|
|
||||||
{invoices.length === 0 && (
|
|
||||||
<div className="flex-1 flex flex-col items-center justify-center p-20 text-center">
|
|
||||||
<div className="w-24 h-24 bg-slate-50 rounded-full flex items-center justify-center mb-6 border border-slate-100">
|
|
||||||
<Upload className="w-10 h-10 text-slate-300" />
|
|
||||||
</div>
|
|
||||||
<h3 className="text-xl font-bold text-slate-900 mb-2">لا توجد فواتير بعد</h3>
|
|
||||||
<p className="text-slate-500 max-w-sm mb-8">ابدأ برفع أول فاتورة ليقوم محرك الذكاء الاصطناعي باستخراج بياناتها ومصادقتها ضريبياً.</p>
|
|
||||||
<button className="btn-primary py-3 px-8 rounded-2xl flex items-center gap-2">
|
|
||||||
ارفع فاتورتك الأولى
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* ── Pagination ───────────────────────────────────────── */}
|
{/* ── Pagination ───────────────────────────────────────── */}
|
||||||
|
{!isLoading && filteredInvoices.length > 0 && (
|
||||||
<footer className="px-6 py-4 bg-slate-50/50 border-t border-slate-100 flex items-center justify-between">
|
<footer className="px-6 py-4 bg-slate-50/50 border-t border-slate-100 flex items-center justify-between">
|
||||||
<p className="text-sm text-slate-500">عرض 1-10 من أصل 1,280 فاتورة</p>
|
<p className="text-sm text-slate-500">عرض {filteredInvoices.length} فواتير</p>
|
||||||
<div className="flex gap-2">
|
<div className="flex gap-2">
|
||||||
<button className="p-2 text-slate-400 hover:text-slate-600 disabled:opacity-30 border border-slate-200 rounded-xl bg-white shadow-sm">
|
<button className="p-2 text-slate-400 hover:text-slate-600 disabled:opacity-30 border border-slate-200 rounded-xl bg-white shadow-sm">
|
||||||
<ChevronRight className="w-5 h-5" />
|
<ChevronRight className="w-5 h-5" />
|
||||||
@@ -152,7 +231,93 @@ export const InvoicesPage = () => {
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* ── Upload Modal ─────────────────────────────────────── */}
|
||||||
|
<AnimatePresence>
|
||||||
|
{isUploadModalOpen && (
|
||||||
|
<div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-slate-900/60 backdrop-blur-sm">
|
||||||
|
<motion.div
|
||||||
|
initial={{ scale: 0.9, opacity: 0 }}
|
||||||
|
animate={{ scale: 1, opacity: 1 }}
|
||||||
|
exit={{ scale: 0.9, opacity: 0 }}
|
||||||
|
className="bg-white rounded-[32px] p-8 w-full max-w-xl shadow-2xl overflow-hidden relative"
|
||||||
|
>
|
||||||
|
<div className="absolute top-0 right-0 w-32 h-32 bg-primary-50 rounded-full -mr-16 -mt-16 opacity-50" />
|
||||||
|
|
||||||
|
<h3 className="text-2xl font-bold text-slate-900 mb-2 relative">رفع فاتورة جديدة</h3>
|
||||||
|
<p className="text-slate-500 mb-8 relative">اختر الشركة وملف الفاتورة (PDF أو صورة) وسيقوم الذكاء الاصطناعي بالباقي.</p>
|
||||||
|
|
||||||
|
<form onSubmit={handleUpload} className="space-y-6 relative">
|
||||||
|
<div>
|
||||||
|
<label className="block text-sm font-bold text-slate-700 mb-2">اختر الشركة</label>
|
||||||
|
<select
|
||||||
|
required
|
||||||
|
value={selectedCompanyId}
|
||||||
|
onChange={e => setSelectedCompanyId(e.target.value)}
|
||||||
|
className="w-full bg-slate-50 border border-slate-200 rounded-2xl px-5 py-4 outline-none focus:border-primary-500 focus:ring-4 focus:ring-primary-500/10 transition-all appearance-none cursor-pointer"
|
||||||
|
>
|
||||||
|
<option value="">-- اختر شركة --</option>
|
||||||
|
{companies.map(c => (
|
||||||
|
<option key={c.id} value={c.id}>{c.name}</option>
|
||||||
|
))}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label className="block text-sm font-bold text-slate-700 mb-2">ملف الفاتورة</label>
|
||||||
|
<div className="relative group">
|
||||||
|
<input
|
||||||
|
type="file"
|
||||||
|
required
|
||||||
|
onChange={handleFileChange}
|
||||||
|
accept=".pdf,image/*"
|
||||||
|
className="absolute inset-0 w-full h-full opacity-0 cursor-pointer z-10"
|
||||||
|
/>
|
||||||
|
<div className="border-2 border-dashed border-slate-200 rounded-2xl p-10 flex flex-col items-center group-hover:border-primary-400 group-hover:bg-primary-50/30 transition-all bg-slate-50/50">
|
||||||
|
<div className="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
|
||||||
|
<Upload className="w-7 h-7 text-primary-600" />
|
||||||
|
</div>
|
||||||
|
<p className="font-bold text-slate-800">
|
||||||
|
{selectedFile ? selectedFile.name : 'اسحب الملف هنا أو انقر للاختيار'}
|
||||||
|
</p>
|
||||||
|
<p className="text-sm text-slate-400 mt-1">PDF, JPG, PNG (حد أقصى 10MB)</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex gap-4 pt-4">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => setIsUploadModalOpen(false)}
|
||||||
|
className="flex-1 bg-slate-100 text-slate-700 font-bold py-4 rounded-2xl hover:bg-slate-200 transition-all"
|
||||||
|
>
|
||||||
|
إلغاء
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
disabled={isUploading || !selectedCompanyId || !selectedFile}
|
||||||
|
className="flex-[2] btn-primary py-4 rounded-2xl shadow-lg shadow-primary-500/30 disabled:opacity-50 flex items-center justify-center gap-3"
|
||||||
|
>
|
||||||
|
{isUploading ? (
|
||||||
|
<>
|
||||||
|
<div className="w-5 h-5 border-2 border-white/30 border-t-white rounded-full animate-spin" />
|
||||||
|
جاري الرفع والمعالجة...
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<Upload className="w-5 h-5" />
|
||||||
|
ابدأ المعالجة الآن
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</motion.div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</AnimatePresence>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user