-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPokitCalendar.swift
More file actions
469 lines (389 loc) Β· 13.9 KB
/
PokitCalendar.swift
File metadata and controls
469 lines (389 loc) Β· 13.9 KB
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
//
// PokitCalendar.swift
// DSKit
//
// Created by κΉλν on 7/2/24.
//
import SwiftUI
import Util
public struct PokitCalendar: View {
@Binding
private var startDate: Date
@Binding
private var endDate: Date
@State
private var page: String
@State
private var months: [Date] = []
@State
private var isLastMonth: Bool = true
@State
private var isFirstMonth: Bool = false
@State
private var cachedDates: [Date: [Date]] = [:]
@State
private var cachedPreviousDates: [Date: [Date]] = [:]
@State
private var cachedNextDates: [Date: [Date]] = [:]
private let calendar = Calendar.current
private let formatter = DateFormat.calendarPage.formatter
public init(
startDate: Binding<Date>,
endDate: Binding<Date>
) {
self._startDate = startDate
self._endDate = endDate
self._page = State(initialValue: self.formatter.string(from: .now))
}
public var body: some View {
VStack(spacing: 20) {
yearMonthLabel
calendarGrid
}
.onAppear {
onAppeared()
}
}
private var yearMonthLabel: some View {
HStack {
Text(page)
.pokitFont(.b1(.b))
.foregroundStyle(.pokit(.text(.primary)))
.contentTransition(.numericText())
.animation(.pokitDissolve, value: self.page)
Spacer()
monthButtons
}
}
private var monthButtons: some View {
HStack(spacing: 24) {
beforeMonthButton
nextMonthButton
}
}
private var beforeMonthButton: some View {
Button {
self.beforeButtonTapped()
} label: {
Image(.icon(.arrowLeft))
.resizable()
.frame(width: 24, height: 24)
.foregroundStyle(.pokit(.icon(isFirstMonth ? .disable : .primary)))
}
.disabled(isFirstMonth)
}
private var nextMonthButton: some View {
Button {
self.nextButtonTapped()
} label: {
Image(.icon(.arrowRight))
.resizable()
.frame(width: 24, height: 24)
.foregroundStyle(.pokit(.icon(isLastMonth ? .disable : .primary)))
}
.disabled(isLastMonth)
}
private var calendarGrid: some View {
GeometryReader { proxy in
let width = (proxy.size.width - 48) / 7
VStack(spacing: 8) {
weeks(width: width)
datesOfMonth(width: width)
}
.animation(.pokitDissolve, value: self.page)
.frame(height: proxy.size.width)
}
}
@ViewBuilder
private func weeks(width: CGFloat) -> some View {
HStack(spacing: 8) {
ForEach(0..<7) { weekDay in
week(self.weekdaySymbol(for: weekDay))
.frame(width: width, height: width)
}
}
}
@ViewBuilder
private func week(_ weekDay: String) -> some View {
Text(weekDay)
.pokitFont(.detail1)
.foregroundStyle(.pokit(.text(.tertiary)))
}
@ViewBuilder
private func datesOfMonth(width: CGFloat) -> some View {
TabView(selection: self.$page) {
ForEach(self.months, id: \.self) { date in
let page = formatter.string(from: date)
dateGrid(date, width: width)
.tag(page)
}
}
.tabViewStyle(.page(indexDisplayMode: .never))
.onChange(of: page) { onChangedPage($0) }
}
@ViewBuilder
private func dateGrid(_ date: Date, width: CGFloat) -> some View {
let previousDate = previousDate(date)
let dates = dates(date)
LazyVGrid(columns: Array(repeating: .init(), count: 7), spacing: 8) {
ForEach(previousDate, id: \.self) { date in
dayCell(date, isCurrentMonth: false, width: width)
}
ForEach(dates, id: \.self) { date in
dayCell(date, isCurrentMonth: true, width: width)
}
ForEach(nextDates(date, datesCount: previousDate.count + dates.count), id: \.self) { date in
dayCell(date, isCurrentMonth: false, width: width)
}
}
}
@ViewBuilder
private func dayCell(
_ date: Date,
isCurrentMonth: Bool,
width: CGFloat
) -> some View {
let ignoreTimeOfStartDate = ignoreTime(self.startDate)
let ignoreTimeOfEndDate = ignoreTime(self.endDate)
let isStartDate = ignoreTimeOfStartDate == date
let isEndDate = ignoreTimeOfEndDate == date
let isContains = (ignoreTimeOfStartDate...ignoreTimeOfEndDate).contains(date)
let textColor: Color = .pokit(.text(isContains ? .inverseWh : .secondary))
let isSelected = isStartDate || isEndDate
let backgoundColor: Color = .pokit(.bg(.brand)).opacity(isSelected ? 1 : isContains ? 0.2 : 0)
let day = calendar.component(.day, from: date)
let isFuture = date > .now
Button {
dayButtonTapped(
date,
isStartDate: isStartDate,
isEndDate: isEndDate,
isContains: isContains
)
} label: {
Text("\(day)")
.pokitFont(.b1(.m))
.foregroundStyle(isCurrentMonth && !isFuture ? textColor : .pokit(.text(.tertiary)))
.frame(width: width, height: width)
.background {
RoundedRectangle(cornerRadius: 8, style: .continuous)
.fill(backgoundColor)
}
}
.disabled(isFuture)
}
private func dates(_ date: Date) -> [Date] {
guard let cached = cachedDates[date] else {
var dates: [Date] = []
let year = calendar.component(.year, from: date)
let month = calendar.component(.month, from: date)
guard
let range = calendar.range(
of: .day,
in: .month,
for: date
)
else { return dates }
dates = range.map { day in
var components = DateComponents()
components.year = year
components.month = month
components.day = day
return calendar.date(from: components) ?? .now
}
DispatchQueue.main.async {
cachedDates[date] = dates
}
return dates
}
return cached
}
private func previousDate(_ date: Date) -> [Date] {
guard let cached = cachedPreviousDates[date] else {
var dates: [Date] = []
let year = calendar.component(.year, from: date)
let month = calendar.component(.month, from: date)
let firstWeekday = calendar.component(
.weekday,
from: firstDateOfMonth(date)
)
guard firstWeekday > 1 else { return dates }
var dateComponents = DateComponents()
dateComponents.year = year
dateComponents.month = month - 1
dateComponents.day = 1
guard let monthDate = calendar.date(from: dateComponents) else {
return dates
}
guard
let monthRange = calendar.range(
of: .day,
in: .month,
for: monthDate
)
else { return dates }
let monthDays = Array(monthRange).suffix(firstWeekday - 1)
let monthDates = monthDays.map { day in
var components = DateComponents()
components.year = dateComponents.year
components.month = dateComponents.month
components.day = day
return calendar.date(from: components) ?? .now
}
dates = monthDates
DispatchQueue.main.async {
self.cachedPreviousDates[date] = dates
}
return dates
}
return cached
}
private func nextDates(_ date: Date, datesCount: Int) -> [Date] {
guard let cached = cachedNextDates[date] else {
var dates: [Date] = []
let year = calendar.component(.year, from: date)
let month = calendar.component(.month, from: date)
let numberOfDays = datesCount
if numberOfDays < 42 {
let remainingDays = 42 - numberOfDays
var dateComponents = DateComponents()
dateComponents.year = year
dateComponents.month = month + 1
dateComponents.day = 1
let nextMonthDates = (1...remainingDays).map { day in
var components = DateComponents()
components.year = dateComponents.year
components.month = dateComponents.month
components.day = day
return calendar.date(from: components) ?? .now
}
dates = nextMonthDates
}
DispatchQueue.main.async {
cachedNextDates[date] = dates
}
return dates
}
return cached
}
private func ignoreTime(_ date: Date) -> Date {
let dateComponent = calendar.dateComponents(
[.year, .month, .day, .calendar],
from: date
)
return dateComponent.date ?? .now
}
private func dayButtonTapped(
_ date: Date,
isStartDate: Bool,
isEndDate: Bool,
isContains: Bool
) {
withAnimation(.pokitDissolve) {
let ignoreTimeOfStartDate = ignoreTime(self.startDate)
let ignoreTimeOfEndDate = ignoreTime(self.endDate)
let isRange = ignoreTimeOfStartDate != ignoreTimeOfEndDate
guard !isStartDate else {
self.startDate = endDate
return
}
guard !isEndDate else {
self.endDate = startDate
return
}
guard date > ignoreTimeOfStartDate else {
self.startDate = date
self.endDate = date
return
}
guard isRange else {
self.endDate = date
return
}
guard isContains else {
self.startDate = date
self.endDate = date
return
}
self.endDate = date
}
}
private func beforeButtonTapped() {
guard
let date = calendar.date(
byAdding: .month,
value: -1,
to: currentDate
) else { return }
self.page = formatter.string(from: date)
}
private func nextButtonTapped() {
guard
let date = calendar.date(
byAdding: .month,
value: 1,
to: currentDate
)
else { return }
self.page = formatter.string(from: date)
}
private func weekdaySymbol(for weekday: Int) -> String {
let formatter = formatter
return formatter.veryShortWeekdaySymbols[weekday]
}
private var currentDate: Date {
guard let currentDate = formatter.date(from: self.page) else {
return .now
}
return currentDate
}
private func firstDateOfMonth(_ date: Date) -> Date {
var dateComponent = calendar.dateComponents(
[.year, .month],
from: date
)
dateComponent.setValue(1, for: .day)
guard let date = calendar.date(from: dateComponent) else {
return .now
}
return date
}
private func onAppeared() {
let year = calendar.component(.year, from: currentDate)
let month = calendar.component(.month, from: currentDate)
var monthList: [Date] = []
let yearRange = -(year - 2024)...0
for yearValue in yearRange {
if let yearDate = calendar.date(
byAdding: .year,
value: yearValue,
to: .now
) {
let isCurrentYear = yearValue == 0
let range = isCurrentYear ? (-month + 1)...0 : (-month + 1)...(12 - month)
for value in range {
if let date = calendar.date(
byAdding: .month,
value: value,
to: yearDate
) {
monthList.append(date)
}
}
}
}
self.months = monthList
}
private func onChangedPage(_ newValue: String) {
withAnimation {
if let dateOfLastMonth = months.last {
let lastMonthPage = formatter.string(from: dateOfLastMonth)
self.isLastMonth = newValue == lastMonthPage
}
if let dateOfFirstMonth = months.first {
let firstMonthPage = formatter.string(from: dateOfFirstMonth)
self.isFirstMonth = newValue == firstMonthPage
}
}
}
}