- Delete TripCreationView.swift and TripCreationViewModel.swift (unused) - Extract TripOptionsView to standalone file - Extract DateRangePicker and DayCell to standalone file - Extract LocationSearchSheet and CityInputType to standalone file - Fix TripWizardView to pass games dictionary to TripOptionsView - Remove debug print statements from TripDetailView Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
227 lines
8.7 KiB
Swift
227 lines
8.7 KiB
Swift
//
|
|
// TripWizardView.swift
|
|
// SportsTime
|
|
//
|
|
// Wizard for trip creation.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct TripWizardView: View {
|
|
@Environment(\.dismiss) private var dismiss
|
|
@Environment(\.colorScheme) private var colorScheme
|
|
@State private var viewModel = TripWizardViewModel()
|
|
@State private var showTripOptions = false
|
|
@State private var tripOptions: [ItineraryOption] = []
|
|
@State private var gamesForDisplay: [String: RichGame] = [:]
|
|
@State private var planningError: String?
|
|
@State private var showError = false
|
|
|
|
private let planningEngine = TripPlanningEngine()
|
|
|
|
var body: some View {
|
|
NavigationStack {
|
|
ScrollView {
|
|
VStack(spacing: Theme.Spacing.lg) {
|
|
// Step 1: Planning Mode (always visible)
|
|
PlanningModeStep(selection: $viewModel.planningMode)
|
|
|
|
// All other steps appear together after planning mode selected
|
|
if viewModel.areStepsVisible {
|
|
Group {
|
|
DatesStep(
|
|
startDate: $viewModel.startDate,
|
|
endDate: $viewModel.endDate,
|
|
hasSetDates: $viewModel.hasSetDates,
|
|
onDatesChanged: {
|
|
Task {
|
|
await viewModel.fetchSportAvailability()
|
|
}
|
|
}
|
|
)
|
|
|
|
SportsStep(
|
|
selectedSports: $viewModel.selectedSports,
|
|
sportAvailability: viewModel.sportAvailability,
|
|
isLoading: viewModel.isLoadingSportAvailability,
|
|
canSelectSport: viewModel.canSelectSport
|
|
)
|
|
|
|
RegionsStep(selectedRegions: $viewModel.selectedRegions)
|
|
|
|
RoutePreferenceStep(
|
|
routePreference: $viewModel.routePreference,
|
|
hasSetRoutePreference: $viewModel.hasSetRoutePreference
|
|
)
|
|
|
|
RepeatCitiesStep(
|
|
allowRepeatCities: $viewModel.allowRepeatCities,
|
|
hasSetRepeatCities: $viewModel.hasSetRepeatCities
|
|
)
|
|
|
|
MustStopsStep(mustStopLocations: $viewModel.mustStopLocations)
|
|
|
|
ReviewStep(
|
|
planningMode: viewModel.planningMode ?? .dateRange,
|
|
selectedSports: viewModel.selectedSports,
|
|
startDate: viewModel.startDate,
|
|
endDate: viewModel.endDate,
|
|
selectedRegions: viewModel.selectedRegions,
|
|
routePreference: viewModel.routePreference,
|
|
allowRepeatCities: viewModel.allowRepeatCities,
|
|
mustStopLocations: viewModel.mustStopLocations,
|
|
isPlanning: viewModel.isPlanning,
|
|
canPlanTrip: viewModel.canPlanTrip,
|
|
onPlan: { Task { await planTrip() } }
|
|
)
|
|
}
|
|
.transition(.opacity)
|
|
}
|
|
}
|
|
.padding(Theme.Spacing.md)
|
|
.animation(.easeInOut(duration: 0.2), value: viewModel.areStepsVisible)
|
|
}
|
|
.themedBackground()
|
|
.navigationTitle("Plan a Trip")
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbar {
|
|
ToolbarItem(placement: .cancellationAction) {
|
|
Button("Cancel") { dismiss() }
|
|
}
|
|
}
|
|
.navigationDestination(isPresented: $showTripOptions) {
|
|
TripOptionsView(
|
|
options: tripOptions,
|
|
games: gamesForDisplay,
|
|
preferences: buildPreferences(),
|
|
convertToTrip: { option in
|
|
convertOptionToTrip(option)
|
|
}
|
|
)
|
|
}
|
|
.alert("Planning Error", isPresented: $showError) {
|
|
Button("OK") { showError = false }
|
|
} message: {
|
|
Text(planningError ?? "An unknown error occurred")
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - Planning
|
|
|
|
private func planTrip() async {
|
|
viewModel.isPlanning = true
|
|
defer { viewModel.isPlanning = false }
|
|
|
|
do {
|
|
let preferences = buildPreferences()
|
|
|
|
// Fetch games for selected sports and date range
|
|
let games = try await AppDataProvider.shared.filterGames(
|
|
sports: preferences.sports,
|
|
startDate: preferences.startDate,
|
|
endDate: preferences.endDate
|
|
)
|
|
|
|
// Build dictionaries from arrays
|
|
let teamsById = Dictionary(uniqueKeysWithValues: AppDataProvider.shared.teams.map { ($0.id, $0) })
|
|
let stadiumsById = Dictionary(uniqueKeysWithValues: AppDataProvider.shared.stadiums.map { ($0.id, $0) })
|
|
|
|
// Build RichGame dictionary for display
|
|
var richGamesDict: [String: RichGame] = [:]
|
|
for game in games {
|
|
if let homeTeam = teamsById[game.homeTeamId],
|
|
let awayTeam = teamsById[game.awayTeamId],
|
|
let stadium = stadiumsById[game.stadiumId] {
|
|
let richGame = RichGame(game: game, homeTeam: homeTeam, awayTeam: awayTeam, stadium: stadium)
|
|
richGamesDict[game.id] = richGame
|
|
}
|
|
}
|
|
|
|
// Build planning request
|
|
let request = PlanningRequest(
|
|
preferences: preferences,
|
|
availableGames: games,
|
|
teams: teamsById,
|
|
stadiums: stadiumsById
|
|
)
|
|
|
|
// Run planning engine
|
|
let result = planningEngine.planItineraries(request: request)
|
|
|
|
switch result {
|
|
case .success(let options):
|
|
if options.isEmpty {
|
|
planningError = "No valid trip options found for your criteria. Try expanding your date range or regions."
|
|
showError = true
|
|
} else {
|
|
tripOptions = options
|
|
gamesForDisplay = richGamesDict
|
|
showTripOptions = true
|
|
}
|
|
case .failure(let failure):
|
|
planningError = failure.message
|
|
showError = true
|
|
}
|
|
} catch {
|
|
planningError = error.localizedDescription
|
|
showError = true
|
|
}
|
|
}
|
|
|
|
private func buildPreferences() -> TripPreferences {
|
|
TripPreferences(
|
|
planningMode: viewModel.planningMode ?? .dateRange,
|
|
sports: viewModel.selectedSports,
|
|
startDate: viewModel.startDate,
|
|
endDate: viewModel.endDate,
|
|
mustStopLocations: viewModel.mustStopLocations,
|
|
routePreference: viewModel.routePreference,
|
|
allowRepeatCities: viewModel.allowRepeatCities,
|
|
selectedRegions: viewModel.selectedRegions
|
|
)
|
|
}
|
|
|
|
private func convertOptionToTrip(_ option: ItineraryOption) -> Trip {
|
|
let preferences = buildPreferences()
|
|
|
|
// Convert ItineraryStops to TripStops
|
|
let tripStops = option.stops.enumerated().map { index, stop in
|
|
TripStop(
|
|
stopNumber: index + 1,
|
|
city: stop.city,
|
|
state: stop.state,
|
|
coordinate: stop.coordinate,
|
|
arrivalDate: stop.arrivalDate,
|
|
departureDate: stop.departureDate,
|
|
games: stop.games,
|
|
isRestDay: stop.games.isEmpty
|
|
)
|
|
}
|
|
|
|
return Trip(
|
|
name: generateTripName(from: tripStops),
|
|
preferences: preferences,
|
|
stops: tripStops,
|
|
travelSegments: option.travelSegments,
|
|
totalGames: option.totalGames,
|
|
totalDistanceMeters: option.totalDistanceMiles * 1609.34,
|
|
totalDrivingSeconds: option.totalDrivingHours * 3600
|
|
)
|
|
}
|
|
|
|
private func generateTripName(from stops: [TripStop]) -> String {
|
|
let cities = stops.compactMap { $0.city }.prefix(3)
|
|
if cities.count <= 1 {
|
|
return cities.first ?? "Road Trip"
|
|
}
|
|
return cities.joined(separator: " → ")
|
|
}
|
|
}
|
|
|
|
// MARK: - Preview
|
|
|
|
#Preview {
|
|
TripWizardView()
|
|
}
|