// // ProfileGridView.swift // Passepartout // // Created by Davide De Rosa on 8/13/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 . // import AppLibrary import PassepartoutKit import SwiftUI import UtilsLibrary struct ProfileGridView: View, ProfileManagerProviding, TunnelInstallationProviding { @Environment(\.isSearching) private var isSearching @ObservedObject var profileManager: ProfileManager @ObservedObject var tunnel: Tunnel let interactiveManager: InteractiveManager let errorHandler: ErrorHandler let onEdit: (ProfileHeader) -> Void @State private var nextProfileId: Profile.ID? private let columns: [GridItem] = [GridItem(.adaptive(minimum: 300.0))] var body: some View { debugChanges() return ScrollViewReader { scrollProxy in ScrollView { VStack(spacing: .zero) { if !isSearching { headerView(scrollProxy: scrollProxy) .padding(.bottom) } LazyVGrid(columns: columns) { ForEach(allHeaders, content: profileView) .onDelete(perform: removeProfiles) } .themeGridHeader(title: Strings.Views.Profiles.Folders.default) } .padding(.horizontal) } } #if os(macOS) .padding(.top) #endif } } // MARK: - Subviews private extension ProfileGridView { var allHeaders: [ProfileHeader] { profileManager.headers } func headerView(scrollProxy: ScrollViewProxy) -> some View { InstalledProfileView( layout: .grid, profileManager: profileManager, profile: currentProfile, tunnel: tunnel, interactiveManager: interactiveManager, errorHandler: errorHandler, nextProfileId: $nextProfileId, flow: .init( onEditProfile: onEdit ) ) .contextMenu { currentProfile.map { ProfileContextMenu( profileManager: profileManager, tunnel: tunnel, header: $0.header(), interactiveManager: interactiveManager, errorHandler: errorHandler, isInstalledProfile: true, onEdit: onEdit ) } } } func profileView(for header: ProfileHeader) -> some View { ProfileRowView( style: .full, profileManager: profileManager, tunnel: tunnel, header: header, interactiveManager: interactiveManager, errorHandler: errorHandler, nextProfileId: $nextProfileId, withMarker: true, onEdit: onEdit ) .themeGridCell(isSelected: header.id == nextProfileId ?? tunnel.currentProfile?.id) .contextMenu { ProfileContextMenu( profileManager: profileManager, tunnel: tunnel, header: header, interactiveManager: interactiveManager, errorHandler: errorHandler, isInstalledProfile: false, onEdit: onEdit ) } .id(header.id) } } // MARK: - Previews #Preview { ProfileGridView( profileManager: .mock, tunnel: .mock, interactiveManager: InteractiveManager(), errorHandler: .default(), onEdit: { _ in } ) .themeWindow(width: 600, height: 300) .environmentObject(Theme()) .environmentObject(ConnectionObserver.mock) }