summaryrefslogtreecommitdiff
path: root/DayByDay/ContentView.swift
blob: 9924c5de0be04342f817743f08bed409320eaa05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
//
//  ContentView.swift
//  DayByDay
//
//  Created by cmc on 2026-03-09.
//

import SwiftUI

// MARK: - Category model

enum Category: Int, CaseIterable, Identifiable {
    case today, days, months, seasons, numbers, colors, shapes, animals, alphabet,
         weather, bodyParts, food

    var id: Int { rawValue }

    var label: String {
        switch self {
        case .today:     "Today"
        case .days:      "Days"
        case .months:    "Months"
        case .seasons:   "Seasons"
        case .numbers:   "Numbers"
        case .colors:    "Colors"
        case .shapes:    "Shapes"
        case .animals:   "Animals"
        case .alphabet:  "Alphabet"
        case .weather:   "Weather"
        case .bodyParts: "Body"
        case .food:      "Food"
        }
    }

    var symbol: String {
        switch self {
        case .today:     "sun.horizon.fill"
        case .days:      "calendar"
        case .months:    "calendar.badge.clock"
        case .seasons:   "leaf.fill"
        case .numbers:   "123.rectangle.fill"
        case .colors:    "paintpalette.fill"
        case .shapes:    "pentagon.fill"
        case .animals:   "pawprint.fill"
        case .alphabet:  "abc"
        case .weather:   "cloud.sun.rain.fill"
        case .bodyParts: "figure.stand"
        case .food:      "carrot.fill"
        }
    }

    var color: Color {
        switch self {
        case .today:     .orange
        case .days:      .blue
        case .months:    .purple
        case .seasons:   .green
        case .numbers:   .red
        case .colors:    .pink
        case .shapes:    .teal
        case .animals:   Color(red: 0.7, green: 0.45, blue: 0.2)
        case .alphabet:  .indigo
        case .weather:   Color(red: 0.4, green: 0.75, blue: 0.95)
        case .bodyParts: Color(red: 0.9, green: 0.5, blue: 0.6)
        case .food:      Color(red: 0.95, green: 0.6, blue: 0.2)
        }
    }

    /// Whether this tile uses a special gradient background instead of the solid color.
    var usesGradientBackground: Bool {
        self == .colors
    }
}

// MARK: - Home grid tile

struct CategoryTile: View {
    let category: Category

    var body: some View {
        ZStack {
            if category.usesGradientBackground {
                RoundedRectangle(cornerRadius: 32, style: .continuous)
                    .fill(
                        LinearGradient(
                            colors: [.red, .orange, .yellow, .green, .blue, .purple],
                            startPoint: .leading,
                            endPoint: .trailing
                        )
                    )
                    .shadow(color: category.color.opacity(0.4), radius: 8, y: 4)
            } else {
                RoundedRectangle(cornerRadius: 32, style: .continuous)
                    .fill(category.color.gradient)
                    .shadow(color: category.color.opacity(0.4), radius: 8, y: 4)
            }

            VStack(spacing: 12) {
                Image(systemName: category.symbol)
                    .font(.system(size: 48))
                    .foregroundStyle(.white)
                    .symbolRenderingMode(.hierarchical)

                Text(category.label)
                    .font(.system(size: 24, weight: .bold, design: .rounded))
                    .foregroundStyle(.white)
            }
        }
        .accessibilityLabel(category.label)
    }
}

// MARK: - Content view

struct ContentView: View {
    @AppStorage("hasSeenVoiceTip") private var hasSeenVoiceTip = false

    private let columns = [
        GridItem(.flexible(), spacing: 24),
        GridItem(.flexible(), spacing: 24)
    ]

    var body: some View {
        NavigationStack {
            ScrollView {
                LazyVGrid(columns: columns, spacing: 24) {
                    ForEach(Category.allCases) { category in
                        NavigationLink(value: category) {
                            CategoryTile(category: category)
                                .aspectRatio(1, contentMode: .fit)
                        }
                        .buttonStyle(.plain)
                    }
                }
                .padding(24)

                Button {
                    hasSeenVoiceTip = false
                } label: {
                    Label("Voice Quality Tips", systemImage: "speaker.wave.2.fill")
                        .font(.system(size: 16, weight: .medium, design: .rounded))
                        .foregroundStyle(.secondary)
                        .frame(maxWidth: .infinity)
                        .padding(.vertical, 14)
                        .background(Color(.systemGray6))
                        .cornerRadius(16)
                }
                .buttonStyle(.plain)
                .padding(.horizontal, 24)
                .padding(.bottom, 24)
            }
            .navigationTitle("DayByDay")
            .navigationDestination(for: Category.self) { category in
                destinationView(for: category)
                    .navigationTitle(category.label)
            }
            .overlay {
                if !hasSeenVoiceTip {
                    VoiceTipOverlay {
                        withAnimation { hasSeenVoiceTip = true }
                    }
                }
            }
        }
    }

    @ViewBuilder
    private func destinationView(for category: Category) -> some View {
        switch category {
        case .today:     TodayView()
        case .days:      DaysOfWeekView()
        case .months:    MonthsOfYearView()
        case .seasons:   SeasonsView()
        case .numbers:   NumbersView()
        case .colors:    ColorsView()
        case .shapes:    ShapesView()
        case .animals:   AnimalsView()
        case .alphabet:  AlphabetView()
        case .weather:   WeatherView()
        case .bodyParts: BodyPartsView()
        case .food:      FoodView()
        }
    }
}

/// A one-time informational overlay for parents explaining how to download
/// a higher-quality voice for the best experience. Dismissed with a single tap.
struct VoiceTipOverlay: View {
    let onDismiss: () -> Void

    var body: some View {
        ZStack {
            Color.black.opacity(0.4)
                .ignoresSafeArea()

            VStack(spacing: 20) {
                Image(systemName: "speaker.wave.3.fill")
                    .font(.system(size: 48))
                    .foregroundStyle(.blue)

                Text("Better Voices Available")
                    .font(.system(size: 28, weight: .bold, design: .rounded))

                Text("For the best experience, download an enhanced voice on your device.\n\nSettings → Accessibility → Read & Speak → Voices → English → tap a voice marked Enhanced or Premium to download it.")
                    .font(.system(size: 18, design: .rounded))
                    .multilineTextAlignment(.center)
                    .foregroundStyle(.secondary)

                Text("Tap anywhere to dismiss")
                    .font(.system(size: 16, weight: .medium, design: .rounded))
                    .foregroundStyle(.tertiary)
                    .padding(.top, 8)
            }
            .padding(40)
            .frame(maxWidth: 520)
            .background(
                RoundedRectangle(cornerRadius: 32, style: .continuous)
                    .fill(.regularMaterial)
            )
        }
        .contentShape(Rectangle())
        .onTapGesture(perform: onDismiss)
    }
}

#Preview {
    ContentView()
}