passepartout-apple/Passepartout/App/Views/DonateView.swift

160 lines
4.7 KiB
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// 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
2022-06-23 21:31:01 +00:00
import PassepartoutLibrary
2022-04-12 13:09:14 +00:00
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
2022-04-12 13:09:14 +00:00
@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)
// reloading
.onAppear {
productManager.refreshProducts()
}.onChange(of: scenePhase) { newValue in
if newValue == .active {
productManager.refreshProducts()
}
2022-04-23 10:08:24 +00:00
}.themeAnimation(on: productManager.isRefreshingProducts)
2022-04-12 13:09:14 +00:00
}
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 {
if !productManager.isRefreshingProducts {
ForEach(productManager.donations, id: \.productIdentifier, content: productRow)
} else {
ProgressView()
}
} header: {
Text(L10n.Donate.Sections.OneTime.header)
} footer: {
Text(L10n.Donate.Sections.OneTime.footer)
2022-04-12 13:09:14 +00:00
}
}
@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)
.themeSecondaryTextStyle()
2022-04-12 13:09:14 +00:00
}
}
}
}
}
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
}
}
}