mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-25 02:42:40 +00:00
35c10309a7
StoreKit ProductView performs the purchases internally without calling IAPManager.purchase(), which causes the IAPManager state to be momentarily outdated. Leverage PaywallView.onComplete() to reload the receipt and eventually trigger IAPManager.objectWillChange, so that the app is immediately unlocked on a successful purchase.
170 lines
4.6 KiB
Swift
170 lines
4.6 KiB
Swift
//
|
|
// ProfileContainerView.swift
|
|
// Passepartout
|
|
//
|
|
// Created by Davide De Rosa on 2/16/24.
|
|
// Copyright (c) 2024 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 CommonLibrary
|
|
import CommonUtils
|
|
import PassepartoutKit
|
|
import SwiftUI
|
|
|
|
struct ProfileContainerView: View, Routable {
|
|
let layout: ProfilesLayout
|
|
|
|
let profileManager: ProfileManager
|
|
|
|
let tunnel: ExtendedTunnel
|
|
|
|
let registry: Registry
|
|
|
|
@Binding
|
|
var isImporting: Bool
|
|
|
|
@ObservedObject
|
|
var errorHandler: ErrorHandler
|
|
|
|
var flow: ProfileFlow?
|
|
|
|
@StateObject
|
|
private var interactiveManager = InteractiveManager()
|
|
|
|
var body: some View {
|
|
debugChanges()
|
|
return innerView
|
|
.modifier(ContainerModifier(
|
|
profileManager: profileManager,
|
|
flow: flow
|
|
))
|
|
.modifier(ProfileImporterModifier(
|
|
profileManager: profileManager,
|
|
registry: registry,
|
|
isPresented: $isImporting,
|
|
errorHandler: errorHandler
|
|
))
|
|
.navigationTitle(Strings.Unlocalized.appName)
|
|
.themeModal(isPresented: $interactiveManager.isPresented, content: interactiveDestination)
|
|
.withErrorHandler(errorHandler)
|
|
}
|
|
}
|
|
|
|
private extension ProfileContainerView {
|
|
|
|
@ViewBuilder
|
|
var innerView: some View {
|
|
switch layout {
|
|
case .list:
|
|
ProfileListView(
|
|
profileManager: profileManager,
|
|
tunnel: tunnel,
|
|
interactiveManager: interactiveManager,
|
|
errorHandler: errorHandler,
|
|
flow: flow
|
|
)
|
|
|
|
case .grid:
|
|
ProfileGridView(
|
|
profileManager: profileManager,
|
|
tunnel: tunnel,
|
|
interactiveManager: interactiveManager,
|
|
errorHandler: errorHandler,
|
|
flow: flow
|
|
)
|
|
}
|
|
}
|
|
|
|
func interactiveDestination() -> some View {
|
|
InteractiveCoordinator(style: .modal, manager: interactiveManager) {
|
|
errorHandler.handle(
|
|
$0,
|
|
title: Strings.Global.connection,
|
|
message: Strings.Views.Profiles.Errors.tunnel
|
|
)
|
|
}
|
|
.presentationDetents([.medium])
|
|
}
|
|
}
|
|
|
|
private struct ContainerModifier: ViewModifier {
|
|
|
|
@ObservedObject
|
|
var profileManager: ProfileManager
|
|
|
|
let flow: ProfileFlow?
|
|
|
|
@State
|
|
private var search = ""
|
|
|
|
func body(content: Content) -> some View {
|
|
debugChanges()
|
|
return content
|
|
.themeProgress(
|
|
if: !profileManager.isReady,
|
|
isEmpty: !profileManager.hasProfiles,
|
|
emptyContent: {
|
|
VStack(spacing: 16) {
|
|
Text(Strings.Views.Profiles.Folders.noProfiles)
|
|
.themeEmptyMessage(fullScreen: false)
|
|
|
|
Button(Strings.Views.Profiles.Folders.NoProfiles.migrate) {
|
|
flow?.onMigrateProfiles()
|
|
}
|
|
}
|
|
}
|
|
)
|
|
.searchable(text: $search)
|
|
.onChange(of: search) {
|
|
profileManager.search(byName: $0)
|
|
}
|
|
.themeAnimation(on: profileManager.isReady, category: .profiles)
|
|
.themeAnimation(on: profileManager.headers, category: .profiles)
|
|
}
|
|
}
|
|
|
|
// MARK: - Previews
|
|
|
|
#Preview("List") {
|
|
PreviewView(layout: .list)
|
|
}
|
|
|
|
#Preview("Grid") {
|
|
PreviewView(layout: .grid)
|
|
}
|
|
|
|
private struct PreviewView: View {
|
|
let layout: ProfilesLayout
|
|
|
|
var body: some View {
|
|
NavigationStack {
|
|
ProfileContainerView(
|
|
layout: layout,
|
|
profileManager: .mock,
|
|
tunnel: .mock,
|
|
registry: Registry(),
|
|
isImporting: .constant(false),
|
|
errorHandler: .default()
|
|
)
|
|
}
|
|
.withMockEnvironment()
|
|
}
|
|
}
|