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-18 16:12:28 +00:00
|
|
|
struct Subview: View {
|
2024-10-13 09:36:34 +00:00
|
|
|
|
2024-10-18 16:12:28 +00:00
|
|
|
@ObservedObject
|
|
|
|
var manager: VPNProviderManager<Configuration>
|
|
|
|
|
2024-10-23 16:40:09 +00:00
|
|
|
let selectedServer: VPNServer?
|
|
|
|
|
2024-10-18 16:12:28 +00:00
|
|
|
@Binding
|
|
|
|
var filters: VPNFilters
|
|
|
|
|
|
|
|
let onSelect: (VPNServer) -> Void
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
VStack {
|
|
|
|
filtersView
|
|
|
|
tableView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension VPNProviderServerView.Subview {
|
|
|
|
var tableView: some View {
|
2024-10-23 16:40:09 +00:00
|
|
|
Table(manager.filteredServers, selection: .constant(selectedServer?.id)) {
|
2024-10-16 06:53:16 +00:00
|
|
|
TableColumn(Strings.Global.region) { server in
|
2024-10-23 15:17:20 +00:00
|
|
|
HStack {
|
|
|
|
ThemeCountryFlag(code: server.provider.countryCode)
|
|
|
|
Text(server.region)
|
|
|
|
}
|
2024-10-13 09:36:34 +00:00
|
|
|
}
|
|
|
|
.width(max: 200.0)
|
2024-10-10 22:24:06 +00:00
|
|
|
|
2024-10-16 06:53:16 +00:00
|
|
|
TableColumn(Strings.Global.address, value: \.address)
|
2024-10-10 22:24:06 +00:00
|
|
|
|
2024-10-13 09:36:34 +00:00
|
|
|
TableColumn("") { server in
|
2024-10-10 22:24:06 +00:00
|
|
|
Button {
|
2024-10-18 16:12:28 +00:00
|
|
|
onSelect(server)
|
2024-10-10 22:24:06 +00:00
|
|
|
} label: {
|
2024-10-16 06:53:16 +00:00
|
|
|
Text(Strings.Views.Provider.selectServer)
|
2024-10-10 22:24:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.width(min: 100.0, max: 100.0)
|
|
|
|
}
|
2024-10-18 16:12:28 +00:00
|
|
|
.disabled(manager.isFiltering)
|
|
|
|
}
|
|
|
|
|
|
|
|
var filtersView: some View {
|
|
|
|
VPNFiltersView(
|
|
|
|
manager: manager,
|
|
|
|
filters: $filters
|
|
|
|
)
|
|
|
|
.padding()
|
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],
|
|
|
|
providerId: .tunnelbear,
|
|
|
|
configurationType: OpenVPN.Configuration.self,
|
|
|
|
selectedEntity: nil,
|
|
|
|
onSelect: { _, _ in }
|
|
|
|
)
|
|
|
|
}
|
|
|
|
.withMockEnvironment()
|
|
|
|
}
|
|
|
|
|
2024-10-10 22:24:06 +00:00
|
|
|
#endif
|