2024-11-02 07:41:32 +00:00
|
|
|
//
|
|
|
|
// ProfileView.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 10/31/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/>.
|
|
|
|
//
|
|
|
|
|
2024-11-03 12:16:13 +00:00
|
|
|
import CommonLibrary
|
2024-11-02 09:11:59 +00:00
|
|
|
import CommonUtils
|
2024-11-02 07:41:32 +00:00
|
|
|
import PassepartoutKit
|
|
|
|
import SwiftUI
|
2024-11-02 09:11:59 +00:00
|
|
|
import UILibrary
|
2024-11-02 07:41:32 +00:00
|
|
|
|
|
|
|
// FIXME: #788, UI for TV
|
|
|
|
|
|
|
|
struct ProfileView: View, TunnelInstallationProviding {
|
|
|
|
enum Field: Hashable {
|
|
|
|
case connect
|
|
|
|
|
|
|
|
case switchProfile
|
|
|
|
|
|
|
|
case profile(Profile.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
@ObservedObject
|
|
|
|
var profileManager: ProfileManager
|
|
|
|
|
|
|
|
@ObservedObject
|
|
|
|
var tunnel: ExtendedTunnel
|
|
|
|
|
|
|
|
@State
|
2024-11-05 15:13:03 +00:00
|
|
|
private var showsSidePanel = false
|
2024-11-02 07:41:32 +00:00
|
|
|
|
|
|
|
@FocusState
|
|
|
|
private var focusedField: Field?
|
|
|
|
|
|
|
|
@StateObject
|
|
|
|
private var interactiveManager = InteractiveManager()
|
|
|
|
|
|
|
|
@StateObject
|
|
|
|
private var errorHandler: ErrorHandler = .default()
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
GeometryReader { geo in
|
|
|
|
HStack(spacing: .zero) {
|
|
|
|
VStack {
|
|
|
|
activeView
|
|
|
|
.padding(.horizontal)
|
|
|
|
.frame(width: geo.size.width * 0.5)
|
|
|
|
.focusSection()
|
|
|
|
}
|
|
|
|
.frame(maxWidth: .infinity)
|
2024-11-02 14:24:41 +00:00
|
|
|
.disabled(interactiveManager.isPresented)
|
2024-11-02 07:41:32 +00:00
|
|
|
|
2024-11-05 15:13:03 +00:00
|
|
|
if showsSidePanel {
|
2024-11-02 14:24:41 +00:00
|
|
|
ZStack {
|
|
|
|
listView
|
|
|
|
.padding(.horizontal)
|
2024-11-10 11:00:07 +00:00
|
|
|
.opaque(!interactiveManager.isPresented)
|
2024-11-02 14:24:41 +00:00
|
|
|
|
|
|
|
if interactiveManager.isPresented {
|
|
|
|
interactiveView
|
|
|
|
.padding(.horizontal, 100)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// .frame(width: geo.size.width * 0.5) // seems redundant
|
|
|
|
.focusSection()
|
2024-11-02 07:41:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.ignoresSafeArea(edges: .horizontal)
|
|
|
|
.background(theme.primaryColor.gradient)
|
2024-11-05 15:13:03 +00:00
|
|
|
.themeAnimation(on: showsSidePanel, category: .profiles)
|
2024-11-02 07:41:32 +00:00
|
|
|
.withErrorHandler(errorHandler)
|
2024-11-02 14:24:41 +00:00
|
|
|
.defaultFocus($focusedField, .switchProfile)
|
2024-11-02 07:41:32 +00:00
|
|
|
.onChange(of: tunnel.status) { _, new in
|
|
|
|
if new == .activating {
|
2024-11-05 15:13:03 +00:00
|
|
|
showsSidePanel = false
|
2024-11-02 14:24:41 +00:00
|
|
|
focusedField = .connect
|
2024-11-02 07:41:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.onChange(of: tunnel.currentProfile) { _, new in
|
|
|
|
if focusedField == .connect && new == nil {
|
|
|
|
focusedField = .switchProfile
|
|
|
|
}
|
|
|
|
}
|
2024-11-05 15:13:03 +00:00
|
|
|
.onChange(of: interactiveManager.isPresented) { _, new in
|
|
|
|
if new {
|
|
|
|
showsSidePanel = true
|
|
|
|
}
|
|
|
|
}
|
2024-11-02 07:41:32 +00:00
|
|
|
.onChange(of: focusedField) { _, new in
|
|
|
|
switch new {
|
|
|
|
case .connect:
|
2024-11-05 15:13:03 +00:00
|
|
|
showsSidePanel = false
|
2024-11-02 07:41:32 +00:00
|
|
|
|
|
|
|
case .switchProfile:
|
2024-11-05 15:13:03 +00:00
|
|
|
showsSidePanel = true
|
2024-11-02 07:41:32 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension ProfileView {
|
|
|
|
var currentProfile: Profile? {
|
|
|
|
guard let id = tunnel.currentProfile?.id else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return profileManager.profile(withId: id)
|
|
|
|
}
|
|
|
|
|
|
|
|
var activeView: some View {
|
|
|
|
ActiveProfileView(
|
|
|
|
profile: currentProfile,
|
|
|
|
tunnel: tunnel,
|
2024-11-05 15:13:03 +00:00
|
|
|
isSwitching: $showsSidePanel,
|
2024-11-02 07:41:32 +00:00
|
|
|
focusedField: $focusedField,
|
|
|
|
interactiveManager: interactiveManager,
|
|
|
|
errorHandler: errorHandler
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-11-02 14:24:41 +00:00
|
|
|
var interactiveView: some View {
|
|
|
|
InteractiveCoordinator(style: .inline(withCancel: false), manager: interactiveManager) {
|
|
|
|
errorHandler.handle(
|
|
|
|
$0,
|
|
|
|
title: Strings.Global.connection,
|
|
|
|
message: Strings.Views.Profiles.Errors.tunnel
|
|
|
|
)
|
|
|
|
}
|
|
|
|
.font(.body)
|
|
|
|
.onExitCommand {
|
|
|
|
let formerProfileId = interactiveManager.editor.profile.id
|
|
|
|
focusedField = .profile(formerProfileId)
|
|
|
|
interactiveManager.isPresented = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-02 07:41:32 +00:00
|
|
|
var listView: some View {
|
|
|
|
ProfileListView(
|
|
|
|
profileManager: profileManager,
|
|
|
|
tunnel: tunnel,
|
|
|
|
focusedField: $focusedField,
|
|
|
|
interactiveManager: interactiveManager,
|
|
|
|
errorHandler: errorHandler
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#Preview {
|
|
|
|
ProfileView(
|
|
|
|
profileManager: .mock,
|
|
|
|
tunnel: .mock
|
|
|
|
)
|
|
|
|
}
|