|
| 1 | +// |
| 2 | +// PageView.swift |
| 3 | +// ViewCTestApp |
| 4 | +// |
| 5 | +// Created by Marlo Kessler on 18.07.20. |
| 6 | +// Copyright © 2020 Marlo Kessler. All rights reserved. |
| 7 | +// |
| 8 | + |
| 9 | +import SwiftUI |
| 10 | + |
| 11 | +@available(iOS 13, *) |
| 12 | +public struct PageView<Content: View>: View { |
| 13 | + |
| 14 | + public init(pageCount: Int, |
| 15 | + currentIndex: Binding<Int> = Binding<Int>(get: {return 0}, set: {_ in}), |
| 16 | + @ViewBuilder content: @escaping () -> Content) |
| 17 | + { |
| 18 | + self.pageCount = pageCount |
| 19 | + self._currentIndex = currentIndex |
| 20 | + self.content = content |
| 21 | + } |
| 22 | + |
| 23 | + private init(_ pageCount: Int, |
| 24 | + _ currentIndex: Binding<Int>, |
| 25 | + _ hideIndicator: Bool, |
| 26 | + _ indicatorPosition: IndicatorPosition, |
| 27 | + _ currentPageIndicatorColor: UIColor?, |
| 28 | + _ indicatorColor: UIColor?, |
| 29 | + _ indicatorBackgroundColor:Color?, |
| 30 | + @ViewBuilder _ content: @escaping () -> Content) |
| 31 | + { |
| 32 | + self.pageCount = pageCount |
| 33 | + self._currentIndex = currentIndex |
| 34 | + |
| 35 | + self.hideIndicator = hideIndicator |
| 36 | + self.indicatorPosition = indicatorPosition |
| 37 | + self.currentPageIndicatorColor = currentPageIndicatorColor |
| 38 | + self.indicatorColor = indicatorColor |
| 39 | + self.indicatorBackgroundColor = indicatorBackgroundColor |
| 40 | + |
| 41 | + self.content = content |
| 42 | + } |
| 43 | + |
| 44 | + |
| 45 | + |
| 46 | + // MARK: - Variables |
| 47 | + private let pageCount: Int |
| 48 | + @Binding private var currentIndex: Int |
| 49 | + private let content: () -> Content |
| 50 | + |
| 51 | + @GestureState private var translation: CGFloat = 0 |
| 52 | + |
| 53 | + private var hideIndicator: Bool = false |
| 54 | + private var indicatorPosition: IndicatorPosition = .bottomInBounds |
| 55 | + private var indicatorColor: UIColor? |
| 56 | + private var currentPageIndicatorColor: UIColor? |
| 57 | + private var indicatorBackgroundColor: Color? |
| 58 | + |
| 59 | + |
| 60 | + |
| 61 | + // MARK: - Methods |
| 62 | + public func indicator(position: IndicatorPosition = .bottomInBounds, current: UIColor? = nil, other: UIColor? = nil, background: Color? = nil) -> PageView { |
| 63 | + return PageView(pageCount, $currentIndex, hideIndicator, position, current, other, background, content) |
| 64 | + } |
| 65 | + |
| 66 | + public func hideIndicator(_ hide: Bool = true) -> PageView { |
| 67 | + return PageView(pageCount, $currentIndex, hide, indicatorPosition, currentPageIndicatorColor, indicatorColor, indicatorBackgroundColor, content) |
| 68 | + } |
| 69 | + |
| 70 | + |
| 71 | + |
| 72 | + // MARK: - View |
| 73 | + private var indicator: some View { |
| 74 | + PageIndicator(currentIndex: self.$currentIndex, |
| 75 | + pageNumber: self.pageCount, |
| 76 | + pageIndicatorColor: self.indicatorColor, |
| 77 | + currentPageIndicatorColor: self.currentPageIndicatorColor) |
| 78 | + .frame(height: 15) |
| 79 | + .padding(.horizontal, 8) |
| 80 | + .background(self.indicatorBackgroundColor ?? Color.clear.opacity(0.5)) |
| 81 | + .clipped() |
| 82 | + .cornerRadius(7.5) |
| 83 | + } |
| 84 | + |
| 85 | + public var body: some View { |
| 86 | + GeometryReader { geometry in |
| 87 | + |
| 88 | + ZStack { |
| 89 | + |
| 90 | + if self.indicatorPosition == .topInBounds { |
| 91 | + VStack { |
| 92 | + self.indicator |
| 93 | + .offset(y: 16) |
| 94 | + Spacer() |
| 95 | + } |
| 96 | + .zIndex(1) |
| 97 | + } |
| 98 | + |
| 99 | + VStack { |
| 100 | + |
| 101 | + if self.indicatorPosition == .topOutBounds { self.indicator } |
| 102 | + |
| 103 | + HStack(spacing: 0) { |
| 104 | + self.content().frame(width: geometry.size.width) |
| 105 | + } |
| 106 | + .frame(width: geometry.size.width, alignment: .leading) |
| 107 | + .offset(x: -CGFloat(self.currentIndex) * geometry.size.width) |
| 108 | + .offset(x: self.translation) |
| 109 | + .clipped() |
| 110 | + .animation(.interactiveSpring()) |
| 111 | + .gesture( |
| 112 | + DragGesture() |
| 113 | + .updating(self.$translation) { value, state, _ in |
| 114 | + state = value.translation.width |
| 115 | + } |
| 116 | + .onEnded { value in |
| 117 | + let offset = value.translation.width / geometry.size.width |
| 118 | + let newIndex = (CGFloat(self.currentIndex) - offset).rounded() |
| 119 | + self.currentIndex = min(max(Int(newIndex), 0), self.pageCount - 1) |
| 120 | + } |
| 121 | + ) |
| 122 | + |
| 123 | + if self.indicatorPosition == .bottomOutBounds { self.indicator } |
| 124 | + } |
| 125 | + |
| 126 | + if self.indicatorPosition == .bottomInBounds { |
| 127 | + VStack { |
| 128 | + Spacer() |
| 129 | + self.indicator |
| 130 | + .offset(y: -16) |
| 131 | + } |
| 132 | + } |
| 133 | + |
| 134 | + } |
| 135 | + } |
| 136 | + } |
| 137 | +} |
0 commit comments