2024-09-23 13:02:26 +00:00
|
|
|
//
|
|
|
|
// InstalledProfileView.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 9/3/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-09-23 13:02:26 +00:00
|
|
|
import PassepartoutKit
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct InstalledProfileView: View, Routable {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
2024-11-01 08:47:50 +00:00
|
|
|
private var theme: Theme
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
let layout: ProfilesLayout
|
|
|
|
|
|
|
|
let profileManager: ProfileManager
|
|
|
|
|
|
|
|
let profile: Profile?
|
|
|
|
|
2024-11-03 07:38:53 +00:00
|
|
|
let tunnel: ExtendedTunnel
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
let interactiveManager: InteractiveManager
|
|
|
|
|
|
|
|
let errorHandler: ErrorHandler
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var nextProfileId: Profile.ID?
|
|
|
|
|
2024-10-22 13:06:13 +00:00
|
|
|
var flow: ProfileContainerView.Flow?
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
debugChanges()
|
|
|
|
return HStack(alignment: .center) {
|
|
|
|
cardView
|
|
|
|
Spacer()
|
|
|
|
toggleButton
|
|
|
|
}
|
|
|
|
.modifier(HeaderModifier(layout: layout))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension InstalledProfileView {
|
2024-11-10 11:00:07 +00:00
|
|
|
var isOpaque: Bool {
|
|
|
|
profile != nil
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var cardView: some View {
|
|
|
|
VStack(alignment: .leading, spacing: 20.0) {
|
|
|
|
HStack(alignment: .center) {
|
|
|
|
if profile != nil {
|
|
|
|
actionableNameView
|
|
|
|
Spacer(minLength: 10.0)
|
|
|
|
} else {
|
|
|
|
nameView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
statusView
|
|
|
|
}
|
|
|
|
.modifier(CardModifier(layout: layout))
|
|
|
|
}
|
|
|
|
|
|
|
|
var actionableNameView: some View {
|
2024-10-22 13:06:13 +00:00
|
|
|
ThemeDisclosableMenu {
|
|
|
|
menuContent
|
2024-10-23 15:17:20 +00:00
|
|
|
} label: {
|
|
|
|
nameView
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var nameView: some View {
|
|
|
|
Text(profile?.name ?? Strings.Views.Profiles.Rows.notInstalled)
|
|
|
|
.font(.title2)
|
|
|
|
.fontWeight(theme.relevantWeight)
|
|
|
|
.themeTruncating(.tail)
|
|
|
|
}
|
|
|
|
|
|
|
|
var statusView: some View {
|
2024-10-23 15:17:20 +00:00
|
|
|
HStack {
|
|
|
|
providerSelectorButton
|
2024-11-03 07:38:53 +00:00
|
|
|
StatusText(
|
|
|
|
theme: theme,
|
|
|
|
tunnel: tunnel,
|
2024-11-10 11:00:07 +00:00
|
|
|
isOpaque: isOpaque
|
2024-11-03 07:38:53 +00:00
|
|
|
)
|
2024-10-23 15:17:20 +00:00
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var toggleButton: some View {
|
2024-11-03 07:38:53 +00:00
|
|
|
ToggleButton(
|
|
|
|
theme: theme,
|
2024-09-23 13:02:26 +00:00
|
|
|
tunnel: tunnel,
|
|
|
|
profile: profile,
|
|
|
|
nextProfileId: $nextProfileId,
|
|
|
|
interactiveManager: interactiveManager,
|
2024-10-23 15:17:20 +00:00
|
|
|
errorHandler: errorHandler,
|
2024-11-10 11:00:07 +00:00
|
|
|
isOpaque: isOpaque,
|
2024-11-03 07:38:53 +00:00
|
|
|
flow: flow
|
2024-10-23 15:17:20 +00:00
|
|
|
)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
2024-10-22 13:06:13 +00:00
|
|
|
var menuContent: some View {
|
2024-09-23 13:02:26 +00:00
|
|
|
ProfileContextMenu(
|
|
|
|
profileManager: profileManager,
|
|
|
|
tunnel: tunnel,
|
|
|
|
header: (profile ?? .mock).header(),
|
|
|
|
interactiveManager: interactiveManager,
|
|
|
|
errorHandler: errorHandler,
|
|
|
|
isInstalledProfile: true,
|
2024-10-23 15:17:20 +00:00
|
|
|
flow: flow
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
var providerSelectorButton: some View {
|
|
|
|
profile?
|
|
|
|
.firstProviderModuleWithMetadata
|
|
|
|
.map { _, provider in
|
|
|
|
Button {
|
|
|
|
flow?.onEditProviderEntity(profile!)
|
|
|
|
} label: {
|
|
|
|
providerSelectorLabel(with: provider)
|
|
|
|
}
|
|
|
|
.buttonStyle(.plain)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func providerSelectorLabel(with provider: ModuleMetadata.Provider) -> some View {
|
|
|
|
ProviderCountryFlag(provider: provider)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-03 07:38:53 +00:00
|
|
|
// MARK: - Subviews (observing)
|
|
|
|
|
|
|
|
private struct StatusText: View {
|
|
|
|
|
|
|
|
@ObservedObject
|
|
|
|
var theme: Theme
|
|
|
|
|
|
|
|
@ObservedObject
|
|
|
|
var tunnel: ExtendedTunnel
|
|
|
|
|
2024-11-10 11:00:07 +00:00
|
|
|
let isOpaque: Bool
|
2024-11-03 07:38:53 +00:00
|
|
|
|
|
|
|
var body: some View {
|
2024-11-10 18:39:43 +00:00
|
|
|
debugChanges()
|
|
|
|
return ConnectionStatusText(tunnel: tunnel)
|
2024-11-03 07:38:53 +00:00
|
|
|
.font(.body)
|
|
|
|
.foregroundStyle(tunnel.statusColor(theme))
|
2024-11-10 11:00:07 +00:00
|
|
|
.opaque(isOpaque)
|
2024-11-03 07:38:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private struct ToggleButton: View {
|
|
|
|
|
|
|
|
@ObservedObject
|
|
|
|
var theme: Theme
|
|
|
|
|
|
|
|
@ObservedObject
|
|
|
|
var tunnel: ExtendedTunnel
|
|
|
|
|
|
|
|
let profile: Profile?
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var nextProfileId: Profile.ID?
|
|
|
|
|
|
|
|
@ObservedObject
|
|
|
|
var interactiveManager: InteractiveManager
|
|
|
|
|
|
|
|
@ObservedObject
|
|
|
|
var errorHandler: ErrorHandler
|
|
|
|
|
2024-11-10 11:00:07 +00:00
|
|
|
let isOpaque: Bool
|
2024-11-03 07:38:53 +00:00
|
|
|
|
|
|
|
let flow: ProfileFlow?
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
TunnelToggleButton(
|
|
|
|
tunnel: tunnel,
|
|
|
|
profile: profile,
|
|
|
|
nextProfileId: $nextProfileId,
|
|
|
|
interactiveManager: interactiveManager,
|
|
|
|
errorHandler: errorHandler,
|
|
|
|
onProviderEntityRequired: flow?.onEditProviderEntity,
|
|
|
|
label: { _ in
|
|
|
|
ThemeImage(.tunnelToggle)
|
|
|
|
.scaleEffect(1.5, anchor: .trailing)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
// TODO: #584, necessary to avoid cell selection
|
|
|
|
.buttonStyle(.plain)
|
|
|
|
.foregroundStyle(tunnel.statusColor(theme))
|
2024-11-10 11:00:07 +00:00
|
|
|
.opaque(isOpaque)
|
2024-11-03 07:38:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-23 15:17:20 +00:00
|
|
|
private struct ProviderCountryFlag: View {
|
|
|
|
let provider: ModuleMetadata.Provider
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
ThemeCountryFlag(
|
2024-10-31 00:15:07 +00:00
|
|
|
provider.entity?.header.countryCode,
|
2024-10-28 19:30:22 +00:00
|
|
|
placeholderTip: Strings.Errors.App.Passepartout.missingProviderEntity,
|
2024-10-23 15:17:20 +00:00
|
|
|
countryTip: {
|
|
|
|
$0.localizedAsRegionCode
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private struct HeaderModifier: ViewModifier {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
let layout: ProfilesLayout
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
switch layout {
|
|
|
|
case .list:
|
|
|
|
content
|
|
|
|
.listRowInsets(.init())
|
|
|
|
#if os(iOS)
|
|
|
|
.padding(.horizontal)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case .grid:
|
|
|
|
content
|
|
|
|
.themeGridCell(isSelected: false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private struct CardModifier: ViewModifier {
|
|
|
|
let layout: ProfilesLayout
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
switch layout {
|
|
|
|
case .list:
|
|
|
|
#if os(iOS)
|
|
|
|
content
|
|
|
|
.padding(.vertical)
|
|
|
|
#elseif os(macOS)
|
|
|
|
content
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case .grid:
|
|
|
|
content
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - Previews
|
|
|
|
|
|
|
|
#Preview("List") {
|
|
|
|
Form {
|
|
|
|
HeaderView(layout: .list)
|
|
|
|
Section {
|
|
|
|
ContentView()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.themeForm()
|
2024-10-02 14:05:40 +00:00
|
|
|
.withMockEnvironment()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#Preview("Grid") {
|
|
|
|
ScrollView {
|
|
|
|
VStack {
|
|
|
|
HeaderView(layout: .grid)
|
|
|
|
.padding(.bottom)
|
|
|
|
ContentView()
|
|
|
|
.themeGridCell(isSelected: false)
|
|
|
|
}
|
|
|
|
.padding()
|
|
|
|
}
|
2024-10-02 14:05:40 +00:00
|
|
|
.withMockEnvironment()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private struct HeaderView: View {
|
|
|
|
let layout: ProfilesLayout
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
InstalledProfileView(
|
|
|
|
layout: layout,
|
|
|
|
profileManager: .mock,
|
|
|
|
profile: .mock,
|
|
|
|
tunnel: .mock,
|
|
|
|
interactiveManager: InteractiveManager(),
|
|
|
|
errorHandler: .default(),
|
|
|
|
nextProfileId: .constant(nil)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private struct ContentView: View {
|
|
|
|
var body: some View {
|
|
|
|
ForEach(0..<3) { _ in
|
|
|
|
ProfileRowView(
|
|
|
|
style: .full,
|
|
|
|
profileManager: .mock,
|
|
|
|
tunnel: .mock,
|
|
|
|
header: Profile.mock.header(),
|
|
|
|
interactiveManager: InteractiveManager(),
|
|
|
|
errorHandler: .default(),
|
|
|
|
nextProfileId: .constant(nil),
|
|
|
|
withMarker: true
|
2024-10-23 15:17:20 +00:00
|
|
|
)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|