passepartout-apple/Passepartout/Library/Sources/AppUIMain/Views/App/ProfileContextMenu.swift

144 lines
3.7 KiB
Swift
Raw Normal View History

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/>.
//
import CommonLibrary
import CommonUtils
2024-09-23 13:02:26 +00:00
import PassepartoutKit
import SwiftUI
struct ProfileContextMenu: View, Routable {
2024-09-23 13:02:26 +00:00
let profileManager: ProfileManager
let tunnel: ExtendedTunnel
2024-09-23 13:02:26 +00:00
let header: ProfileHeader
let interactiveManager: InteractiveManager
let errorHandler: ErrorHandler
let isInstalledProfile: Bool
var flow: ProfileFlow?
2024-09-23 13:02:26 +00:00
var body: some View {
tunnelToggleButton
providerConnectToButton
2024-09-23 13:02:26 +00:00
if isInstalledProfile {
tunnelRestartButton
}
Divider()
profileEditButton
profileDuplicateButton
Divider()
profileRemoveButton
}
}
@MainActor
private extension ProfileContextMenu {
var profile: Profile? {
profileManager.profile(withId: header.id)
}
2024-09-23 13:02:26 +00:00
var tunnelToggleButton: some View {
TunnelToggleButton(
tunnel: tunnel,
profile: profile,
2024-09-23 13:02:26 +00:00
nextProfileId: .constant(nil),
interactiveManager: interactiveManager,
errorHandler: errorHandler
) {
ThemeImageLabel(
$0 ? Strings.Global.enable : Strings.Global.disable,
$0 ? .tunnelEnable : .tunnelDisable
)
}
}
var providerConnectToButton: some View {
profile?
.firstProviderModuleWithMetadata
.map { _ in
Button(Strings.Ui.ProfileContext.connectTo) {
flow?.onEditProviderEntity(profile!)
}
}
}
2024-09-23 13:02:26 +00:00
var tunnelRestartButton: some View {
TunnelRestartButton(
tunnel: tunnel,
profile: profile,
2024-09-23 13:02:26 +00:00
errorHandler: errorHandler
) {
ThemeImageLabel(Strings.Global.restart, .tunnelRestart)
}
}
var profileEditButton: some View {
Button {
flow?.onEditProfile(header)
2024-09-23 13:02:26 +00:00
} label: {
2024-10-26 19:10:55 +00:00
ThemeImageLabel("\(Strings.Global.edit)...", .profileEdit)
2024-09-23 13:02:26 +00:00
}
}
var profileDuplicateButton: some View {
ProfileDuplicateButton(
profileManager: profileManager,
header: header,
errorHandler: errorHandler
) {
ThemeImageLabel(Strings.Global.duplicate, .contextDuplicate)
}
}
var profileRemoveButton: some View {
ProfileRemoveButton(
profileManager: profileManager,
header: header
) {
ThemeImageLabel(Strings.Global.remove, .contextRemove)
}
}
}
#Preview {
List {
Menu("Menu") {
ProfileContextMenu(
profileManager: .mock,
tunnel: .mock,
header: Profile.mock.header(),
interactiveManager: InteractiveManager(),
errorHandler: .default(),
isInstalledProfile: true
2024-09-23 13:02:26 +00:00
)
}
}
.withMockEnvironment()
2024-09-23 13:02:26 +00:00
}