2022-06-25 20:11:45 +00:00
|
|
|
//
|
2024-10-10 22:24:06 +00:00
|
|
|
// VPNProviderServerView+macOS.swift
|
2022-06-25 20:11:45 +00:00
|
|
|
// Passepartout
|
|
|
|
//
|
2024-10-10 22:24:06 +00:00
|
|
|
// Created by Davide De Rosa on 10/9/24.
|
2024-01-14 13:34:21 +00:00
|
|
|
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
|
2022-06-25 20:11:45 +00:00
|
|
|
//
|
|
|
|
// 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-10-10 22:24:06 +00:00
|
|
|
#if os(macOS)
|
2022-06-25 20:11:45 +00:00
|
|
|
|
2024-10-18 16:12:28 +00:00
|
|
|
import PassepartoutKit
|
2024-10-10 22:24:06 +00:00
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
extension VPNProviderServerView {
|
2024-10-26 18:28:02 +00:00
|
|
|
var contentView: some View {
|
|
|
|
VStack {
|
|
|
|
filtersView
|
|
|
|
.padding()
|
|
|
|
serversView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-13 09:36:34 +00:00
|
|
|
|
2024-10-26 18:28:02 +00:00
|
|
|
// MARK: - Subviews
|
|
|
|
|
|
|
|
extension VPNProviderServerView {
|
|
|
|
struct ServersSubview: View {
|
|
|
|
let servers: [VPNServer]
|
2024-10-18 16:12:28 +00:00
|
|
|
|
2024-10-26 18:28:02 +00:00
|
|
|
let selectedServerId: String?
|
2024-10-23 16:40:09 +00:00
|
|
|
|
2024-10-26 18:28:02 +00:00
|
|
|
let isFiltering: Bool
|
2024-10-18 16:12:28 +00:00
|
|
|
|
2024-10-26 18:28:02 +00:00
|
|
|
@ObservedObject
|
|
|
|
var filtersViewModel: VPNFiltersView.Model
|
2024-10-26 11:29:26 +00:00
|
|
|
|
2024-10-26 18:28:02 +00:00
|
|
|
@ObservedObject
|
|
|
|
var favoritesManager: ProviderFavoritesManager
|
2024-10-26 11:29:26 +00:00
|
|
|
|
2024-10-25 09:38:27 +00:00
|
|
|
let selectTitle: String
|
|
|
|
|
2024-10-18 16:12:28 +00:00
|
|
|
let onSelect: (VPNServer) -> Void
|
|
|
|
|
2024-10-26 11:29:26 +00:00
|
|
|
@State
|
|
|
|
private var hoveringServerId: String?
|
|
|
|
|
2024-10-18 16:12:28 +00:00
|
|
|
var body: some View {
|
2024-10-26 18:28:02 +00:00
|
|
|
debugChanges()
|
|
|
|
return Table(servers) {
|
|
|
|
TableColumn("") { server in
|
|
|
|
ThemeImage(.marked)
|
|
|
|
.opacity(server.id == selectedServerId ? 1.0 : 0.0)
|
|
|
|
}
|
|
|
|
.width(10.0)
|
2024-10-23 17:31:03 +00:00
|
|
|
|
2024-10-26 18:28:02 +00:00
|
|
|
TableColumn(Strings.Global.region) { server in
|
2024-10-31 00:15:07 +00:00
|
|
|
Text("\(server.provider.countryCode.asCountryCodeEmoji) \(server.region)")
|
2024-10-28 15:57:23 +00:00
|
|
|
.help(server.region)
|
2024-10-23 15:17:20 +00:00
|
|
|
}
|
2024-10-10 22:24:06 +00:00
|
|
|
|
2024-10-26 18:28:02 +00:00
|
|
|
TableColumn(Strings.Global.address, value: \.address)
|
2024-10-10 22:24:06 +00:00
|
|
|
|
2024-10-26 19:01:05 +00:00
|
|
|
TableColumn("") { server in
|
2024-10-26 18:28:02 +00:00
|
|
|
FavoriteToggle(
|
|
|
|
value: server.serverId,
|
|
|
|
selection: $favoritesManager.serverIds
|
|
|
|
)
|
|
|
|
}
|
2024-10-26 19:01:05 +00:00
|
|
|
.width(15.0)
|
2024-10-26 11:29:26 +00:00
|
|
|
|
2024-10-26 18:28:02 +00:00
|
|
|
TableColumn("") { server in
|
|
|
|
Button {
|
|
|
|
onSelect(server)
|
|
|
|
} label: {
|
|
|
|
Text(selectTitle)
|
2024-10-28 15:57:23 +00:00
|
|
|
.lineLimit(1)
|
|
|
|
.truncationMode(.tail)
|
2024-10-26 18:28:02 +00:00
|
|
|
}
|
2024-10-10 22:24:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-25 20:11:45 +00:00
|
|
|
}
|
|
|
|
}
|
2024-10-10 22:24:06 +00:00
|
|
|
|
2024-10-23 15:58:04 +00:00
|
|
|
// MARK: - Preview
|
|
|
|
|
|
|
|
#Preview {
|
|
|
|
NavigationStack {
|
|
|
|
VPNProviderServerView(
|
|
|
|
apis: [API.bundled],
|
2024-10-26 11:29:26 +00:00
|
|
|
moduleId: UUID(),
|
2024-10-23 15:58:04 +00:00
|
|
|
providerId: .tunnelbear,
|
|
|
|
configurationType: OpenVPN.Configuration.self,
|
|
|
|
selectedEntity: nil,
|
2024-10-23 20:57:30 +00:00
|
|
|
filtersWithSelection: false,
|
2024-10-25 09:38:27 +00:00
|
|
|
selectTitle: "Select",
|
2024-10-23 15:58:04 +00:00
|
|
|
onSelect: { _, _ in }
|
|
|
|
)
|
|
|
|
}
|
|
|
|
.withMockEnvironment()
|
|
|
|
}
|
|
|
|
|
2024-10-10 22:24:06 +00:00
|
|
|
#endif
|