2022-04-12 13:09:14 +00:00
|
|
|
//
|
|
|
|
// ProfileView.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 2/6/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 PassepartoutCore
|
|
|
|
|
|
|
|
struct ProfileView: View {
|
|
|
|
enum ModalType: Int, Identifiable {
|
2022-04-18 14:42:17 +00:00
|
|
|
case shortcuts
|
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case rename
|
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
case paywallShortcuts
|
|
|
|
|
2022-04-13 18:12:25 +00:00
|
|
|
case paywallNetworkSettings
|
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case paywallTrustedNetworks
|
|
|
|
|
|
|
|
var id: Int {
|
|
|
|
return rawValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Environment(\.presentationMode) private var presentationMode
|
|
|
|
|
|
|
|
@ObservedObject private var profileManager: ProfileManager
|
|
|
|
|
2022-04-22 13:58:03 +00:00
|
|
|
private var isLoading: Bool {
|
|
|
|
profileManager.isLoadingCurrentProfile
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
|
2022-04-21 17:02:47 +00:00
|
|
|
private var isExisting: Bool {
|
2022-04-22 13:58:03 +00:00
|
|
|
profileManager.isCurrentProfileExisting()
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@State private var modalType: ModalType?
|
|
|
|
|
2022-04-22 13:58:03 +00:00
|
|
|
init() {
|
|
|
|
profileManager = .shared
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
debugChanges()
|
|
|
|
return Group {
|
2022-04-21 17:02:47 +00:00
|
|
|
if isExisting {
|
|
|
|
mainView
|
2022-04-12 13:09:14 +00:00
|
|
|
} else {
|
2022-04-22 18:09:26 +00:00
|
|
|
WelcomeView()
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
2022-04-21 13:56:26 +00:00
|
|
|
}.toolbar {
|
2022-04-26 21:27:03 +00:00
|
|
|
MainMenu(
|
|
|
|
currentProfile: profileManager.currentProfile,
|
|
|
|
modalType: $modalType
|
|
|
|
).disabled(!isExisting)
|
2022-04-21 13:56:26 +00:00
|
|
|
}.sheet(item: $modalType, content: presentedModal)
|
|
|
|
.navigationTitle(title)
|
|
|
|
.themeSecondaryView()
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private var title: String {
|
2022-04-22 13:58:03 +00:00
|
|
|
profileManager.currentProfile.name
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private var mainView: some View {
|
2022-04-21 17:02:47 +00:00
|
|
|
List {
|
|
|
|
VPNSection(
|
|
|
|
currentProfile: profileManager.currentProfile,
|
2022-04-22 13:58:03 +00:00
|
|
|
isLoading: isLoading
|
2022-04-21 17:02:47 +00:00
|
|
|
)
|
2022-04-22 13:58:03 +00:00
|
|
|
if !isLoading {
|
2022-04-21 17:02:47 +00:00
|
|
|
ProviderSection(currentProfile: profileManager.currentProfile)
|
|
|
|
ConfigurationSection(
|
|
|
|
currentProfile: profileManager.currentProfile,
|
|
|
|
modalType: $modalType
|
|
|
|
)
|
|
|
|
ExtraSection(currentProfile: profileManager.currentProfile)
|
|
|
|
DiagnosticsSection(currentProfile: profileManager.currentProfile)
|
|
|
|
}
|
|
|
|
}
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@ViewBuilder
|
|
|
|
private func presentedModal(_ modalType: ModalType) -> some View {
|
|
|
|
switch modalType {
|
2022-04-18 14:42:17 +00:00
|
|
|
case .shortcuts:
|
|
|
|
NavigationView {
|
|
|
|
ShortcutsView(target: profileManager.currentProfile.value)
|
|
|
|
}.themeGlobal()
|
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case .rename:
|
|
|
|
NavigationView {
|
|
|
|
RenameView(currentProfile: profileManager.currentProfile)
|
|
|
|
}.themeGlobal()
|
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
case .paywallShortcuts:
|
|
|
|
NavigationView {
|
|
|
|
PaywallView(
|
|
|
|
modalType: $modalType,
|
|
|
|
feature: .siriShortcuts
|
|
|
|
)
|
|
|
|
}.themeGlobal()
|
|
|
|
|
2022-04-13 18:12:25 +00:00
|
|
|
case .paywallNetworkSettings:
|
|
|
|
NavigationView {
|
|
|
|
PaywallView(
|
|
|
|
modalType: $modalType,
|
|
|
|
feature: .networkSettings
|
|
|
|
)
|
|
|
|
}.themeGlobal()
|
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case .paywallTrustedNetworks:
|
|
|
|
NavigationView {
|
|
|
|
PaywallView(
|
2022-04-13 19:01:06 +00:00
|
|
|
modalType: $modalType,
|
2022-04-12 13:09:14 +00:00
|
|
|
feature: .trustedNetworks
|
|
|
|
)
|
|
|
|
}.themeGlobal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|