
import { Trip } from "../../types";

export const mockAmsterdamTrip: Trip = {
  id: "trip2",
  title: "Long séjour à Amsterdam",
  destination: "Amsterdam, Pays-Bas",
  startDate: "2025-06-05",
  endDate: "2025-06-15",
  plannerId: "user1",
  travelerId: "user4",
  travelerEmail: "thomas@example.com",
  travelerName: "Thomas Lefebvre",
  coverUrl: "https://images.unsplash.com/photo-1512470876302-972faa2aa9a4",
  steps: [
    {
      id: "step4",
      tripId: "trip2",
      day: 1,
      time: "11:00",
      location: "Rijksmuseum",
      activity: "Visite du Rijksmuseum",
      price: 20,
      link: "https://www.rijksmuseum.nl/en",
      validationStatus: "approved",
      comments: [],
    },
    {
      id: "step5",
      tripId: "trip2",
      day: 2,
      time: "14:00",
      location: "Canal Cruise",
      activity: "Croisière sur les canaux",
      price: 18,
      distance: "Centre-ville",
      validationStatus: "approved",
      comments: [
        {
          id: "comment3",
          userId: "user4",
          userName: "Thomas Lefebvre",
          userAvatar: "https://i.pravatar.cc/150?img=4",
          content: "Excellente idée, j'adore les balades en bateau !",
          createdAt: "2025-05-01T16:40:00Z",
        },
      ],
    }
  ],
  documents: [
    {
      id: "doc3",
      name: "Amsterdam City Card",
      type: "information",
      url: "#",
      uploadedAt: "2025-05-20T14:30:00Z",
    }
  ],
};
