2024-09-23 13:02:26 +00:00
|
|
|
//
|
|
|
|
// ProfileContextMenu.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
|
2024-11-28 00:30:26 +00:00
|
|
|
import UITesting
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-10-23 15:17:20 +00:00
|
|
|
struct ProfileContextMenu: View, Routable {
|
2024-11-26 19:10:03 +00:00
|
|
|
enum Style {
|
|
|
|
case installedProfile
|
|
|
|
|
|
|
|
case containerContext
|
|
|
|
|
|
|
|
case infoButton
|
|
|
|
}
|
|
|
|
|
|
|
|
let style: Style
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
let profileManager: ProfileManager
|
|
|
|
|
2024-11-01 08:47:50 +00:00
|
|
|
let tunnel: ExtendedTunnel
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-22 11:52:51 +00:00
|
|
|
let preview: ProfilePreview
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
let interactiveManager: InteractiveManager
|
|
|
|
|
|
|
|
let errorHandler: ErrorHandler
|
|
|
|
|
2024-10-23 15:17:20 +00:00
|
|
|
var flow: ProfileFlow?
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
tunnelToggleButton
|
2024-11-26 19:10:03 +00:00
|
|
|
if style == .installedProfile {
|
2024-09-23 13:02:26 +00:00
|
|
|
tunnelRestartButton
|
|
|
|
}
|
2024-11-26 23:06:48 +00:00
|
|
|
providerConnectToButton
|
|
|
|
Divider()
|
2024-09-23 13:02:26 +00:00
|
|
|
profileEditButton
|
2024-11-26 23:06:48 +00:00
|
|
|
if style == .containerContext {
|
2024-11-26 19:10:03 +00:00
|
|
|
profileDuplicateButton
|
|
|
|
profileRemoveButton
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@MainActor
|
|
|
|
private extension ProfileContextMenu {
|
2024-10-23 15:17:20 +00:00
|
|
|
var profile: Profile? {
|
2024-11-22 11:52:51 +00:00
|
|
|
profileManager.profile(withId: preview.id)
|
2024-10-23 15:17:20 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
var tunnelToggleButton: some View {
|
|
|
|
TunnelToggleButton(
|
|
|
|
tunnel: tunnel,
|
2024-10-23 15:17:20 +00:00
|
|
|
profile: profile,
|
2024-09-23 13:02:26 +00:00
|
|
|
nextProfileId: .constant(nil),
|
|
|
|
interactiveManager: interactiveManager,
|
2024-11-18 16:43:01 +00:00
|
|
|
errorHandler: errorHandler,
|
|
|
|
onProviderEntityRequired: {
|
2024-11-24 00:01:04 +00:00
|
|
|
flow?.onProviderEntityRequired($0)
|
2024-11-18 16:43:01 +00:00
|
|
|
},
|
|
|
|
onPurchaseRequired: {
|
|
|
|
flow?.onPurchaseRequired($0)
|
|
|
|
},
|
|
|
|
label: {
|
|
|
|
ThemeImageLabel(
|
2024-11-23 19:31:22 +00:00
|
|
|
$0 ? Strings.Global.Actions.enable : Strings.Global.Actions.disable,
|
2024-11-18 16:43:01 +00:00
|
|
|
$0 ? .tunnelEnable : .tunnelDisable
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
2024-10-23 16:51:22 +00:00
|
|
|
var providerConnectToButton: some View {
|
2024-11-26 23:06:48 +00:00
|
|
|
profile.map {
|
|
|
|
ProviderConnectToButton(
|
|
|
|
profile: $0,
|
|
|
|
onTap: {
|
|
|
|
flow?.onProviderEntityRequired($0)
|
|
|
|
},
|
|
|
|
label: {
|
2024-11-26 19:10:03 +00:00
|
|
|
ThemeImageLabel(Strings.Views.App.ProfileContext.connectTo.withTrailingDots, .profileProvider)
|
2024-10-23 15:17:20 +00:00
|
|
|
}
|
2024-11-26 23:06:48 +00:00
|
|
|
)
|
2024-11-28 14:51:03 +00:00
|
|
|
.uiAccessibility(.App.ProfileMenu.connectTo)
|
2024-11-26 23:06:48 +00:00
|
|
|
}
|
2024-10-23 15:17:20 +00:00
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
var tunnelRestartButton: some View {
|
|
|
|
TunnelRestartButton(
|
|
|
|
tunnel: tunnel,
|
2024-10-23 15:17:20 +00:00
|
|
|
profile: profile,
|
2024-11-18 16:43:01 +00:00
|
|
|
errorHandler: errorHandler,
|
|
|
|
onPurchaseRequired: {
|
|
|
|
flow?.onPurchaseRequired($0)
|
|
|
|
},
|
|
|
|
label: {
|
2024-11-23 19:31:22 +00:00
|
|
|
ThemeImageLabel(Strings.Global.Actions.restart, .tunnelRestart)
|
2024-11-18 16:43:01 +00:00
|
|
|
}
|
|
|
|
)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var profileEditButton: some View {
|
|
|
|
Button {
|
2024-11-22 11:52:51 +00:00
|
|
|
flow?.onEditProfile(preview)
|
2024-09-23 13:02:26 +00:00
|
|
|
} label: {
|
2024-11-26 23:06:48 +00:00
|
|
|
ThemeImageLabel(Strings.Global.Actions.edit, .profileEdit)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
2024-11-28 14:51:03 +00:00
|
|
|
.uiAccessibility(.App.ProfileMenu.edit)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var profileDuplicateButton: some View {
|
|
|
|
ProfileDuplicateButton(
|
|
|
|
profileManager: profileManager,
|
2024-11-22 11:52:51 +00:00
|
|
|
preview: preview,
|
2024-09-23 13:02:26 +00:00
|
|
|
errorHandler: errorHandler
|
|
|
|
) {
|
2024-11-23 19:31:22 +00:00
|
|
|
ThemeImageLabel(Strings.Global.Actions.duplicate, .contextDuplicate)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var profileRemoveButton: some View {
|
|
|
|
ProfileRemoveButton(
|
|
|
|
profileManager: profileManager,
|
2024-11-22 11:52:51 +00:00
|
|
|
preview: preview
|
2024-09-23 13:02:26 +00:00
|
|
|
) {
|
2024-11-23 19:31:22 +00:00
|
|
|
ThemeImageLabel(Strings.Global.Actions.remove, .contextRemove)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#Preview {
|
|
|
|
List {
|
|
|
|
Menu("Menu") {
|
|
|
|
ProfileContextMenu(
|
2024-11-26 19:10:03 +00:00
|
|
|
style: .installedProfile,
|
2024-09-23 13:02:26 +00:00
|
|
|
profileManager: .mock,
|
|
|
|
tunnel: .mock,
|
2024-11-22 11:52:51 +00:00
|
|
|
preview: .init(.mock),
|
2024-09-23 13:02:26 +00:00
|
|
|
interactiveManager: InteractiveManager(),
|
2024-11-26 19:10:03 +00:00
|
|
|
errorHandler: .default()
|
2024-09-23 13:02:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2024-10-02 14:05:40 +00:00
|
|
|
.withMockEnvironment()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|