-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathStackItemImpl.swift
More file actions
527 lines (439 loc) · 14.9 KB
/
StackItemImpl.swift
File metadata and controls
527 lines (439 loc) · 14.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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
// Copyright (c) 2017 Luc Dion
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
import Foundation
#if os(iOS) || os(tvOS)
import UIKit
enum MeasureType {
case sizeThatFitsWidth
case sizeThatFitsHeight
case aspectRatio
}
class StackItemImpl: NSObject, StackItem {
unowned internal let view: UIView
internal var width: Value?
internal var minWidth: Value?
internal var maxWidth: Value?
internal var height: Value?
internal var minHeight: Value?
internal var maxHeight: Value?
internal var _aspectRatio: CGFloat?
internal var marginTop: Value?
internal var marginLeft: Value?
internal var marginStart: Value?
internal var marginBottom: Value?
internal var marginRight: Value?
internal var marginEnd: Value?
internal var grow: CGFloat?
internal var shrink: CGFloat?
internal var measureType: MeasureType?
var alignSelf: SAlignSelf?
var isHidden = false
init(view: UIView) {
self.view = view
}
//
// MARK: grow / shrink
//
@discardableResult
public func grow(_ value: CGFloat) -> StackItem {
grow = value
return self
}
@discardableResult
public func shrink(_ value: CGFloat) -> StackItem {
shrink = value
return self
}
@discardableResult
public func markDirty() -> StackItem {
view.setNeedsLayout()
if let stackView = view.superview as? StackView {
stackView.markDirty()
}
return self
}
var isIncludedInLayout: Bool = true
@discardableResult
func isIncludedInLayout(_ included: Bool) -> StackItem {
isIncludedInLayout = included
return self
}
//
// width, height
//
@discardableResult
func width(_ value: CGFloat?) -> StackItem {
width = Value(value)
return self
}
@discardableResult
func width(_ percent: SPercent) -> StackItem {
width = Value(percent)
return self
}
@discardableResult
func minWidth(_ value: CGFloat?) -> StackItem {
minWidth = Value(value)
return self
}
@discardableResult
func minWidth(_ percent: SPercent) -> StackItem {
minWidth = Value(percent)
return self
}
@discardableResult
func maxWidth(_ value: CGFloat?) -> StackItem {
maxWidth = Value(value)
return self
}
@discardableResult
func maxWidth(_ percent: SPercent) -> StackItem {
maxWidth = Value(percent)
return self
}
@discardableResult
func height(_ value: CGFloat?) -> StackItem {
height = Value(value)
return self
}
@discardableResult
func height(_ percent: SPercent) -> StackItem {
height = Value(percent)
return self
}
@discardableResult
func minHeight(_ value: CGFloat?) -> StackItem {
minHeight = Value(value)
return self
}
@discardableResult
func minHeight(_ percent: SPercent) -> StackItem {
minHeight = Value(percent)
return self
}
@discardableResult
func maxHeight(_ value: CGFloat?) -> StackItem {
maxHeight = Value(value)
return self
}
@discardableResult
func maxHeight(_ percent: SPercent) -> StackItem {
maxHeight = Value(percent)
return self
}
@discardableResult
func size(_ size: CGSize) -> StackItem {
width = Value(size.width)
height = Value(size.height)
return self
}
@discardableResult
func size(_ sideLength: CGFloat?) -> StackItem {
width = Value(sideLength)
height = Value(sideLength)
return self
}
@discardableResult
func size(_ percent: SPercent) -> StackItem {
width = Value(percent)
height = Value(percent)
return self
}
@discardableResult
public func aspectRatio(_ value: CGFloat?) -> StackItem {
_aspectRatio = value
return self
}
@discardableResult
func aspectRatio() -> StackItem {
if let imageView = view as? UIImageView {
if let imageSize = imageView.image?.size {
_aspectRatio = imageSize.width / imageSize.height
}
}
return self
}
@discardableResult
public func alignSelf(_ value: SAlignSelf) -> StackItem {
alignSelf = value
return self
}
//
// MARK: Margins
//
@discardableResult
public func marginTop(_ value: CGFloat) -> StackItem {
marginTop = Value(value)
return self
}
@discardableResult
public func marginTop(_ value: SPercent) -> StackItem {
marginTop = Value(value)
return self
}
@discardableResult
public func marginLeft(_ value: CGFloat) -> StackItem {
marginLeft = Value(value)
return self
}
@discardableResult
public func marginLeft(_ value: SPercent) -> StackItem {
marginLeft = Value(value)
return self
}
@discardableResult
public func marginBottom(_ value: CGFloat) -> StackItem {
marginBottom = Value(value)
return self
}
@discardableResult
public func marginBottom(_ value: SPercent) -> StackItem {
marginBottom = Value(value)
return self
}
@discardableResult
public func marginRight(_ value: CGFloat) -> StackItem {
marginRight = Value(value)
return self
}
@discardableResult
public func marginRight(_ value: SPercent) -> StackItem {
marginRight = Value(value)
return self
}
@discardableResult
public func marginStart(_ value: CGFloat) -> StackItem {
marginStart = Value(value)
return self
}
@discardableResult
public func marginStart(_ value: SPercent) -> StackItem {
marginStart = Value(value)
return self
}
@discardableResult
public func marginEnd(_ value: CGFloat) -> StackItem {
marginEnd = Value(value)
return self
}
@discardableResult
public func marginEnd(_ value: SPercent) -> StackItem {
marginEnd = Value(value)
return self
}
@discardableResult
public func marginHorizontal(_ value: CGFloat) -> StackItem {
marginLeft = Value(value)
marginRight = Value(value)
return self
}
@discardableResult
func marginHorizontal(_ value: SPercent) -> StackItem {
marginLeft = Value(value)
marginRight = Value(value)
return self
}
@discardableResult
public func marginVertical(_ value: CGFloat) -> StackItem {
marginTop = Value(value)
marginBottom = Value(value)
return self
}
@discardableResult
func marginVertical(_ value: SPercent) -> StackItem {
marginTop = Value(value)
marginBottom = Value(value)
return self
}
@discardableResult
public func margin(_ insets: UIEdgeInsets) -> StackItem {
marginTop = Value(insets.top)
marginLeft = Value(insets.left)
marginBottom = Value(insets.bottom)
marginRight = Value(insets.right)
return self
}
@available(tvOS 11.0, iOS 11.0, *)
@discardableResult
func margin(_ directionalInsets: NSDirectionalEdgeInsets) -> StackItem {
marginTop = Value(directionalInsets.top)
marginStart = Value(directionalInsets.leading)
marginBottom = Value(directionalInsets.bottom)
marginEnd = Value(directionalInsets.trailing)
return self
}
@discardableResult
public func margin(_ value: CGFloat) -> StackItem {
return margin(value, value, value, value)
}
@discardableResult
func margin(_ value: SPercent) -> StackItem {
marginTop = Value(value)
marginLeft = Value(value)
marginRight = Value(value)
marginBottom = Value(value)
return self
}
@discardableResult func margin(_ vertical: CGFloat, _ horizontal: CGFloat) -> StackItem {
return margin(vertical, horizontal, vertical, horizontal)
}
@discardableResult func margin(_ top: CGFloat, _ horizontal: CGFloat, _ bottom: CGFloat) -> StackItem {
marginTop = Value(top)
marginLeft = Value(horizontal)
marginRight = Value(horizontal)
marginBottom = Value(bottom)
return self
}
@discardableResult
public func margin(_ top: CGFloat, _ left: CGFloat, _ bottom: CGFloat, _ right: CGFloat) -> StackItem {
marginTop = Value(top)
marginLeft = Value(left)
marginBottom = Value(bottom)
marginRight = Value(right)
return self
}
@discardableResult
public func backgroundColor(_ color: UIColor) -> StackItem {
view.backgroundColor = color
return self
}
@discardableResult
public func alpha(_ alpha: CGFloat) -> StackItem {
view.alpha = alpha
return self
}
}
extension StackItemImpl {
func applyMargins(toWidth width: CGFloat) -> CGFloat {
var result = width
if let marginLeftPixels = marginLeft?.resolve(usingContainerDimension: width) {
result -= marginLeftPixels
}
if let marginRightPixels = marginRight?.resolve(usingContainerDimension: width) {
result -= marginRightPixels
}
if let marginStartPixels = marginStart?.resolve(usingContainerDimension: width) {
result -= marginStartPixels
}
if let marginEndPixels = marginEnd?.resolve(usingContainerDimension: width) {
result -= marginEndPixels
}
return result
}
func applyMargins(toHeight height: CGFloat) -> CGFloat {
var result = height
if let marginTopPixels = marginTop?.resolve(usingContainerDimension: height) {
result -= marginTopPixels
}
if let marginBottomPixels = marginBottom?.resolve(usingContainerDimension: height) {
result -= marginBottomPixels
}
return result
}
func resolveStackItemAlign(stackAlignItems: SAlignItems) -> SAlignItems {
var align = stackAlignItems
if let alignSelf = alignSelf {
switch alignSelf {
case .auto: align = stackAlignItems
case .stretch: align = .stretch
case .start: align = .start
case .center: align = .center
case .end: align = .end
}
}
return align
}
func applyMargins(toCrossAxisLength length: CGFloat, container: Container) -> CGFloat {
var itemCrossAxisLength: CGFloat = 0
switch container.direction {
case .column: itemCrossAxisLength = applyMargins(toWidth: length)
case .row: itemCrossAxisLength = applyMargins(toHeight: length)
}
if let containerCrossAxisInnerLength = container.crossAxisInnerLength {
let crossAxisStartMargin = self.crossAxisStartMargin(container: container)
let crossAxisEndMargin = self.crossAxisEndMargin(container: container)
if crossAxisStartMargin + itemCrossAxisLength + crossAxisEndMargin > containerCrossAxisInnerLength {
// The computed itemCrossAxisLength is too long, we must respect margins!
itemCrossAxisLength = containerCrossAxisInnerLength - crossAxisStartMargin - crossAxisEndMargin
}
}
return itemCrossAxisLength
}
func mainAxisStartMargin(container: Container) -> CGFloat {
if container.direction == .column {
return resolveMarginTop(container: container)
} else {
return resolveMarginLeft(container: container)
}
}
func mainAxisEndMargin(container: Container) -> CGFloat {
if container.direction == .column {
return resolveMarginBottom(container: container)
} else {
return resolveMarginRight(container: container)
}
}
func crossAxisStartMargin(container: Container) -> CGFloat {
if container.direction == .column {
return resolveMarginLeft(container: container)
} else {
return resolveMarginTop(container: container)
}
}
func crossAxisEndMargin(container: Container) -> CGFloat {
if container.direction == .column {
return resolveMarginRight(container: container)
} else {
return resolveMarginBottom(container: container)
}
}
func resolveMarginTop(container: Container) -> CGFloat {
if let marginTopPixels = marginTop?.resolve(usingContainerDimension: container.height) {
return marginTopPixels
} else {
return 0
}
}
func resolveMarginBottom(container: Container) -> CGFloat {
if let marginBottomPixels = marginBottom?.resolve(usingContainerDimension: container.height) {
return marginBottomPixels
} else {
return 0
}
}
func resolveMarginLeft(container: Container) -> CGFloat {
if let marginLeftPixels = marginLeft?.resolve(usingContainerDimension: container.width) {
return marginLeftPixels
} else if let marginStartPixels = marginStart?.resolve(usingContainerDimension: container.width) {
return marginStartPixels
} else {
return 0
}
}
func resolveMarginRight(container: Container) -> CGFloat {
if let marginRightPixels = marginRight?.resolve(usingContainerDimension: container.width) {
return marginRightPixels
} else if let marginEndPixels = marginEnd?.resolve(usingContainerDimension: container.width) {
return marginEndPixels
} else {
return 0
}
}
}
#endif