2022-06-25 20:11:45 +00:00
|
|
|
//
|
2024-10-10 22:24:06 +00:00
|
|
|
// VPNProviderServerView+iOS.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(iOS)
|
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 {
|
|
|
|
|
|
|
|
@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
|
|
|
|
|
2024-10-26 11:29:26 +00:00
|
|
|
@Binding
|
|
|
|
var onlyShowsFavorites: Bool
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var favorites: Set<String>
|
|
|
|
|
2024-10-25 09:38:27 +00:00
|
|
|
// unused
|
|
|
|
let selectTitle: String
|
|
|
|
|
2024-10-18 16:12:28 +00:00
|
|
|
let onSelect: (VPNServer) -> Void
|
|
|
|
|
|
|
|
@State
|
|
|
|
private var isFiltersPresented = false
|
2024-10-13 09:36:34 +00:00
|
|
|
|
2024-10-18 16:12:28 +00:00
|
|
|
var body: some View {
|
|
|
|
listView
|
|
|
|
.disabled(manager.isFiltering)
|
|
|
|
.toolbar {
|
|
|
|
filtersItem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension VPNProviderServerView.Subview {
|
|
|
|
var listView: some View {
|
2024-10-25 09:38:27 +00:00
|
|
|
ZStack {
|
2024-10-18 16:12:28 +00:00
|
|
|
if manager.isFiltering {
|
|
|
|
ProgressView()
|
2024-10-25 09:38:27 +00:00
|
|
|
} else if !manager.filteredServers.isEmpty {
|
|
|
|
List {
|
|
|
|
Section {
|
|
|
|
ForEach(countryCodes, id: \.self, content: countryView)
|
|
|
|
} header: {
|
|
|
|
Text(filters.categoryName ?? Strings.Providers.Vpn.Category.any)
|
|
|
|
}
|
|
|
|
}
|
2024-10-18 16:12:28 +00:00
|
|
|
} else {
|
2024-10-25 09:38:27 +00:00
|
|
|
Text(Strings.Providers.Vpn.noServers)
|
|
|
|
.themeEmptyMessage()
|
2024-10-23 15:58:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.themeAnimation(on: manager.isFiltering, category: .providers)
|
|
|
|
}
|
|
|
|
|
|
|
|
var countryCodes: [String] {
|
|
|
|
manager
|
|
|
|
.allCountryCodes
|
|
|
|
.sorted {
|
2024-10-26 11:29:26 +00:00
|
|
|
guard let region1 = $0.localizedAsRegionCode,
|
|
|
|
let region2 = $1.localizedAsRegionCode else {
|
|
|
|
return $0 < $1
|
|
|
|
}
|
|
|
|
return region1 < region2
|
2024-10-23 15:58:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func countryServers(for code: String) -> [VPNServer]? {
|
|
|
|
manager
|
|
|
|
.filteredServers
|
|
|
|
.filter {
|
|
|
|
$0.provider.countryCode == code
|
|
|
|
}
|
|
|
|
.nilIfEmpty
|
|
|
|
}
|
|
|
|
|
|
|
|
func countryView(for code: String) -> some View {
|
|
|
|
countryServers(for: code)
|
|
|
|
.map { servers in
|
|
|
|
DisclosureGroup {
|
2024-10-23 16:40:09 +00:00
|
|
|
ForEach(servers, id: \.id, content: serverView)
|
2024-10-23 15:58:04 +00:00
|
|
|
} label: {
|
|
|
|
HStack {
|
|
|
|
ThemeCountryFlag(code: code)
|
2024-10-26 11:29:26 +00:00
|
|
|
Text(code.localizedAsRegionCode ?? code)
|
2024-10-18 16:12:28 +00:00
|
|
|
}
|
2024-10-15 21:48:27 +00:00
|
|
|
}
|
2024-10-10 22:24:06 +00:00
|
|
|
}
|
2024-10-23 15:58:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func serverView(for server: VPNServer) -> some View {
|
|
|
|
Button {
|
|
|
|
onSelect(server)
|
|
|
|
} label: {
|
2024-10-23 16:40:09 +00:00
|
|
|
HStack {
|
|
|
|
ThemeImage(.marked)
|
|
|
|
.opacity(server.id == selectedServer?.id ? 1.0 : 0.0)
|
2024-10-26 11:29:26 +00:00
|
|
|
VStack(alignment: .leading) {
|
|
|
|
if let area = server.provider.area {
|
|
|
|
Text(area)
|
|
|
|
.font(.headline)
|
|
|
|
Text(server.provider.serverId)
|
|
|
|
.font(.subheadline)
|
|
|
|
} else {
|
|
|
|
Text(server.provider.serverId)
|
|
|
|
.font(.headline)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Spacer()
|
|
|
|
FavoriteToggle(value: server.serverId, selection: $favorites)
|
2024-10-23 16:40:09 +00:00
|
|
|
}
|
2024-10-10 22:24:06 +00:00
|
|
|
}
|
2024-10-18 16:12:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var filtersItem: some ToolbarContent {
|
|
|
|
ToolbarItem {
|
|
|
|
Button {
|
|
|
|
isFiltersPresented = true
|
|
|
|
} label: {
|
|
|
|
ThemeImage(.filters)
|
|
|
|
}
|
|
|
|
.themePopover(isPresented: $isFiltersPresented, content: filtersView)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func filtersView() -> some View {
|
|
|
|
NavigationStack {
|
|
|
|
VPNFiltersView(
|
|
|
|
manager: manager,
|
2024-10-26 11:29:26 +00:00
|
|
|
filters: $filters,
|
|
|
|
onlyShowsFavorites: $onlyShowsFavorites,
|
|
|
|
favorites: favorites
|
2024-10-18 16:12:28 +00:00
|
|
|
)
|
|
|
|
.navigationTitle(Strings.Global.filters)
|
|
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
|
|
}
|
|
|
|
.presentationDetents([.medium])
|
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 21:21:37 +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
|