-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArchiveView.swift
More file actions
249 lines (210 loc) · 8.14 KB
/
ArchiveView.swift
File metadata and controls
249 lines (210 loc) · 8.14 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
// Copyright © 2025 Booket. All rights reserved
import BKDesign
import BKDomain
import Combine
import SnapKit
import UIKit
final class ArchiveView: BaseView, UIGestureRecognizerDelegate {
private var eventPublisher = PassthroughSubject<ArchiveViewEvent, Never>()
var events: AnyPublisher<ArchiveViewEvent, Never> {
eventPublisher.eraseToAnyPublisher()
}
private let chipScrollView: UIScrollView = {
let scrollView = UIScrollView()
scrollView.showsHorizontalScrollIndicator = false
scrollView.alwaysBounceHorizontal = true
return scrollView
}()
private let chipStackView: UIStackView = {
let stackView = UIStackView()
stackView.axis = .horizontal
stackView.spacing = BKSpacing.spacing2
stackView.alignment = .center
return stackView
}()
private let chip1 = BKChip(title: "", count: 0)
private let chip2 = BKChip(title: "", count: 0)
private let chip3 = BKChip(title: "", count: 0)
private let chip4 = BKChip(title: "", count: 0)
private lazy var allChips: [BKChip] = [chip1, chip2, chip3, chip4]
private lazy var bookCollectionView: UICollectionView = {
let layout = UICollectionViewFlowLayout()
layout.scrollDirection = .vertical
layout.minimumLineSpacing = 0
layout.minimumInteritemSpacing = 0
let collectionView = UICollectionView(frame: .zero, collectionViewLayout: layout)
collectionView.allowsSelection = true
collectionView.delaysContentTouches = false
collectionView.backgroundColor = .bkBaseColor(.primary)
collectionView.delegate = self
collectionView.dataSource = self
collectionView.register(
ArchiveCell.self,
forCellWithReuseIdentifier: ArchiveCell.identifier
)
return collectionView
}()
private let emptyStateView = EmptyStateView()
private var books: [ArchiveBook] = [] {
didSet {
updateEmptyState()
bookCollectionView.reloadData()
}
}
override func setupView() {
super.setupView()
backgroundColor = .bkBaseColor(.primary)
setupChipActions()
setupScrollView()
addSubviews(chipScrollView, bookCollectionView, emptyStateView)
setupLayout()
updateEmptyState()
emptyStateView.onTapActionButton = { [weak self] in
self?.eventPublisher.send(.loginButtonTapped)
}
let tap = UITapGestureRecognizer(target: self, action: #selector(handleCollectionTap(_:)))
tap.cancelsTouchesInView = false
tap.delaysTouchesEnded = false
tap.delegate = self
bookCollectionView.addGestureRecognizer(tap)
bookCollectionView.allowsSelection = false
}
@objc private func handleCollectionTap(_ gr: UITapGestureRecognizer) {
let p = gr.location(in: bookCollectionView)
guard let indexPath = bookCollectionView.indexPathForItem(at: p) else { return }
let book = books[indexPath.item]
eventPublisher.send(.bookTapped(book: book))
}
private func setupChipActions() {
allChips.enumerated().forEach { index, chip in
chip.onTap = { [weak self] in
self?.eventPublisher.send(.chipTapped(index: index))
}
}
}
private func setupScrollView() {
chipScrollView.addSubview(chipStackView)
chipStackView.snp.makeConstraints {
$0.edges.equalToSuperview()
$0.height.equalTo(ArchiveLayoutGuide.chipViewHeight)
}
let leadingPadding = UIView()
let trailingPadding = UIView()
leadingPadding.snp.makeConstraints {
$0.width
.equalTo(
ArchiveLayoutGuide.chipSectionInset.leading - ArchiveLayoutGuide.chipSpacing
)
}
trailingPadding.snp.makeConstraints {
$0.width
.equalTo(ArchiveLayoutGuide.chipSectionInset.leading - ArchiveLayoutGuide.chipSpacing)
}
chipStackView.addArrangedSubview(leadingPadding)
allChips.forEach { chipStackView.addArrangedSubview($0) }
chipStackView.addArrangedSubview(trailingPadding)
}
override func setupLayout() {
chipScrollView.snp.makeConstraints {
$0.top.equalTo(safeAreaLayoutGuide).offset(BKSpacing.spacing5)
$0.horizontalEdges.equalToSuperview()
$0.height.equalTo(ArchiveLayoutGuide.chipViewHeight)
}
bookCollectionView.snp.makeConstraints {
$0.top.equalTo(chipScrollView.snp.bottom).offset(BKSpacing.spacing3)
$0.horizontalEdges.bottom.equalToSuperview()
}
emptyStateView.snp.makeConstraints {
$0.top.equalTo(chipScrollView.snp.bottom).offset(BKSpacing.spacing3)
$0.horizontalEdges.bottom.equalToSuperview()
}
}
func updateData(chips: [ChipData], books: [ArchiveBook]) {
chips.enumerated().forEach { index, chipData in
guard index < allChips.count else { return }
allChips[index].title = chipData.title
allChips[index].count = chipData.count
allChips[index].isSelected = chipData.isSelected
}
self.books = books
}
private func updateEmptyState() {
emptyStateView.isHidden = !books.isEmpty
bookCollectionView.isHidden = books.isEmpty
if books.isEmpty {
bringSubviewToFront(emptyStateView)
} else {
bringSubviewToFront(bookCollectionView)
}
}
}
extension ArchiveView: UICollectionViewDataSource {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return books.count
}
func collectionView(
_ collectionView: UICollectionView,
cellForItemAt indexPath: IndexPath
) -> UICollectionViewCell {
guard let cell = collectionView.dequeueReusableCell(
withReuseIdentifier: ArchiveCell.identifier,
for: indexPath
) as? ArchiveCell else {
return UICollectionViewCell()
}
let book = books[indexPath.item]
cell.configure(
title: book.title,
description: .init(
author: book.author,
publisher: book.publisher
),
image: book.imageURL,
recordCount: book.recordCount
)
cell.onTap = { [weak self] in
guard let self else { return }
let book = self.books[indexPath.item]
self.eventPublisher.send(.bookTapped(book: book))
}
return cell
}
enum ArchiveLayoutGuide {
static let cellHeight: CGFloat = 132
static let chipSpacing: CGFloat = BKSpacing.spacing2
static let chipViewHeight: CGFloat = 36
static let chipSectionInset = NSDirectionalEdgeInsets(
top: BKSpacing.spacing3,
leading: BKSpacing.spacing5,
bottom: BKSpacing.spacing3,
trailing: BKSpacing.spacing5
)
}
}
extension ArchiveView: UICollectionViewDelegateFlowLayout {
func collectionView(
_ collectionView: UICollectionView,
layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAt indexPath: IndexPath
) -> CGSize {
return CGSize(width: collectionView.frame.width, height: ArchiveLayoutGuide.cellHeight)
}
func collectionView(
_ collectionView: UICollectionView,
didSelectItemAt indexPath: IndexPath
) {
let book = books[indexPath.item]
eventPublisher.send(.bookTapped(book: book))
}
func collectionView(
_ collectionView: UICollectionView,
willDisplay cell: UICollectionViewCell,
forItemAt indexPath: IndexPath
) {
let section = indexPath.section
let totalItems = collectionView.numberOfItems(inSection: section)
if indexPath.item == totalItems - 1 {
eventPublisher.send(.loadNextPage)
}
}
}