Sửa đổi dữ liệu của hệ thống theo ARCHITECTURE.md

This commit is contained in:
2026-06-13 19:52:08 +07:00
parent 7fc80a49d0
commit b54707823c
33 changed files with 655 additions and 275 deletions
+17 -17
View File
@@ -22,9 +22,9 @@ const TimeVariance = ({ planned, actual }: { planned: string, actual: string | n
export const ItineraryTimeline = () => {
const { legs } = useTourStore();
const toggleComplete = async (placeId: number) => {
// Gọi API PATCH /api/v1/places/:id để cập nhật trạng thái
console.log("Toggle status for place:", placeId);
const toggleComplete = async (locationId: string) => {
// Gọi API PATCH /api/v1/locations/:id để cập nhật trạng thái
console.log("Toggle status for location:", locationId);
};
return (
@@ -37,7 +37,7 @@ export const ItineraryTimeline = () => {
{/* Leg Header */}
<div className="flex items-center mb-4 px-2">
<div className="bg-blue-600 text-white text-sm font-bold px-3 py-1 rounded-full shadow-sm">
Chặng {leg.sequenceNumber}
Chặng {leg.sequence}
</div>
<div className="ml-4 h-[1px] flex-1 bg-gray-200" />
</div>
@@ -46,15 +46,15 @@ export const ItineraryTimeline = () => {
<div className="absolute left-6 top-10 bottom-0 w-0.5 bg-gray-200 -z-0" />
<div className="space-y-6 ml-2">
{leg.places.map((place) => (
<div key={place.id} className="relative flex group">
{leg.locations.map((location) => (
<div key={location.id} className="relative flex group">
{/* Timeline Node */}
<div className="z-10 mt-1.5 mr-4">
<button
onClick={() => toggleComplete(place.id)}
className={`transition-colors duration-200 ${place.isCompleted ? 'text-green-500' : 'text-gray-300 hover:text-blue-500'}`}
onClick={() => toggleComplete(location.id)}
className={`transition-colors duration-200 ${location.status === 'COMPLETED' ? 'text-green-500' : 'text-gray-300 hover:text-blue-500'}`}
>
{place.isCompleted ? (
{location.status === 'COMPLETED' ? (
<CheckCircle2 className="w-8 h-8 bg-white rounded-full" />
) : (
<Circle className="w-8 h-8 bg-white rounded-full fill-white" />
@@ -64,34 +64,34 @@ export const ItineraryTimeline = () => {
{/* Card Content */}
<div className={`flex-1 bg-white p-4 rounded-xl border transition-all duration-200 ${
place.isCompleted ? 'border-green-100 bg-green-50/30' : 'border-gray-100 shadow-sm hover:shadow-md'
location.status === 'COMPLETED' ? 'border-green-100 bg-green-50/30' : 'border-gray-100 shadow-sm hover:shadow-md'
}`}>
<div className="flex justify-between items-start">
<div>
<h3 className={`font-semibold text-lg ${place.isCompleted ? 'text-gray-500 line-through' : 'text-gray-800'}`}>
{place.name}
<h3 className={`font-semibold text-lg ${location.status === 'COMPLETED' ? 'text-gray-500 line-through' : 'text-gray-800'}`}>
{location.name}
</h3>
<div className="flex items-center text-sm text-gray-500 mt-1">
<MapPin className="w-3 h-3 mr-1" />
<span className="truncate max-w-[200px] sm:max-w-md">{place.address}</span>
<span className="truncate max-w-[200px] sm:max-w-md">{location.address}</span>
</div>
</div>
<div className="text-right flex flex-col items-end">
<div className="flex items-center text-sm font-medium text-blue-600">
<Clock className="w-3 h-3 mr-1" />
{format(parseISO(place.arrivalTime), 'HH:mm')}
{location.plannedStart ? format(parseISO(location.plannedStart), 'HH:mm') : '--:--'}
</div>
{place.isCompleted && place.completedAt && (
{location.status === 'COMPLETED' && location.actualStart && (
<div className="text-[10px] text-gray-400 mt-1 italic">
Thực tế: {format(parseISO(place.completedAt), 'HH:mm')}
Thực tế: {format(parseISO(location.actualStart), 'HH:mm')}
</div>
)}
</div>
</div>
{/* Logic tính toán độ lệch thời gian */}
<TimeVariance planned={place.arrivalTime} actual={place.completedAt} />
<TimeVariance planned={location.plannedStart || ''} actual={location.actualStart || null} />
</div>
</div>
))}