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

export const mockParisTrip: Trip = {
  id: "trip1",
  title: "Week-end à Paris",
  destination: "Paris, France",
  startDate: "2025-05-10",
  endDate: "2025-05-12",
  plannerId: "user1",
  travelerId: "user3",
  travelerEmail: "emma@example.com",
  travelerName: "Emma Girard",
  coverUrl: "https://images.unsplash.com/photo-1502602898657-3e91760cbb34",
  steps: [
    {
      id: "step1",
      tripId: "trip1",
      day: 1,
      time: "09:00",
      location: "Tour Eiffel",
      activity: "Visite de la Tour Eiffel",
      price: 25,
      distance: "1.5 km du métro",
      link: "https://www.toureiffel.paris/fr",
      validationStatus: "approved",
      comments: [
        {
          id: "comment1",
          userId: "user3",
          userName: "Emma Girard",
          userAvatar: "https://i.pravatar.cc/150?img=3",
          content: "Super idée, j'ai hâte d'y être !",
          createdAt: "2025-04-20T10:30:00Z",
        },
      ],
    },
    {
      id: "step2",
      tripId: "trip1",
      day: 1,
      time: "13:00",
      location: "Le Bouillon Chartier",
      activity: "Déjeuner dans un restaurant traditionnel",
      price: 35,
      distance: "10 minutes à pied",
      link: "https://www.bouillon-chartier.com/",
      validationStatus: "rejected",
      comments: [
        {
          id: "comment2",
          userId: "user3",
          userName: "Emma Girard",
          userAvatar: "https://i.pravatar.cc/150?img=3",
          content: "Je préfère un restaurant végétarien, pouvez-vous proposer une alternative ?",
          createdAt: "2025-04-21T14:20:00Z",
        },
      ],
    },
    {
      id: "step3",
      tripId: "trip1",
      day: 2,
      time: "10:00",
      location: "Musée du Louvre",
      activity: "Visite du Louvre",
      price: 15,
      distance: "5 minutes de métro",
      link: "https://www.louvre.fr/",
      validationStatus: "pending",
      comments: [],
    }
  ],
  documents: [
    {
      id: "doc1",
      name: "Billets d'entrée Tour Eiffel",
      type: "information",
      url: "#",
      uploadedAt: "2025-04-15T09:23:00Z",
    },
    {
      id: "doc2",
      name: "Réservation hôtel",
      type: "information",
      url: "#",
      uploadedAt: "2025-04-16T11:45:00Z",
    },
  ],
};
