2024-09-23 13:02:26 +00:00
|
|
|
//
|
|
|
|
// ProfileListView.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/>.
|
|
|
|
//
|
|
|
|
|
2024-11-03 12:16:13 +00:00
|
|
|
import CommonLibrary
|
2024-11-02 09:11:59 +00:00
|
|
|
import CommonUtils
|
2024-09-23 13:02:26 +00:00
|
|
|
import PassepartoutKit
|
|
|
|
import SwiftUI
|
|
|
|
|
2024-10-22 13:06:13 +00:00
|
|
|
struct ProfileListView: View, Routable, TunnelInstallationProviding {
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-10-04 09:31:20 +00:00
|
|
|
@Environment(\.horizontalSizeClass)
|
|
|
|
private var hsClass
|
|
|
|
|
|
|
|
@Environment(\.verticalSizeClass)
|
|
|
|
private var vsClass
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
@Environment(\.isSearching)
|
|
|
|
private var isSearching
|
|
|
|
|
|
|
|
@ObservedObject
|
|
|
|
var profileManager: ProfileManager
|
|
|
|
|
2024-11-10 18:39:43 +00:00
|
|
|
let tunnel: ExtendedTunnel
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
let interactiveManager: InteractiveManager
|
|
|
|
|
|
|
|
let errorHandler: ErrorHandler
|
|
|
|
|
2024-10-22 13:06:13 +00:00
|
|
|
var flow: ProfileContainerView.Flow?
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
@State
|
|
|
|
private var nextProfileId: Profile.ID?
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
debugChanges()
|
|
|
|
return ScrollViewReader { scrollProxy in
|
|
|
|
Form {
|
|
|
|
if !isSearching {
|
|
|
|
headerView(scrollProxy: scrollProxy)
|
2024-11-10 17:21:17 +00:00
|
|
|
.unanimated()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
2024-10-03 21:31:44 +00:00
|
|
|
Group {
|
2024-09-23 13:02:26 +00:00
|
|
|
ForEach(allHeaders, content: profileView)
|
2024-10-06 17:19:16 +00:00
|
|
|
.onDelete { offsets in
|
|
|
|
Task {
|
|
|
|
await profileManager.removeProfiles(at: offsets)
|
|
|
|
}
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
2024-10-03 21:31:44 +00:00
|
|
|
.themeSection(header: Strings.Views.Profiles.Folders.default)
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
.themeForm()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension ProfileListView {
|
|
|
|
var allHeaders: [ProfileHeader] {
|
|
|
|
profileManager.headers
|
|
|
|
}
|
|
|
|
|
|
|
|
func headerView(scrollProxy: ScrollViewProxy) -> some View {
|
|
|
|
InstalledProfileView(
|
|
|
|
layout: .list,
|
|
|
|
profileManager: profileManager,
|
2024-09-30 12:56:20 +00:00
|
|
|
profile: currentProfile,
|
2024-09-23 13:02:26 +00:00
|
|
|
tunnel: tunnel,
|
|
|
|
interactiveManager: interactiveManager,
|
|
|
|
errorHandler: errorHandler,
|
|
|
|
nextProfileId: $nextProfileId,
|
2024-10-22 13:06:13 +00:00
|
|
|
flow: flow
|
2024-09-23 13:02:26 +00:00
|
|
|
)
|
|
|
|
.contextMenu {
|
2024-09-30 12:56:20 +00:00
|
|
|
currentProfile.map {
|
2024-09-23 13:02:26 +00:00
|
|
|
ProfileContextMenu(
|
|
|
|
profileManager: profileManager,
|
|
|
|
tunnel: tunnel,
|
|
|
|
header: $0.header(),
|
|
|
|
interactiveManager: interactiveManager,
|
|
|
|
errorHandler: errorHandler,
|
|
|
|
isInstalledProfile: true,
|
2024-10-23 15:17:20 +00:00
|
|
|
flow: flow
|
2024-09-23 13:02:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func profileView(for header: ProfileHeader) -> some View {
|
|
|
|
ProfileRowView(
|
2024-10-04 09:31:20 +00:00
|
|
|
style: cardStyle,
|
2024-09-23 13:02:26 +00:00
|
|
|
profileManager: profileManager,
|
|
|
|
tunnel: tunnel,
|
|
|
|
header: header,
|
|
|
|
interactiveManager: interactiveManager,
|
|
|
|
errorHandler: errorHandler,
|
|
|
|
nextProfileId: $nextProfileId,
|
|
|
|
withMarker: true,
|
2024-10-23 15:17:20 +00:00
|
|
|
flow: flow
|
2024-09-23 13:02:26 +00:00
|
|
|
)
|
|
|
|
.contextMenu {
|
|
|
|
ProfileContextMenu(
|
|
|
|
profileManager: profileManager,
|
|
|
|
tunnel: tunnel,
|
|
|
|
header: header,
|
|
|
|
interactiveManager: interactiveManager,
|
|
|
|
errorHandler: errorHandler,
|
|
|
|
isInstalledProfile: false,
|
2024-10-23 15:17:20 +00:00
|
|
|
flow: flow
|
2024-09-23 13:02:26 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
.id(header.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-04 09:31:20 +00:00
|
|
|
private extension ProfileListView {
|
|
|
|
var cardStyle: ProfileCardView.Style {
|
|
|
|
if hsClass == .compact || vsClass == .compact {
|
|
|
|
return .compact
|
|
|
|
} else {
|
|
|
|
return .full
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
// MARK: - Previews
|
|
|
|
|
|
|
|
#Preview {
|
|
|
|
ProfileListView(
|
|
|
|
profileManager: .mock,
|
|
|
|
tunnel: .mock,
|
|
|
|
interactiveManager: InteractiveManager(),
|
2024-10-22 13:06:13 +00:00
|
|
|
errorHandler: .default()
|
2024-09-23 13:02:26 +00:00
|
|
|
)
|
2024-10-02 14:05:40 +00:00
|
|
|
.withMockEnvironment()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|