summaryrefslogtreecommitdiff
path: root/Hutch/Views/Lookup/ContributionCalendarView.swift
blob: d52deab60d835bea5f7669b43b710df3af485952 (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
import SwiftUI

struct ContributionProfileCard: View {
    let actor: String
    let weeks: [ContributionWeek]
    let stats: ContributionStatsResponse?
    let isLoading: Bool
    let error: String?
    var isIndexedButEmpty = false

    var body: some View {
        VStack(alignment: .leading, spacing: 12) {
            HStack {
                VStack(alignment: .leading, spacing: 2) {
                    Text("Contribution Activity")
                        .font(.headline)
                    Text(actor)
                        .font(.caption)
                        .foregroundStyle(.secondary)
                }

                Spacer()
            }

            if isLoading && weeks.isEmpty {
                HStack(spacing: 10) {
                    ProgressView()
                        .controlSize(.small)
                    Text("Loading activity…")
                        .font(.subheadline)
                        .foregroundStyle(.secondary)
                }
            } else if let error, weeks.isEmpty {
                Label(error, systemImage: "exclamationmark.triangle")
                    .font(.subheadline)
                    .foregroundStyle(.secondary)
            } else if isIndexedButEmpty || weeks.isEmpty || stats?.totalEvents == 0 {
                Text("Contribution activity may still be indexing.")
                    .font(.subheadline)
                    .foregroundStyle(.secondary)
            } else {
                ContributionScrollableHeatmap(
                    weeks: weeks,
                    squareSize: 10,
                    spacing: 3,
                    showsWeekdayLabels: false,
                    showsMonthLabels: false
                )

                ContributionLegendView()

                if let stats {
                    HStack(spacing: 14) {
                        ContributionMetricChip(value: "\(stats.totalEvents)", title: "Events")
                        ContributionMetricChip(value: "\(stats.activeDays)", title: "Days")
                        ContributionMetricChip(value: "\(stats.longestStreak)", title: "Streak")
                    }
                }
            }
        }
        .padding(.vertical, 4)
    }
}

private struct ContributionScrollableHeatmap: View {
    let weeks: [ContributionWeek]
    let squareSize: CGFloat
    let spacing: CGFloat
    let showsWeekdayLabels: Bool
    let showsMonthLabels: Bool

    @State private var didApplyInitialScroll = false

    private let weekdayLabels = ["S", "M", "T", "W", "T", "F", "S"]

    var body: some View {
        ScrollViewReader { proxy in
            ScrollView(.horizontal, showsIndicators: false) {
                VStack(alignment: .leading, spacing: 6) {
                    if showsMonthLabels {
                        HStack(spacing: spacing) {
                            if showsWeekdayLabels {
                                Color.clear
                                    .frame(width: 10)
                            }

                            ForEach(Array(weeks.enumerated()), id: \.element.startDate) { index, week in
                                Text(monthLabel(for: week, index: index))
                                    .font(.caption2)
                                    .foregroundStyle(.secondary)
                                    .lineLimit(1)
                                    .fixedSize(horizontal: true, vertical: false)
                                    .frame(width: squareSize, alignment: .leading)
                            }
                        }
                    }

                    HStack(alignment: .top, spacing: 8) {
                        if showsWeekdayLabels {
                            VStack(alignment: .trailing, spacing: spacing) {
                                ForEach(Array(weekdayLabels.enumerated()), id: \.offset) { _, label in
                                    Text(label)
                                        .font(.caption2)
                                        .foregroundStyle(.tertiary)
                                        .frame(width: 10, height: squareSize, alignment: .center)
                                }
                            }
                        }

                        HStack(alignment: .top, spacing: spacing) {
                            ForEach(weeks, id: \.startDate) { week in
                                VStack(spacing: spacing) {
                                    ForEach(week.days) { day in
                                        ContributionDayCell(day: day, size: squareSize)
                                    }
                                }
                                .id(week.startDate)
                            }
                        }
                    }
                }
                .padding(.vertical, 2)
            }
            .onAppear {
                guard !didApplyInitialScroll, let lastWeek = weeks.last?.startDate else { return }
                didApplyInitialScroll = true

                DispatchQueue.main.async {
                    proxy.scrollTo(lastWeek, anchor: .trailing)
                }
            }
        }
        .accessibilityElement(children: .contain)
    }

    private func monthLabel(for week: ContributionWeek, index: Int) -> String {
        let month = week.startDate.formatted(.dateTime.month(.abbreviated))
        if index == 0 {
            return month
        }

        let previousMonth = weeks[index - 1].startDate.formatted(.dateTime.month(.abbreviated))
        return previousMonth == month ? "" : month
    }
}

private struct ContributionDayCell: View {
    let day: ContributionDay
    let size: CGFloat

    var body: some View {
        RoundedRectangle(cornerRadius: 3, style: .continuous)
            .fill(day.intensity.color)
            .frame(width: size, height: size)
            .overlay {
                RoundedRectangle(cornerRadius: 3, style: .continuous)
                    .stroke(Color.primary.opacity(day.intensity == .empty ? 0.08 : 0), lineWidth: 0.5)
            }
            .accessibilityLabel(day.accessibilityLabel)
    }
}


private struct ContributionMetricChip: View {
    let value: String
    let title: String

    var body: some View {
        VStack(alignment: .leading, spacing: 2) {
            Text(value)
                .font(.headline)
            Text(title)
                .font(.caption)
                .foregroundStyle(.secondary)
        }
        .frame(maxWidth: .infinity, alignment: .leading)
        .padding(10)
        .background(Color.secondary.opacity(0.08), in: RoundedRectangle(cornerRadius: 12, style: .continuous))
    }
}

private struct ContributionLegendView: View {
    var body: some View {
        HStack(spacing: 8) {
            Text("Less")
                .font(.caption)
                .foregroundStyle(.secondary)

            ForEach(ContributionIntensity.allCases, id: \.rawValue) { intensity in
                RoundedRectangle(cornerRadius: 3, style: .continuous)
                    .fill(intensity.color)
                    .frame(width: 12, height: 12)
            }

            Text("More")
                .font(.caption)
                .foregroundStyle(.secondary)
        }
    }
}

private extension ContributionIntensity {
    var color: Color {
        switch self {
        case .empty:
            Color(uiColor: .secondarySystemFill)
        case .level1:
            Color(red: 0.82, green: 0.92, blue: 0.83)
        case .level2:
            Color(red: 0.58, green: 0.83, blue: 0.61)
        case .level3:
            Color(red: 0.25, green: 0.69, blue: 0.36)
        case .level4:
            Color(red: 0.12, green: 0.47, blue: 0.21)
        }
    }
}

private extension ContributionDay {
    var accessibilityLabel: String {
        let contributionLabel = count == 1 ? "1 contribution" : "\(count) contributions"
        return "\(date.formatted(date: .long, time: .omitted)): \(contributionLabel), score \(score.formatted(.number.precision(.fractionLength(0...2))))"
    }
}