156 lines
4.6 KiB
Swift
156 lines
4.6 KiB
Swift
//
|
|
// DonateView.swift
|
|
// Passepartout
|
|
//
|
|
// Created by Davide De Rosa on 2/8/22.
|
|
// Copyright (c) 2022 Davide De Rosa. All rights reserved.
|
|
//
|
|
// https://github.com/passepartoutvpn
|
|
//
|
|
// 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 SwiftUI
|
|
import StoreKit
|
|
|
|
struct DonateView: View {
|
|
enum AlertType: Identifiable {
|
|
case thankYou
|
|
|
|
case purchaseFailed(Error)
|
|
|
|
// XXX: alert ids
|
|
var id: Int {
|
|
switch self {
|
|
case .thankYou: return 1
|
|
|
|
case .purchaseFailed: return 2
|
|
}
|
|
}
|
|
}
|
|
|
|
@Environment(\.scenePhase) private var scenePhase
|
|
|
|
@ObservedObject private var productManager: ProductManager
|
|
|
|
@State private var alertType: AlertType?
|
|
|
|
@State private var pendingDonationIdentifier: String?
|
|
|
|
init() {
|
|
productManager = .shared
|
|
}
|
|
|
|
var body: some View {
|
|
List {
|
|
productsSection
|
|
.disabled(pendingDonationIdentifier != nil)
|
|
}.themeSecondaryView()
|
|
.navigationTitle(L10n.Donate.title)
|
|
.alert(item: $alertType, content: presentedAlert)
|
|
}
|
|
|
|
private func presentedAlert(_ alertType: AlertType) -> Alert {
|
|
switch alertType {
|
|
case .thankYou:
|
|
return Alert(
|
|
title: Text(L10n.Donate.Alerts.Purchase.Success.title),
|
|
message: Text(L10n.Donate.Alerts.Purchase.Success.message),
|
|
dismissButton: .cancel(Text(L10n.Global.Strings.ok))
|
|
)
|
|
|
|
case .purchaseFailed(let error):
|
|
return Alert(
|
|
title: Text(L10n.Donate.title),
|
|
message: Text(L10n.Donate.Alerts.Purchase.Failure.message(error.localizedDescription)),
|
|
dismissButton: .cancel(Text(L10n.Global.Strings.ok))
|
|
)
|
|
}
|
|
}
|
|
|
|
private var productsSection: some View {
|
|
Section(
|
|
header: Text(L10n.Donate.Sections.OneTime.header),
|
|
footer: Text(L10n.Donate.Sections.OneTime.footer)
|
|
.xxxThemeTruncation()
|
|
) {
|
|
ReloadingContent(
|
|
observing: productManager.donations,
|
|
equality: {
|
|
Set($0.map(\.productIdentifier)) == Set($1.map(\.productIdentifier))
|
|
},
|
|
reload: {
|
|
productManager.refreshProducts()
|
|
}
|
|
) {
|
|
ForEach($0, id: \.productIdentifier, content: productRow)
|
|
}
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
private func productRow(_ product: SKProduct) -> some View {
|
|
HStack {
|
|
Button(product.localizedTitle) {
|
|
purchaseProduct(product)
|
|
}
|
|
Spacer()
|
|
if let pending = pendingDonationIdentifier, pending == product.productIdentifier {
|
|
ProgressView()
|
|
} else {
|
|
product.localizedPrice.map {
|
|
Text($0)
|
|
.foregroundColor(themeSecondaryColor)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
extension DonateView {
|
|
private func purchaseProduct(_ product: SKProduct) {
|
|
pendingDonationIdentifier = product.productIdentifier
|
|
productManager.purchase(product, completionHandler: handlePurchaseResult)
|
|
}
|
|
|
|
private func handlePurchaseResult(_ result: Result<InAppPurchaseResult, Error>) {
|
|
switch result {
|
|
case .success(let value):
|
|
if case .done = value {
|
|
alertType = .thankYou
|
|
} else {
|
|
// cancelled
|
|
}
|
|
|
|
case .failure(let error):
|
|
alertType = .purchaseFailed(error)
|
|
}
|
|
pendingDonationIdentifier = nil
|
|
}
|
|
}
|
|
|
|
private extension ProductManager {
|
|
var donations: [SKProduct] {
|
|
return products.filter { product in
|
|
LocalProduct.allDonations.contains {
|
|
$0.matchesStoreKitProduct(product)
|
|
}
|
|
}.sorted {
|
|
$0.price.decimalValue < $1.price.decimalValue
|
|
}
|
|
}
|
|
}
|