forked from RevenueCat/purchases-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPaywallView.swift
224 lines (188 loc) · 7.11 KB
/
PaywallView.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
//
// PaywallView.swift
// Magic Weather SwiftUI
//
// Created by Cody Kerns on 1/19/21.
//
import SwiftUI
import RevenueCat
/*
An example paywall that uses the current offering.
*/
struct PaywallView: View {
/// - This binding is passed from ContentView: `paywallPresented`
@Binding var isPresented: Bool
/// - This can change during the lifetime of the PaywallView (e.g. if poor network conditions mean that loading offerings is slow)
/// So set this as an observed object to trigger view updates as necessary
@ObservedObject var userViewModel = UserViewModel.shared
/// - The current offering saved from PurchasesDelegateHandler
/// if this is nil, then you might want to show a loading indicator or similar
private var offering: Offering? {
userViewModel.offerings?.current
}
var body: some View {
PaywallContent(offering: self.offering, isPresented: self.$isPresented)
}
}
private struct PaywallContent: View {
var offering: Offering?
var isPresented: Binding<Bool>
/// - State for displaying an overlay view
@State private var isPurchasing: Bool = false
@State private var error: NSError?
@State private var displayError: Bool = false
var body: some View {
NavigationView {
ZStack {
/// - The paywall view list displaying each package
List {
Section(header: Text("\nMagic Weather Premium"), footer: Text(Self.footerText)) {
ForEach(offering?.availablePackages ?? []) { package in
PackageCellView(package: package) { (package) in
/// - Set 'isPurchasing' state to `true`
isPurchasing = true
/// - Purchase a package
do {
let result = try await Purchases.shared.purchase(package: package)
/// - Set 'isPurchasing' state to `false`
self.isPurchasing = false
if !result.userCancelled {
self.isPresented.wrappedValue = false
}
} catch {
self.isPurchasing = false
self.error = error as NSError
self.displayError = true
}
}
}
}
}
.listStyle(InsetGroupedListStyle())
.navigationBarTitle("✨ Magic Weather Premium")
.navigationBarTitleDisplayMode(.inline)
.frame(maxWidth: .infinity, maxHeight: .infinity)
.edgesIgnoringSafeArea(.bottom)
/// - Display an overlay during a purchase
Rectangle()
.foregroundColor(Color.black)
.opacity(isPurchasing ? 0.5: 0.0)
.edgesIgnoringSafeArea(.all)
}
}
.navigationViewStyle(StackNavigationViewStyle())
.colorScheme(.dark)
.alert(
isPresented: self.$displayError,
error: self.error,
actions: { _ in
Button(role: .cancel,
action: { self.displayError = false },
label: { Text("OK") })
},
message: { Text($0.recoverySuggestion ?? "Please try again") }
)
}
private static let footerText = "Don't forget to add your subscription terms and conditions. Read more about this here: https://www.revenuecat.com/blog/schedule-2-section-3-8-b"
}
/* The cell view for each package */
private struct PackageCellView: View {
let package: Package
let onSelection: (Package) async -> Void
var body: some View {
Button {
Task {
await self.onSelection(self.package)
}
} label: {
self.buttonLabel
}
.buttonStyle(.plain)
}
private var buttonLabel: some View {
HStack {
VStack {
HStack {
Text(package.storeProduct.localizedTitle)
.font(.title3)
.bold()
Spacer()
}
HStack {
Text(package.terms)
.font(.subheadline)
.foregroundColor(.secondary)
Spacer()
}
}
.padding([.top, .bottom], 8.0)
Spacer()
Text(package.localizedPriceString)
.font(.title3)
.bold()
}
.contentShape(Rectangle()) // Make the whole cell tappable
}
}
extension NSError: LocalizedError {
public var errorDescription: String? {
return self.localizedDescription
}
}
struct PaywallView_Previews: PreviewProvider {
private static let product1 = TestStoreProduct(
localizedTitle: "PRO monthly",
price: 3.99,
localizedPriceString: "$3.99",
productIdentifier: "com.revenuecat.product",
productType: .autoRenewableSubscription,
localizedDescription: "Description",
subscriptionGroupIdentifier: "group",
subscriptionPeriod: .init(value: 1, unit: .month),
introductoryDiscount: .init(
identifier: "intro",
price: 0,
localizedPriceString: "$0.00",
paymentMode: .freeTrial,
subscriptionPeriod: .init(value: 1, unit: .week),
numberOfPeriods: 1,
type: .introductory
),
discounts: []
)
private static let product2 = TestStoreProduct(
localizedTitle: "PRO annual",
price: 34.99,
localizedPriceString: "$34.99",
productIdentifier: "com.revenuecat.product",
productType: .autoRenewableSubscription,
localizedDescription: "Description",
subscriptionGroupIdentifier: "group",
subscriptionPeriod: .init(value: 1, unit: .year),
introductoryDiscount: nil,
discounts: []
)
private static let offering = Offering(
identifier: Self.offeringIdentifier,
serverDescription: "Main offering",
metadata: [:],
availablePackages: [
.init(
identifier: "monthly",
packageType: .monthly,
storeProduct: product1.toStoreProduct(),
offeringIdentifier: Self.offeringIdentifier
),
.init(
identifier: "annual",
packageType: .annual,
storeProduct: product2.toStoreProduct(),
offeringIdentifier: Self.offeringIdentifier
)
]
)
private static let offeringIdentifier = "offering"
static var previews: some View {
PaywallContent(offering: Self.offering, isPresented: .constant(true))
}
}