passepartout-apple/Passepartout/Library/Sources/UILibrary/Views/Paywall/PaywallView.swift

250 lines
6.6 KiB
Swift
Raw Normal View History

2018-10-11 07:13:19 +00:00
//
2024-09-23 13:02:26 +00:00
// PaywallView.swift
// Passepartout
2018-10-11 07:13:19 +00:00
//
2024-09-23 13:02:26 +00:00
// Created by Davide De Rosa on 9/10/24.
2024-01-14 13:34:21 +00:00
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
2018-10-11 07:13:19 +00:00
//
2018-11-03 21:33:30 +00:00
// https://github.com/passepartoutvpn
2018-10-11 07:13:19 +00:00
//
// This file is part of Passepartout.
//
// Passepartout is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Passepartout is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
//
import CommonLibrary
import CommonUtils
import StoreKit
2022-04-12 13:09:14 +00:00
import SwiftUI
2018-10-11 07:13:19 +00:00
2024-09-23 13:02:26 +00:00
struct PaywallView: View {
2023-03-17 20:55:47 +00:00
2024-09-23 13:02:26 +00:00
@EnvironmentObject
private var iapManager: IAPManager
2023-03-17 20:55:47 +00:00
2024-09-23 13:02:26 +00:00
@Binding
var isPresented: Bool
2023-03-17 20:55:47 +00:00
2024-09-23 13:02:26 +00:00
let feature: AppFeature
2023-03-17 20:55:47 +00:00
let suggestedProduct: AppProduct?
@State
private var oneTimeProduct: InAppProduct?
@State
private var recurringProducts: [InAppProduct] = []
@State
private var isFetchingProducts = true
@State
private var purchasingIdentifier: String?
@State
private var isPurchasePendingConfirmation = false
@StateObject
private var errorHandler: ErrorHandler = .default()
2022-04-12 13:09:14 +00:00
var body: some View {
Form {
if isFetchingProducts {
ProgressView()
.id(UUID())
} else if !recurringProducts.isEmpty {
Group {
productsView
subscriptionFeaturesView
restoreView
}
.disabled(purchasingIdentifier != nil)
}
2024-10-28 19:08:13 +00:00
}
.themeForm()
2024-10-28 19:08:13 +00:00
.toolbar(content: toolbarContent)
.alert(
Strings.Global.purchase,
isPresented: $isPurchasePendingConfirmation,
actions: pendingActions,
message: pendingMessage
)
.task(id: feature) {
await fetchAvailableProducts()
}
.withErrorHandler(errorHandler)
}
}
private extension PaywallView {
var title: String {
Strings.Global.purchase
}
var subscriptionFeatures: [AppFeature] {
AppFeature.allCases.sorted {
$0.localizedDescription < $1.localizedDescription
}
}
@ViewBuilder
var productsView: some View {
oneTimeProduct.map {
PaywallProductView(
iapManager: iapManager,
style: .oneTime,
product: $0,
purchasingIdentifier: $purchasingIdentifier,
onComplete: onComplete,
onError: onError
)
.themeSection(header: Strings.Paywall.Sections.OneTime.header)
}
ForEach(recurringProducts, id: \.productIdentifier) {
PaywallProductView(
iapManager: iapManager,
style: .recurring,
product: $0,
purchasingIdentifier: $purchasingIdentifier,
onComplete: onComplete,
onError: onError
)
}
.themeSection(header: Strings.Paywall.Sections.Recurring.header)
}
#if os(iOS) || os(tvOS)
var subscriptionFeaturesView: some View {
ForEach(subscriptionFeatures, id: \.id) { feature in
Text(feature.localizedDescription)
}
.themeSection(header: Strings.Paywall.Sections.Features.header)
}
#else
var subscriptionFeaturesView: some View {
Table(subscriptionFeatures) {
TableColumn(Strings.Paywall.Sections.Features.header, value: \.localizedDescription)
}
}
#endif
var restoreView: some View {
RestorePurchasesButton(errorHandler: errorHandler)
.themeSectionWithSingleRow(
header: Strings.Paywall.Sections.Restore.header,
footer: Strings.Paywall.Sections.Restore.footer,
above: true
)
2024-09-23 13:02:26 +00:00
}
}
private extension PaywallView {
@ToolbarContentBuilder
func toolbarContent() -> some ToolbarContent {
ToolbarItem(placement: .cancellationAction) {
Button {
isPresented = false
} label: {
ThemeCloseLabel()
}
}
}
func pendingActions() -> some View {
Button(Strings.Global.ok) {
isPresented = false
}
}
func pendingMessage() -> some View {
Text(Strings.Paywall.Alerts.Pending.message)
}
}
// MARK: -
private extension PaywallView {
func fetchAvailableProducts() async {
isFetchingProducts = true
defer {
isFetchingProducts = false
}
var list: [AppProduct] = []
if let suggestedProduct {
list.append(suggestedProduct)
}
list.append(.Full.Recurring.yearly)
list.append(.Full.Recurring.monthly)
do {
let availableProducts = try await iapManager.purchasableProducts(for: list)
guard !availableProducts.isEmpty else {
throw AppError.emptyProducts
2022-04-12 13:09:14 +00:00
}
oneTimeProduct = availableProducts.first {
guard let suggestedProduct else {
return false
}
return $0.productIdentifier.hasSuffix(suggestedProduct.rawValue)
}
recurringProducts = availableProducts.filter {
$0.productIdentifier != oneTimeProduct?.productIdentifier
}
} catch {
onError(error, dismissing: true)
}
}
func onComplete(_ productIdentifier: String, result: InAppPurchaseResult) {
switch result {
case .done:
isPresented = false
case .pending:
isPurchasePendingConfirmation = true
case .cancelled:
break
case .notFound:
fatalError("Product not found: \(productIdentifier)")
2022-04-12 13:09:14 +00:00
}
}
2024-09-23 13:02:26 +00:00
func onError(_ error: Error) {
onError(error, dismissing: false)
}
func onError(_ error: Error, dismissing: Bool) {
errorHandler.handle(error, title: Strings.Global.purchase) {
if dismissing {
isPresented = false
}
}
}
}
// MARK: - Previews
#Preview {
PaywallView(
isPresented: .constant(true),
feature: .appleTV,
suggestedProduct: .Features.appleTV
)
.withMockEnvironment()
2018-10-11 07:13:19 +00:00
}