CHIPageControlAleppo.swift 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //
  2. // CHIPageControlAleppo.swift
  3. // CHIPageControl ( https://github.com/ChiliLabs/CHIPageControl )
  4. //
  5. // Copyright (c) 2017 Chili ( http://chi.lv )
  6. //
  7. //
  8. // Permission is hereby granted, free of charge, to any person obtaining a copy
  9. // of this software and associated documentation files (the "Software"), to deal
  10. // in the Software without restriction, including without limitation the rights
  11. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. // copies of the Software, and to permit persons to whom the Software is
  13. // furnished to do so, subject to the following conditions:
  14. //
  15. // The above copyright notice and this permission notice shall be included in
  16. // all copies or substantial portions of the Software.
  17. //
  18. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. // THE SOFTWARE.
  25. import UIKit
  26. open class CHIPageControlAleppo: CHIBasePageControl {
  27. fileprivate var diameter: CGFloat {
  28. return radius * 2
  29. }
  30. fileprivate var inactive = [CHILayer]()
  31. fileprivate var active: CHILayer = CHILayer()
  32. required public init?(coder aDecoder: NSCoder) {
  33. super.init(coder: aDecoder)
  34. }
  35. public override init(frame: CGRect) {
  36. super.init(frame: frame)
  37. }
  38. override func updateNumberOfPages(_ count: Int) {
  39. inactive.forEach { $0.removeFromSuperlayer() }
  40. inactive = [CHILayer]()
  41. inactive = (0..<count).map {_ in
  42. let layer = CHILayer()
  43. self.layer.addSublayer(layer)
  44. return layer
  45. }
  46. self.layer.addSublayer(active)
  47. setNeedsLayout()
  48. self.invalidateIntrinsicContentSize()
  49. }
  50. override func update(for progress: Double) {
  51. guard progress >= 0 && progress <= Double(numberOfPages - 1),
  52. let firstFrame = self.inactive.first?.frame,
  53. numberOfPages > 1 else { return }
  54. let normalized = progress * Double(diameter + padding)
  55. let distance = abs(round(progress) - progress)
  56. let mult = 1 + distance * 2
  57. var frame = active.frame
  58. frame.origin.x = CGFloat(normalized) + firstFrame.origin.x
  59. frame.size.width = frame.height * CGFloat(mult)
  60. frame.size.height = self.diameter
  61. active.frame = frame
  62. }
  63. override open func layoutSubviews() {
  64. super.layoutSubviews()
  65. let floatCount = CGFloat(inactive.count)
  66. let x = (self.bounds.size.width - self.diameter*floatCount - self.padding*(floatCount-1))*0.5
  67. let y = (self.bounds.size.height - self.diameter)*0.5
  68. var frame = CGRect(x: x, y: y, width: self.diameter, height: self.diameter)
  69. active.cornerRadius = self.radius
  70. active.backgroundColor = (self.currentPageTintColor ?? self.tintColor)?.cgColor
  71. active.frame = frame
  72. inactive.enumerated().forEach() { index, layer in
  73. layer.backgroundColor = self.tintColor(position: index).withAlphaComponent(self.inactiveTransparency).cgColor
  74. if self.borderWidth > 0 {
  75. layer.borderWidth = self.borderWidth
  76. layer.borderColor = self.tintColor(position: index).cgColor
  77. }
  78. layer.cornerRadius = self.radius
  79. layer.frame = frame
  80. frame.origin.x += self.diameter + self.padding
  81. }
  82. update(for: progress)
  83. }
  84. override open var intrinsicContentSize: CGSize {
  85. return sizeThatFits(CGSize.zero)
  86. }
  87. override open func sizeThatFits(_ size: CGSize) -> CGSize {
  88. return CGSize(width: CGFloat(inactive.count) * self.diameter + CGFloat(inactive.count - 1) * self.padding,
  89. height: self.diameter)
  90. }
  91. override open func didTouch(gesture: UITapGestureRecognizer) {
  92. let point = gesture.location(ofTouch: 0, in: self)
  93. if let touchIndex = inactive.enumerated().first(where: { $0.element.hitTest(point) != nil })?.offset {
  94. delegate?.didTouch(pager: self, index: touchIndex)
  95. }
  96. }
  97. }