2022-04-12 13:09:14 +00:00
|
|
|
//
|
|
|
|
// ProfileView.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 2/6/22.
|
2023-03-17 15:56:19 +00:00
|
|
|
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
|
2022-04-12 13:09:14 +00:00
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
//
|
|
|
|
|
2022-06-23 21:31:01 +00:00
|
|
|
import PassepartoutLibrary
|
2023-04-04 07:50:45 +00:00
|
|
|
import SwiftUI
|
2022-04-12 13:09:14 +00:00
|
|
|
|
|
|
|
struct ProfileView: View {
|
|
|
|
enum ModalType: Int, Identifiable {
|
2023-03-17 15:49:35 +00:00
|
|
|
case interactiveAccount
|
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
case shortcuts
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case rename
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
case paywallShortcuts
|
|
|
|
|
2022-04-13 18:12:25 +00:00
|
|
|
case paywallNetworkSettings
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case paywallTrustedNetworks
|
|
|
|
|
|
|
|
var id: Int {
|
2022-09-04 18:09:31 +00:00
|
|
|
rawValue
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-01 08:55:07 +00:00
|
|
|
@ObservedObject private var currentProfile: ObservableProfile
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
@State private var modalType: ModalType?
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-22 13:58:03 +00:00
|
|
|
init() {
|
2022-08-28 07:19:15 +00:00
|
|
|
currentProfile = ProfileManager.shared.currentProfile
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
debugChanges()
|
|
|
|
return Group {
|
2022-05-05 06:57:02 +00:00
|
|
|
if isLoading || isExisting {
|
2022-04-21 17:02:47 +00:00
|
|
|
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-05-16 09:06:02 +00:00
|
|
|
ToolbarItemGroup(placement: .navigationBarTrailing) {
|
|
|
|
if themeIdiom != .phone {
|
2022-08-27 20:42:52 +00:00
|
|
|
SettingsButton()
|
2022-05-16 09:06:02 +00:00
|
|
|
}
|
|
|
|
MainMenu(
|
|
|
|
currentProfile: 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
|
|
|
}
|
2023-07-03 14:54:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: -
|
|
|
|
|
|
|
|
private extension ProfileView {
|
|
|
|
var isLoading: Bool {
|
|
|
|
currentProfile.isLoading
|
|
|
|
}
|
|
|
|
|
|
|
|
var isExisting: Bool {
|
|
|
|
!currentProfile.value.isPlaceholder
|
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2023-07-03 14:54:43 +00:00
|
|
|
var title: String {
|
2022-05-01 08:55:07 +00:00
|
|
|
currentProfile.name
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2023-07-03 14:54:43 +00:00
|
|
|
var mainView: some View {
|
2022-04-21 17:02:47 +00:00
|
|
|
List {
|
2022-04-22 13:58:03 +00:00
|
|
|
if !isLoading {
|
2023-03-17 15:49:35 +00:00
|
|
|
VPNSection(
|
|
|
|
profile: currentProfile.value,
|
|
|
|
modalType: $modalType
|
|
|
|
)
|
2022-05-01 08:55:07 +00:00
|
|
|
ProviderSection(currentProfile: currentProfile)
|
2022-04-21 17:02:47 +00:00
|
|
|
ConfigurationSection(
|
2022-05-01 08:55:07 +00:00
|
|
|
currentProfile: currentProfile,
|
2022-04-21 17:02:47 +00:00
|
|
|
modalType: $modalType
|
|
|
|
)
|
2022-05-01 08:55:07 +00:00
|
|
|
ExtraSection(currentProfile: currentProfile)
|
2023-03-17 20:46:53 +00:00
|
|
|
DiagnosticsSection(currentProfile: currentProfile)
|
2022-05-20 06:27:31 +00:00
|
|
|
} else {
|
|
|
|
ProgressView()
|
2022-04-21 17:02:47 +00:00
|
|
|
}
|
2022-05-03 11:45:27 +00:00
|
|
|
}.themeAnimation(on: isLoading)
|
2022-04-12 13:09:14 +00:00
|
|
|
}
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
@ViewBuilder
|
2023-07-03 14:54:43 +00:00
|
|
|
func presentedModal(_ modalType: ModalType) -> some View {
|
2022-04-12 13:09:14 +00:00
|
|
|
switch modalType {
|
2023-03-17 15:49:35 +00:00
|
|
|
case .interactiveAccount:
|
|
|
|
NavigationView {
|
|
|
|
InteractiveConnectionView(profile: currentProfile.value)
|
|
|
|
}.themeGlobal()
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-18 14:42:17 +00:00
|
|
|
case .shortcuts:
|
|
|
|
NavigationView {
|
2022-05-01 08:55:07 +00:00
|
|
|
ShortcutsView(target: currentProfile.value)
|
2022-04-18 14:42:17 +00:00
|
|
|
}.themeGlobal()
|
2023-03-17 20:55:47 +00:00
|
|
|
|
2022-04-12 13:09:14 +00:00
|
|
|
case .rename:
|
|
|
|
NavigationView {
|
2022-05-01 08:55:07 +00:00
|
|
|
RenameView(currentProfile: currentProfile)
|
2022-04-12 13:09:14 +00:00
|
|
|
}.themeGlobal()
|
2023-03-17 20:55:47 +00:00
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|