-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathSectionViewModel.swift
290 lines (256 loc) · 8.8 KB
/
SectionViewModel.swift
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
//
// Created by Jesse Squires
// https://www.jessesquires.com
//
// Documentation
// https://jessesquires.github.io/ReactiveCollectionsKit
//
// GitHub
// https://github.com/jessesquires/ReactiveCollectionsKit
//
// Copyright © 2019-present Jesse Squires
//
import Foundation
/// Represents a section of items in a collection.
public struct SectionViewModel: DiffableViewModel {
// MARK: DiffableViewModel
/// A unique id for this model.
public let id: UniqueIdentifier
// MARK: Properties
/// The cells in the section.
public let cells: [AnyCellViewModel]
/// The header for the section.
public let header: AnySupplementaryViewModel?
/// The footer for the section.
public let footer: AnySupplementaryViewModel?
/// The supplementary views in the section.
public let supplementaryViews: [AnySupplementaryViewModel]
/// Returns `true` if the section has supplementary views, `false` otherwise.
public var hasSupplementaryViews: Bool {
self.header != nil
|| self.footer != nil
|| self.supplementaryViews.isNotEmpty
}
// MARK: Init
/// Initializes a section.
///
/// - Parameters:
/// - id: A unique identifier for the section.
/// - cells: The cells in the section.
/// - header: The header for the section.
/// - footer: The footer for the section.
/// - supplementaryViews: The supplementary views in the section.
public init(
id: UniqueIdentifier,
cells: [AnyCellViewModel] = [],
header: AnySupplementaryViewModel? = nil,
footer: AnySupplementaryViewModel? = nil,
supplementaryViews: [AnySupplementaryViewModel] = []
) {
self.init(
id: id,
anyCells: cells,
anyHeader: header,
anyFooter: footer,
anySupplementaryViews: supplementaryViews
)
}
/// Initializes a section.
///
/// - Parameters:
/// - id: A unique identifier for the section.
/// - cells: The cells in the section.
public init<Cell: CellViewModel>(
id: UniqueIdentifier,
cells: [Cell]
) {
self.init(
id: id,
anyCells: cells.map { $0.eraseToAnyViewModel() },
anyHeader: nil,
anyFooter: nil,
anySupplementaryViews: []
)
}
/// Initializes a section.
///
/// - Parameters:
/// - id: A unique identifier for the section.
/// - cells: The cells in the section.
/// - header: The header for the section.
/// - footer: The footer for the section.
/// - supplementaryViews: The supplementary views in the section.
public init<Header: SupplementaryHeaderViewModel, Footer: SupplementaryFooterViewModel>(
id: UniqueIdentifier,
cells: [AnyCellViewModel] = [],
header: Header?,
footer: Footer?,
supplementaryViews: [AnySupplementaryViewModel] = []
) {
self.init(
id: id,
anyCells: cells,
anyHeader: header?.eraseToAnyViewModel(),
anyFooter: footer?.eraseToAnyViewModel(),
anySupplementaryViews: supplementaryViews
)
}
/// Initializes a section.
///
/// - Parameters:
/// - id: A unique identifier for the section.
/// - cells: The cells in the section.
/// - header: The header for the section.
/// - footer: The footer for the section.
/// - supplementaryViews: The supplementary views in the section.
public init<Cell: CellViewModel, Header: SupplementaryHeaderViewModel, Footer: SupplementaryFooterViewModel>(
id: UniqueIdentifier,
cells: [Cell],
header: Header?,
footer: Footer?,
supplementaryViews: [AnySupplementaryViewModel] = []
) {
self.init(
id: id,
anyCells: cells.map { $0.eraseToAnyViewModel() },
anyHeader: header?.eraseToAnyViewModel(),
anyFooter: footer?.eraseToAnyViewModel(),
anySupplementaryViews: supplementaryViews
)
}
/// Initializes a section.
///
/// - Parameters:
/// - id: A unique identifier for the section.
/// - cells: The cells in the section.
/// - header: The header for the section.
/// - footer: The footer for the section.
/// - supplementaryViews: The supplementary views in the section.
public init<Cell: CellViewModel, View: SupplementaryViewModel>(
id: UniqueIdentifier,
cells: [Cell],
header: AnySupplementaryViewModel? = nil,
footer: AnySupplementaryViewModel? = nil,
supplementaryViews: [View]
) {
self.init(
id: id,
anyCells: cells.map { $0.eraseToAnyViewModel() },
anyHeader: header,
anyFooter: footer,
anySupplementaryViews: supplementaryViews.map { $0.eraseToAnyViewModel() }
)
}
/// Initializes a section.
///
/// - Parameters:
/// - id: A unique identifier for the section.
/// - cells: The cells in the section.
/// - header: The header for the section.
/// - footer: The footer for the section.
/// - supplementaryViews: The supplementary views in the section.
public init<
Cell: CellViewModel,
Header: SupplementaryHeaderViewModel,
Footer: SupplementaryFooterViewModel,
View: SupplementaryViewModel>
(
id: UniqueIdentifier,
cells: [Cell],
header: Header?,
footer: Footer?,
supplementaryViews: [View]
) {
self.init(
id: id,
anyCells: cells.map { $0.eraseToAnyViewModel() },
anyHeader: header?.eraseToAnyViewModel(),
anyFooter: footer?.eraseToAnyViewModel(),
anySupplementaryViews: supplementaryViews.map { $0.eraseToAnyViewModel() }
)
}
private init(
id: UniqueIdentifier,
anyCells: [AnyCellViewModel],
anyHeader: AnySupplementaryViewModel?,
anyFooter: AnySupplementaryViewModel?,
anySupplementaryViews: [AnySupplementaryViewModel]
) {
if let anyHeader { precondition(anyHeader.isHeader) }
if let anyFooter { precondition(anyFooter.isFooter) }
precondition(anySupplementaryViews.allSatisfy(\.isOtherSupplementaryView))
self.id = id
self.cells = anyCells
self.header = anyHeader
self.footer = anyFooter
self.supplementaryViews = anySupplementaryViews
}
// MARK: Accessing Cells and Supplementary Views
/// Returns the cell for the specified `id`.
///
/// - Parameter id: The identifier for the cell.
/// - Returns: The cell, if it exists.
public func cellViewModel(for id: UniqueIdentifier) -> AnyCellViewModel? {
self.cells.first { $0.id == id }
}
/// Returns the supplementary view for the specified `id`.
///
/// - Parameter id: The identifier for the supplementary view.
/// - Returns: The supplementary view, if it exists.
public func supplementaryViewModel(for id: UniqueIdentifier) -> AnySupplementaryViewModel? {
self.supplementaryViews.first { $0.id == id }
}
// MARK: Internal
func cellRegistrations() -> Set<ViewRegistration> {
Set(self.cells.map(\.registration))
}
func headerFooterRegistrations() -> Set<ViewRegistration> {
Set([self.header, self.footer].compactMap { $0?.registration })
}
func supplementaryViewRegistrations() -> Set<ViewRegistration> {
Set(self.supplementaryViews.map(\.registration))
}
func allRegistrations() -> Set<ViewRegistration> {
let cells = self.cellRegistrations()
let headerFooter = self.headerFooterRegistrations()
let views = self.supplementaryViewRegistrations()
return cells.union(views).union(headerFooter)
}
func allSupplementaryViewsByIdentifier() -> [UniqueIdentifier: AnySupplementaryViewModel] {
let tuples = self.supplementaryViews.map { ($0.id, $0) }
return Dictionary(uniqueKeysWithValues: tuples)
}
}
// MARK: Collection, RandomAccessCollection
extension SectionViewModel: Collection, RandomAccessCollection {
/// :nodoc:
public var count: Int {
self.cells.count
}
/// :nodoc:
public var isEmpty: Bool {
self.cells.isEmpty
}
/// :nodoc:
public var startIndex: Int {
self.cells.startIndex
}
/// :nodoc:
public var endIndex: Int {
self.cells.endIndex
}
/// :nodoc:
public subscript(position: Int) -> AnyCellViewModel {
self.cells[position]
}
/// :nodoc:
public func index(after pos: Int) -> Int {
self.cells.index(after: pos)
}
}
extension SectionViewModel: CustomDebugStringConvertible {
/// :nodoc:
public var debugDescription: String {
sectionDebugDescription(self)
}
}