passepartout-apple/Passepartout/Library/Sources/AppUIMain/Views/AppMenu/AppMenu.swift

122 lines
3.2 KiB
Swift

//
// AppMenu.swift
// Passepartout
//
// Created by Davide De Rosa on 10/29/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/>.
//
#if os(macOS)
import AppLibrary
import Combine
import PassepartoutKit
import SwiftUI
public struct AppMenu: View {
@EnvironmentObject
private var profileManager: ProfileManager
@EnvironmentObject
private var profileProcessor: ProfileProcessor
@EnvironmentObject
private var tunnel: Tunnel
@StateObject
private var model = Model()
public init() {
}
public var body: some View {
versionItem
Divider()
showToggle
loginToggle
Divider()
profilesList
Divider()
aboutButton
quitButton
}
}
private extension AppMenu {
var versionItem: some View {
Text(BundleConfiguration.mainVersionString)
}
var showToggle: some View {
Button(Strings.Global.show) {
model.isVisible = true
}
}
var loginToggle: some View {
Toggle(Strings.AppMenu.Items.launchOnLogin, isOn: $model.launchesOnLogin)
}
var profilesList: some View {
ForEach(profileManager.headers, id: \.id, content: profileToggle)
}
func profileToggle(for header: ProfileHeader) -> some View {
Toggle(header.name, isOn: profileToggleBinding(for: header))
}
func profileToggleBinding(for header: ProfileHeader) -> Binding<Bool> {
Binding {
header.id == tunnel.currentProfile?.id && tunnel.status != .inactive
} set: { isOn in
Task {
guard let profile = profileManager.profile(withId: header.id) else {
return
}
do {
if isOn {
try await tunnel.connect(with: profile, processor: profileProcessor)
} else {
try await tunnel.disconnect()
}
} catch {
pp_log(.app, .error, "Unable to toggle profile \(header.id) from menu: \(error)")
}
}
}
}
var aboutButton: some View {
Button("\(Strings.Global.about)...") {
NSApp.activate(ignoringOtherApps: true)
NSApp.orderFrontStandardAboutPanel(self)
}
}
var quitButton: some View {
Button(Strings.AppMenu.Items.quit(BundleConfiguration.mainDisplayName)) {
NSApp.terminate(self)
}
}
}
#endif