734 lines
28 KiB
JavaScript
734 lines
28 KiB
JavaScript
'use client';
|
|
|
|
import { useState, useEffect } from 'react';
|
|
import { motion, AnimatePresence } from 'framer-motion';
|
|
import { useRouter } from 'next/navigation';
|
|
import Link from 'next/link';
|
|
import { useTranslation } from 'react-i18next';
|
|
import {
|
|
Calendar,
|
|
Home,
|
|
User,
|
|
Mail,
|
|
Phone,
|
|
DollarSign,
|
|
CheckCircle,
|
|
XCircle,
|
|
Clock,
|
|
MapPin,
|
|
Bed,
|
|
Bath,
|
|
Square,
|
|
CalendarDays,
|
|
ChevronLeft,
|
|
ChevronRight,
|
|
Eye,
|
|
MessageCircle,
|
|
ArrowLeft,
|
|
Loader2,
|
|
Filter,
|
|
Search,
|
|
Download,
|
|
TrendingUp,
|
|
Users,
|
|
Building
|
|
} from 'lucide-react';
|
|
import toast, { Toaster } from 'react-hot-toast';
|
|
import AuthService from '../../services/AuthService';
|
|
import Image from 'next/image';
|
|
|
|
const OwnerBookingCalendar = ({ property, onDateSelect, selectedDates }) => {
|
|
const { t } = useTranslation();
|
|
const [currentMonth, setCurrentMonth] = useState(new Date());
|
|
const [hoverDate, setHoverDate] = useState(null);
|
|
|
|
const daysInMonth = new Date(
|
|
currentMonth.getFullYear(),
|
|
currentMonth.getMonth() + 1,
|
|
0
|
|
).getDate();
|
|
|
|
const firstDayOfMonth = new Date(
|
|
currentMonth.getFullYear(),
|
|
currentMonth.getMonth(),
|
|
1
|
|
).getDay();
|
|
|
|
const monthNames = [
|
|
t('january'), t('february'), t('march'), t('april'), t('may'), t('june'),
|
|
t('july'), t('august'), t('september'), t('october'), t('november'), t('december')
|
|
];
|
|
|
|
const dayNames = [
|
|
t('dayFull.sunday'), t('dayFull.monday'), t('dayFull.tuesday'), t('dayFull.wednesday'),
|
|
t('dayFull.thursday'), t('dayFull.friday'), t('dayFull.saturday')
|
|
];
|
|
|
|
const isDateBooked = (date) => {
|
|
if (!property?.bookings) return false;
|
|
const dateStr = date.toISOString().split('T')[0];
|
|
return property.bookings.some(booking => {
|
|
const start = new Date(booking.startDate);
|
|
const end = new Date(booking.endDate);
|
|
const current = new Date(date);
|
|
return current >= start && current <= end;
|
|
});
|
|
};
|
|
|
|
const isDateSelected = (date) => {
|
|
if (!selectedDates) return false;
|
|
const dateStr = date.toISOString().split('T')[0];
|
|
return dateStr === selectedDates.start || dateStr === selectedDates.end;
|
|
};
|
|
|
|
const isInRange = (date) => {
|
|
if (!selectedDates?.start || !selectedDates?.end) return false;
|
|
const dateStr = date.toISOString().split('T')[0];
|
|
return dateStr > selectedDates.start && dateStr < selectedDates.end;
|
|
};
|
|
|
|
const handleDateClick = (date) => {
|
|
if (isDateBooked(date)) return;
|
|
onDateSelect?.(date);
|
|
};
|
|
|
|
const renderDays = () => {
|
|
const days = [];
|
|
const totalDays = daysInMonth + firstDayOfMonth;
|
|
|
|
for (let i = 0; i < totalDays; i++) {
|
|
if (i < firstDayOfMonth) {
|
|
days.push(<div key={`empty-${i}`} className="p-2" />);
|
|
} else {
|
|
const dayNumber = i - firstDayOfMonth + 1;
|
|
const date = new Date(
|
|
currentMonth.getFullYear(),
|
|
currentMonth.getMonth(),
|
|
dayNumber
|
|
);
|
|
|
|
const isBooked = isDateBooked(date);
|
|
const isSelected = isDateSelected(date);
|
|
const inRange = isInRange(date);
|
|
const isToday = date.toDateString() === new Date().toDateString();
|
|
|
|
days.push(
|
|
<button
|
|
key={dayNumber}
|
|
onClick={() => handleDateClick(date)}
|
|
disabled={isBooked}
|
|
onMouseEnter={() => setHoverDate(dayNumber)}
|
|
onMouseLeave={() => setHoverDate(null)}
|
|
className={`
|
|
p-2 rounded-lg text-center text-sm transition-all relative
|
|
${isBooked ? 'bg-red-100 text-red-500 cursor-not-allowed line-through' : ''}
|
|
${isSelected ? 'bg-amber-500 text-white shadow-md' : ''}
|
|
${inRange ? 'bg-amber-100' : ''}
|
|
${!isBooked && !isSelected ? 'hover:bg-amber-50 hover:text-amber-600 cursor-pointer' : ''}
|
|
${isToday && !isSelected && !isBooked ? 'border-2 border-amber-500' : ''}
|
|
`}
|
|
>
|
|
{dayNumber}
|
|
{isBooked && (
|
|
<span className="absolute -top-1 -right-1 w-2 h-2 bg-red-500 rounded-full" />
|
|
)}
|
|
</button>
|
|
);
|
|
}
|
|
}
|
|
return days;
|
|
};
|
|
|
|
return (
|
|
<div className="bg-white rounded-2xl shadow-sm border border-gray-200 p-6">
|
|
<div className="flex items-center justify-between mb-6">
|
|
<button
|
|
onClick={() => setCurrentMonth(new Date(currentMonth.getFullYear(), currentMonth.getMonth() - 1, 1))}
|
|
className="p-2 hover:bg-gray-100 rounded-xl transition-colors"
|
|
>
|
|
<ChevronRight className="w-5 h-5 text-gray-600" />
|
|
</button>
|
|
|
|
<h3 className="text-lg font-bold text-gray-900 flex items-center gap-2">
|
|
<CalendarDays className="w-5 h-5 text-amber-500" />
|
|
{monthNames[currentMonth.getMonth()]} {currentMonth.getFullYear()}
|
|
</h3>
|
|
|
|
<button
|
|
onClick={() => setCurrentMonth(new Date(currentMonth.getFullYear(), currentMonth.getMonth() + 1, 1))}
|
|
className="p-2 hover:bg-gray-100 rounded-xl transition-colors"
|
|
>
|
|
<ChevronLeft className="w-5 h-5 text-gray-600" />
|
|
</button>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-7 gap-1 mb-3 text-center text-sm font-medium text-gray-500">
|
|
{dayNames.map((name, i) => (
|
|
<div key={i}>{name}</div>
|
|
))}
|
|
</div>
|
|
|
|
<div className="grid grid-cols-7 gap-1">
|
|
{renderDays()}
|
|
</div>
|
|
|
|
<div className="flex flex-wrap gap-4 mt-6 pt-4 border-t border-gray-200 text-xs">
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-3 h-3 bg-red-100 rounded" />
|
|
<span className="text-gray-600">{t('booked')}</span>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-3 h-3 bg-amber-500 rounded" />
|
|
<span className="text-gray-600">{t('selected')}</span>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-3 h-3 bg-amber-100 rounded" />
|
|
<span className="text-gray-600">{t('inRange')}</span>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-3 h-3 border-2 border-amber-500 rounded" />
|
|
<span className="text-gray-600">{t('today')}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const BookingCard = ({ booking, onViewDetails, onContact }) => {
|
|
const { t } = useTranslation();
|
|
|
|
const formatCurrency = (amount) => {
|
|
return amount?.toLocaleString() + ' ' + t('syp');
|
|
};
|
|
|
|
const getStatusBadge = (status) => {
|
|
const statusConfig = {
|
|
pending: { label: t('pending'), color: 'bg-yellow-100 text-yellow-800', icon: Clock },
|
|
confirmed: { label: t('confirmed'), color: 'bg-green-100 text-green-800', icon: CheckCircle },
|
|
cancelled: { label: t('cancelled'), color: 'bg-red-100 text-red-800', icon: XCircle },
|
|
completed: { label: t('completed'), color: 'bg-gray-100 text-gray-800', icon: CheckCircle }
|
|
};
|
|
|
|
const config = statusConfig[status] || statusConfig.pending;
|
|
const Icon = config.icon;
|
|
|
|
return (
|
|
<span className={`inline-flex items-center gap-1 px-2 py-1 rounded-lg text-xs font-medium ${config.color}`}>
|
|
<Icon className="w-3 h-3" />
|
|
{config.label}
|
|
</span>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
className="bg-white rounded-2xl shadow-sm hover:shadow-md transition-all border border-gray-200 overflow-hidden"
|
|
>
|
|
<div className="p-5">
|
|
<div className="flex justify-between items-start mb-4">
|
|
<div>
|
|
<div className="flex items-center gap-2 mb-2">
|
|
<h3 className="font-bold text-gray-900">{booking.propertyTitle}</h3>
|
|
{getStatusBadge(booking.status)}
|
|
</div>
|
|
<div className="flex items-center gap-1 text-gray-500 text-sm">
|
|
<MapPin className="w-4 h-4" />
|
|
{booking.location}
|
|
</div>
|
|
</div>
|
|
<div className="text-left">
|
|
<div className="text-lg font-bold text-amber-600">{formatCurrency(booking.totalAmount)}</div>
|
|
<div className="text-xs text-gray-500">{t('totalAmount')}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bg-gray-50 rounded-xl p-3 mb-4">
|
|
<div className="flex items-center gap-3">
|
|
<div className="w-10 h-10 bg-amber-100 rounded-full flex items-center justify-center">
|
|
<User className="w-5 h-5 text-amber-600" />
|
|
</div>
|
|
<div>
|
|
<p className="font-medium text-gray-900">{booking.tenantName}</p>
|
|
<div className="flex items-center gap-2 text-xs text-gray-500">
|
|
<Phone className="w-3 h-3" />
|
|
{booking.tenantPhone}
|
|
<Mail className="w-3 h-3 mr-1" />
|
|
{booking.tenantEmail}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-3 gap-3 mb-4 text-center">
|
|
<div className="bg-gray-50 p-2 rounded-lg">
|
|
<Calendar className="w-4 h-4 text-amber-500 mx-auto mb-1" />
|
|
<div className="text-xs text-gray-500">{t('from')}</div>
|
|
<div className="text-sm font-medium">{booking.startDate}</div>
|
|
</div>
|
|
<div className="bg-gray-50 p-2 rounded-lg">
|
|
<Calendar className="w-4 h-4 text-amber-500 mx-auto mb-1" />
|
|
<div className="text-xs text-gray-500">{t('to')}</div>
|
|
<div className="text-sm font-medium">{booking.endDate}</div>
|
|
</div>
|
|
<div className="bg-gray-50 p-2 rounded-lg">
|
|
<Clock className="w-4 h-4 text-amber-500 mx-auto mb-1" />
|
|
<div className="text-xs text-gray-500">{t('duration')}</div>
|
|
<div className="text-sm font-medium">{booking.days} {t('days')}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex gap-3 pt-3 border-t border-gray-100">
|
|
<button
|
|
onClick={() => onViewDetails(booking)}
|
|
className="flex-1 bg-gray-100 text-gray-700 py-2 rounded-xl text-sm font-medium hover:bg-gray-200 transition-colors flex items-center justify-center gap-2"
|
|
>
|
|
<Eye className="w-4 h-4" />
|
|
{t('details')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</motion.div>
|
|
);
|
|
};
|
|
|
|
const BookingDetailsModal = ({ booking, isOpen, onClose }) => {
|
|
const { t } = useTranslation();
|
|
if (!isOpen || !booking) return null;
|
|
|
|
const formatCurrency = (amount) => {
|
|
return amount?.toLocaleString() + ' ' + t('syp');
|
|
};
|
|
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1 }}
|
|
exit={{ opacity: 0 }}
|
|
className="fixed inset-0 bg-black/50 backdrop-blur-sm flex items-center justify-center p-4 z-50"
|
|
onClick={onClose}
|
|
>
|
|
<motion.div
|
|
initial={{ scale: 0.9, y: 20 }}
|
|
animate={{ scale: 1, y: 0 }}
|
|
exit={{ scale: 0.9, y: 20 }}
|
|
className="bg-white rounded-2xl w-full max-w-2xl max-h-[90vh] overflow-y-auto shadow-2xl"
|
|
onClick={(e) => e.stopPropagation()}
|
|
>
|
|
<div className="sticky top-0 bg-gradient-to-r from-amber-500 to-amber-600 p-6 text-white">
|
|
<div className="flex justify-between items-center">
|
|
<h2 className="text-xl font-bold">{t('bookingDetails')}</h2>
|
|
<button onClick={onClose} className="p-1 hover:bg-white/20 rounded-full">
|
|
<XCircle className="w-6 h-6" />
|
|
</button>
|
|
</div>
|
|
<p className="text-amber-100 text-sm mt-1">{t('bookingId', { id: booking.id })}</p>
|
|
</div>
|
|
|
|
<div className="p-6 space-y-6">
|
|
<div className="bg-gray-50 p-4 rounded-xl">
|
|
<h3 className="font-bold text-gray-900 mb-3">{t('propertyInfo')}</h3>
|
|
<div className="space-y-2">
|
|
<p><span className="text-gray-500">{t('property')}:</span> {booking.propertyTitle}</p>
|
|
<p><span className="text-gray-500">{t('location')}:</span> {booking.location}</p>
|
|
{booking.propertyDetails && (
|
|
<div className="flex gap-3 mt-2">
|
|
<span className="text-sm bg-white px-2 py-1 rounded-lg">{booking.propertyDetails.bedrooms} {t('rooms')}</span>
|
|
<span className="text-sm bg-white px-2 py-1 rounded-lg">{booking.propertyDetails.bathrooms} {t('bathrooms')}</span>
|
|
<span className="text-sm bg-white px-2 py-1 rounded-lg">{booking.propertyDetails.area} {t('sqm')}</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bg-gray-50 p-4 rounded-xl">
|
|
<h3 className="font-bold text-gray-900 mb-3">{t('tenantInfo')}</h3>
|
|
<div className="space-y-2">
|
|
<p><span className="text-gray-500">{t('name')}</span> {booking.tenantName}</p>
|
|
<p><span className="text-gray-500">{t('email')}</span> {booking.tenantEmail}</p>
|
|
<p><span className="text-gray-500">{t('phone')}</span> {booking.tenantPhone}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bg-gray-50 p-4 rounded-xl">
|
|
<h3 className="font-bold text-gray-900 mb-3">{t('bookingDetails')}</h3>
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div>
|
|
<p className="text-gray-500">{t('startDate')}</p>
|
|
<p className="font-medium">{booking.startDate}</p>
|
|
</div>
|
|
<div>
|
|
<p className="text-gray-500">{t('endDate')}</p>
|
|
<p className="font-medium">{booking.endDate}</p>
|
|
</div>
|
|
<div>
|
|
<p className="text-gray-500">{t('durationDays', { days: booking.days })}</p>
|
|
<p className="font-medium">{booking.days} {t('days')}</p>
|
|
</div>
|
|
<div>
|
|
<p className="text-gray-500">{t('bookingStatus')}</p>
|
|
<p className="font-medium">{booking.status === 'pending' ? t('pending') :
|
|
booking.status === 'confirmed' ? t('confirmed') :
|
|
booking.status === 'cancelled' ? t('cancelled') : t('completed')}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bg-amber-50 p-4 rounded-xl">
|
|
<h3 className="font-bold text-amber-700 mb-3">{t('financialInfo')}</h3>
|
|
<div className="space-y-2">
|
|
<div className="flex justify-between">
|
|
<span className="text-gray-600">{t('dailyPrice')}</span>
|
|
<span className="font-medium">{formatCurrency(booking.dailyPrice)}</span>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<span className="text-gray-600">{t('durationDays', { days: booking.days })}</span>
|
|
<span className="font-medium">{formatCurrency(booking.dailyPrice * booking.days)}</span>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<span className="text-gray-600">{t('securityDeposit')}</span>
|
|
<span className="font-medium">{formatCurrency(booking.securityDeposit || 0)}</span>
|
|
</div>
|
|
<div className="flex justify-between pt-2 border-t border-amber-200 font-bold">
|
|
<span className="text-gray-900">{t('total')}</span>
|
|
<span className="text-amber-600 text-lg">{formatCurrency(booking.totalAmount)}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{booking.notes && (
|
|
<div className="bg-gray-50 p-4 rounded-xl">
|
|
<h3 className="font-bold text-gray-900 mb-2">{t('notes')}</h3>
|
|
<p className="text-gray-600">{booking.notes}</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</motion.div>
|
|
</motion.div>
|
|
);
|
|
};
|
|
|
|
export default function OwnerBookingsPage() {
|
|
const { t, i18n } = useTranslation();
|
|
const router = useRouter();
|
|
const [user, setUser] = useState(null);
|
|
const [bookings, setBookings] = useState([]);
|
|
const [filteredBookings, setFilteredBookings] = useState([]);
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
const [selectedBooking, setSelectedBooking] = useState(null);
|
|
const [filterStatus, setFilterStatus] = useState('all');
|
|
const [searchTerm, setSearchTerm] = useState('');
|
|
const [dateRange, setDateRange] = useState({ start: '', end: '' });
|
|
const [showCalendar, setShowCalendar] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const authUser = AuthService.getUser();
|
|
if (authUser && AuthService.isOwner()) {
|
|
setUser({
|
|
name: authUser.name || authUser.email,
|
|
email: authUser.email,
|
|
role: 'owner',
|
|
});
|
|
loadBookings();
|
|
} else {
|
|
router.push('/auth/choose-role');
|
|
}
|
|
}, [router]);
|
|
|
|
|
|
const loadBookings = () => {
|
|
const storedBookings = localStorage.getItem('ownerBookings');
|
|
if (storedBookings) {
|
|
setBookings(JSON.parse(storedBookings));
|
|
setFilteredBookings(JSON.parse(storedBookings));
|
|
} else {
|
|
const mockBookings = [
|
|
{
|
|
id: 'BK001',
|
|
propertyId: 1,
|
|
propertyTitle: t('ownerBookings.mockB1Title'),
|
|
location: t('ownerBookings.mockB1Location'),
|
|
propertyDetails: { bedrooms: 5, bathrooms: 4, area: 450 },
|
|
tenantName: t('ownerBookings.mockB1Tenant'),
|
|
tenantEmail: 'ahmed@example.com',
|
|
tenantPhone: '0933111222',
|
|
startDate: '2024-03-10',
|
|
endDate: '2024-03-15',
|
|
days: 5,
|
|
dailyPrice: 500000,
|
|
totalAmount: 2500000,
|
|
securityDeposit: 500000,
|
|
status: 'confirmed',
|
|
createdAt: '2024-02-25',
|
|
notes: t('ownerBookings.mockB1Notes')
|
|
},
|
|
{
|
|
id: 'BK002',
|
|
propertyId: 2,
|
|
propertyTitle: t('ownerBookings.mockB2Title'),
|
|
location: t('ownerBookings.mockB2Location'),
|
|
propertyDetails: { bedrooms: 3, bathrooms: 2, area: 180 },
|
|
tenantName: t('ownerBookings.mockB2Tenant'),
|
|
tenantEmail: 'sara@example.com',
|
|
tenantPhone: '0945123789',
|
|
startDate: '2024-03-05',
|
|
endDate: '2024-03-08',
|
|
days: 3,
|
|
dailyPrice: 250000,
|
|
totalAmount: 750000,
|
|
securityDeposit: 250000,
|
|
status: 'pending',
|
|
createdAt: '2024-02-24',
|
|
notes: t('ownerBookings.mockB2Notes')
|
|
},
|
|
{
|
|
id: 'BK003',
|
|
propertyId: 3,
|
|
propertyTitle: t('ownerBookings.mockB3Title'),
|
|
location: t('ownerBookings.mockB3Location'),
|
|
propertyDetails: { bedrooms: 4, bathrooms: 3, area: 300 },
|
|
tenantName: t('ownerBookings.mockB3Tenant'),
|
|
tenantEmail: 'mohammed@example.com',
|
|
tenantPhone: '0956123456',
|
|
startDate: '2024-02-20',
|
|
endDate: '2024-03-20',
|
|
days: 30,
|
|
dailyPrice: 350000,
|
|
totalAmount: 10500000,
|
|
securityDeposit: 500000,
|
|
status: 'completed',
|
|
createdAt: '2024-02-15',
|
|
notes: t('ownerBookings.mockB3Notes')
|
|
}
|
|
];
|
|
setBookings(mockBookings);
|
|
setFilteredBookings(mockBookings);
|
|
localStorage.setItem('ownerBookings', JSON.stringify(mockBookings));
|
|
}
|
|
setIsLoading(false);
|
|
};
|
|
|
|
|
|
|
|
const handleViewDetails = (booking) => {
|
|
setSelectedBooking(booking);
|
|
};
|
|
|
|
const handleContact = (booking) => {
|
|
toast.success(t('openingChat', { name: booking.tenantName }), {
|
|
icon: '💬',
|
|
style: { background: '#dcfce7', color: '#166534' }
|
|
});
|
|
};
|
|
|
|
const handleStatusChange = (bookingId, newStatus) => {
|
|
const updatedBookings = bookings.map(b =>
|
|
b.id === bookingId ? { ...b, status: newStatus } : b
|
|
);
|
|
setBookings(updatedBookings);
|
|
setFilteredBookings(updatedBookings);
|
|
localStorage.setItem('ownerBookings', JSON.stringify(updatedBookings));
|
|
toast.success(t('statusUpdated'));
|
|
};
|
|
|
|
const statusCounts = {
|
|
all: bookings.length,
|
|
pending: bookings.filter(b => b.status === 'pending').length,
|
|
confirmed: bookings.filter(b => b.status === 'confirmed').length,
|
|
completed: bookings.filter(b => b.status === 'completed').length,
|
|
cancelled: bookings.filter(b => b.status === 'cancelled').length
|
|
};
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 flex items-center justify-center">
|
|
<div className="text-center">
|
|
<Loader2 className="w-12 h-12 text-amber-500 animate-spin mx-auto mb-4" />
|
|
<p className="text-gray-600">{t('loading')}</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 py-8" dir={i18n.language === 'ar' ? 'rtl' : 'ltr'}>
|
|
<Toaster position="top-center" reverseOrder={false} />
|
|
|
|
<BookingDetailsModal
|
|
booking={selectedBooking}
|
|
isOpen={!!selectedBooking}
|
|
onClose={() => setSelectedBooking(null)}
|
|
/>
|
|
|
|
<div className="container mx-auto px-4">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: -20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
className="flex flex-col md:flex-row justify-between items-start md:items-center mb-8 gap-4"
|
|
>
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-gray-900 mb-2">{t('myBookings')}</h1>
|
|
<p className="text-gray-600">{t('welcomeBookings', { name: user?.name, count: bookings.length })}</p>
|
|
</div>
|
|
|
|
<div className="flex gap-3">
|
|
<button
|
|
onClick={() => setShowCalendar(!showCalendar)}
|
|
className="px-4 py-2 bg-white border border-gray-300 rounded-xl text-gray-700 hover:bg-gray-50 transition-colors flex items-center gap-2"
|
|
>
|
|
<Calendar className="w-5 h-5" />
|
|
{showCalendar ? t('hideCalendar') : t('showCalendar')}
|
|
</button>
|
|
</div>
|
|
</motion.div>
|
|
|
|
<div className="grid grid-cols-2 md:grid-cols-5 gap-4 mb-8">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ delay: 0.1 }}
|
|
className="bg-white rounded-xl shadow-sm p-4 text-center border border-gray-200 cursor-pointer hover:shadow-md transition-all"
|
|
onClick={() => setFilterStatus('all')}
|
|
>
|
|
<div className="text-2xl font-bold text-gray-900">{statusCounts.all}</div>
|
|
<div className="text-sm text-gray-600">{t('allBookings')}</div>
|
|
</motion.div>
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ delay: 0.2 }}
|
|
className={`bg-white rounded-xl shadow-sm p-4 text-center border cursor-pointer hover:shadow-md transition-all ${
|
|
filterStatus === 'pending' ? 'border-yellow-500 bg-yellow-50' : 'border-gray-200'
|
|
}`}
|
|
onClick={() => setFilterStatus('pending')}
|
|
>
|
|
<div className="text-2xl font-bold text-yellow-600">{statusCounts.pending}</div>
|
|
<div className="text-sm text-gray-600">{t('pending')}</div>
|
|
</motion.div>
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ delay: 0.3 }}
|
|
className={`bg-white rounded-xl shadow-sm p-4 text-center border cursor-pointer hover:shadow-md transition-all ${
|
|
filterStatus === 'confirmed' ? 'border-green-500 bg-green-50' : 'border-gray-200'
|
|
}`}
|
|
onClick={() => setFilterStatus('confirmed')}
|
|
>
|
|
<div className="text-2xl font-bold text-green-600">{statusCounts.confirmed}</div>
|
|
<div className="text-sm text-gray-600">{t('confirmed')}</div>
|
|
</motion.div>
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ delay: 0.4 }}
|
|
className={`bg-white rounded-xl shadow-sm p-4 text-center border cursor-pointer hover:shadow-md transition-all ${
|
|
filterStatus === 'completed' ? 'border-gray-500 bg-gray-50' : 'border-gray-200'
|
|
}`}
|
|
onClick={() => setFilterStatus('completed')}
|
|
>
|
|
<div className="text-2xl font-bold text-gray-600">{statusCounts.completed}</div>
|
|
<div className="text-sm text-gray-600">{t('completed')}</div>
|
|
</motion.div>
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ delay: 0.5 }}
|
|
className={`bg-white rounded-xl shadow-sm p-4 text-center border cursor-pointer hover:shadow-md transition-all ${
|
|
filterStatus === 'cancelled' ? 'border-red-500 bg-red-50' : 'border-gray-200'
|
|
}`}
|
|
onClick={() => setFilterStatus('cancelled')}
|
|
>
|
|
<div className="text-2xl font-bold text-red-600">{statusCounts.cancelled}</div>
|
|
<div className="text-sm text-gray-600">{t('cancelled')}</div>
|
|
</motion.div>
|
|
</div>
|
|
|
|
<div className="flex flex-col md:flex-row gap-4 mb-6">
|
|
<div className="flex-1 relative">
|
|
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" />
|
|
<input
|
|
type="text"
|
|
placeholder={t('searchBookings')}
|
|
value={searchTerm}
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
|
className="w-full pl-10 pr-4 py-3 border border-gray-300 rounded-xl focus:outline-none focus:ring-2 focus:ring-amber-500"
|
|
/>
|
|
</div>
|
|
<div className="flex gap-3">
|
|
<input
|
|
type="date"
|
|
value={dateRange.start}
|
|
onChange={(e) => setDateRange({...dateRange, start: e.target.value})}
|
|
className="px-4 py-3 border border-gray-300 rounded-xl focus:outline-none focus:ring-2 focus:ring-amber-500"
|
|
placeholder={t('filterDateFrom')}
|
|
/>
|
|
<input
|
|
type="date"
|
|
value={dateRange.end}
|
|
onChange={(e) => setDateRange({...dateRange, end: e.target.value})}
|
|
className="px-4 py-3 border border-gray-300 rounded-xl focus:outline-none focus:ring-2 focus:ring-amber-500"
|
|
placeholder={t('filterDateTo')}
|
|
/>
|
|
{(dateRange.start || dateRange.end) && (
|
|
<button
|
|
onClick={() => setDateRange({ start: '', end: '' })}
|
|
className="px-4 py-3 bg-gray-100 text-gray-700 rounded-xl hover:bg-gray-200 transition-colors"
|
|
>
|
|
{t('clear')}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{showCalendar && (
|
|
<motion.div
|
|
initial={{ opacity: 0, y: -20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
className="mb-6"
|
|
>
|
|
<OwnerBookingCalendar
|
|
property={{ bookings }}
|
|
/>
|
|
</motion.div>
|
|
)}
|
|
|
|
{filteredBookings.length === 0 ? (
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
className="bg-white rounded-2xl p-12 text-center border-2 border-dashed border-gray-300"
|
|
>
|
|
<div className="w-24 h-24 bg-amber-100 rounded-full flex items-center justify-center mx-auto mb-4">
|
|
<Calendar className="w-12 h-12 text-amber-600" />
|
|
</div>
|
|
<h3 className="text-xl font-bold text-gray-900 mb-2">{t('noBookings')}</h3>
|
|
<p className="text-gray-600 mb-4">
|
|
{filterStatus !== 'all' ? t('noBookingsInCategory') : t('noBookingsReceived')}
|
|
</p>
|
|
{filterStatus !== 'all' && (
|
|
<button
|
|
onClick={() => setFilterStatus('all')}
|
|
className="inline-flex items-center gap-2 bg-amber-500 text-white px-6 py-3 rounded-xl font-medium hover:bg-amber-600"
|
|
>
|
|
{t('viewAllBookings')}
|
|
</button>
|
|
)}
|
|
</motion.div>
|
|
) : (
|
|
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
|
|
{filteredBookings.map((booking) => (
|
|
<BookingCard
|
|
key={booking.id}
|
|
booking={booking}
|
|
onViewDetails={handleViewDetails}
|
|
onContact={handleContact}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|