passepartout-apple/Passepartout/Library/Sources/AppUI/Views/UI/ProfileRowView.swift

127 lines
3.2 KiB
Swift
Raw Normal View History

2024-09-23 13:02:26 +00:00
//
// ProfileRowView.swift
// Passepartout
//
// Created by Davide De Rosa on 9/5/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/>.
//
import AppLibrary
2024-09-23 13:02:26 +00:00
import PassepartoutKit
import SwiftUI
import UtilsLibrary
struct ProfileRowView: View, TunnelContextProviding {
@EnvironmentObject
private var theme: Theme
@EnvironmentObject
var connectionObserver: ConnectionObserver
let style: ProfileCardView.Style
2024-10-03 22:39:41 +00:00
@ObservedObject
var profileManager: ProfileManager
2024-09-23 13:02:26 +00:00
@ObservedObject
var tunnel: Tunnel
let header: ProfileHeader
let interactiveManager: InteractiveManager
let errorHandler: ErrorHandler
@Binding
var nextProfileId: Profile.ID?
let withMarker: Bool
let onEdit: (ProfileHeader) -> Void
var body: some View {
HStack {
Group {
if withMarker {
markerView
}
cardView
2024-09-23 13:02:26 +00:00
}
Spacer()
HStack(spacing: 10.0) {
if isShared {
sharingView
}
ProfileInfoButton(header: header, onEdit: onEdit)
2024-10-03 22:39:41 +00:00
}
.imageScale(.large)
2024-09-23 13:02:26 +00:00
}
}
}
private extension ProfileRowView {
2024-10-03 22:39:41 +00:00
var isShared: Bool {
profileManager.isRemotelyShared(profileWithId: header.id)
}
2024-09-23 13:02:26 +00:00
var markerView: some View {
ThemeImage(header.id == nextProfileId ? .pending : statusImage)
.opacity(header.id == nextProfileId || header.id == tunnel.currentProfile?.id ? 1.0 : 0.0)
2024-09-23 13:02:26 +00:00
.frame(width: 24.0)
}
var cardView: some View {
TunnelToggleButton(
tunnel: tunnel,
profile: profileManager.profile(withId: header.id),
nextProfileId: $nextProfileId,
interactiveManager: interactiveManager,
errorHandler: errorHandler
) { _ in
ProfileCardView(
style: style,
2024-10-03 22:39:41 +00:00
header: header
)
.frame(maxWidth: .infinity)
.contentShape(.rect)
2024-09-23 13:02:26 +00:00
}
}
2024-10-03 22:39:41 +00:00
var sharingView: some View {
ThemeImage(.cloud)
.foregroundStyle(.secondary)
2024-10-03 22:51:56 +00:00
.help(Strings.Modules.General.Rows.icloudSharing)
2024-10-03 22:39:41 +00:00
}
2024-09-23 13:02:26 +00:00
var statusImage: Theme.ImageName {
switch tunnelConnectionStatus {
case .active:
return .marked
case .activating, .deactivating:
return .pending
case .inactive:
return .sleeping
}
}
}