2024-11-14 10:02:26 +00:00
|
|
|
//
|
2024-11-16 11:29:03 +00:00
|
|
|
// MigrateContentView+Table.swift
|
2024-11-14 10:02:26 +00:00
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 11/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 <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
import CommonLibrary
|
|
|
|
import SwiftUI
|
|
|
|
|
2024-11-16 11:29:03 +00:00
|
|
|
extension MigrateContentView {
|
2024-11-14 10:02:26 +00:00
|
|
|
struct TableView: View {
|
2024-11-15 00:47:52 +00:00
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
2024-11-16 11:29:03 +00:00
|
|
|
let step: MigrateViewStep
|
2024-11-14 14:11:25 +00:00
|
|
|
|
2024-11-14 10:02:26 +00:00
|
|
|
let profiles: [MigratableProfile]
|
|
|
|
|
|
|
|
@Binding
|
2024-11-14 14:11:25 +00:00
|
|
|
var statuses: [UUID: MigrationStatus]
|
2024-11-14 10:02:26 +00:00
|
|
|
|
2024-11-16 11:29:03 +00:00
|
|
|
let onDelete: ([MigratableProfile]) -> Void
|
|
|
|
|
|
|
|
let performButton: () -> PerformButton
|
|
|
|
|
2024-11-14 10:02:26 +00:00
|
|
|
var body: some View {
|
2024-11-17 13:02:40 +00:00
|
|
|
VStack(spacing: .zero) {
|
|
|
|
messageView
|
|
|
|
profilesForm
|
2024-11-16 11:29:03 +00:00
|
|
|
}
|
|
|
|
.toolbar {
|
|
|
|
ToolbarItem(placement: .confirmationAction, content: performButton)
|
2024-11-14 10:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
2024-11-14 14:11:25 +00:00
|
|
|
}
|
|
|
|
}
|
2024-11-14 10:02:26 +00:00
|
|
|
|
2024-11-16 11:29:03 +00:00
|
|
|
private extension MigrateContentView.TableView {
|
2024-11-17 13:02:40 +00:00
|
|
|
var isEmpty: Bool {
|
|
|
|
step.isReady && profiles.isEmpty
|
|
|
|
}
|
|
|
|
|
|
|
|
var messageView: some View {
|
|
|
|
Text(Strings.Views.Migrate.Sections.Main.header)
|
|
|
|
.padding([.top, .leading, .trailing])
|
2024-11-16 14:07:47 +00:00
|
|
|
}
|
|
|
|
|
2024-11-17 13:02:40 +00:00
|
|
|
var profilesForm: some View {
|
|
|
|
Form {
|
2024-11-16 14:07:47 +00:00
|
|
|
Table(profiles) {
|
|
|
|
TableColumn(Strings.Global.name) {
|
|
|
|
Text($0.name)
|
|
|
|
.foregroundStyle(statuses.style(for: $0.id))
|
|
|
|
}
|
|
|
|
TableColumn(Strings.Global.lastUpdate) {
|
|
|
|
Text($0.timestamp)
|
|
|
|
.foregroundStyle(statuses.style(for: $0.id))
|
|
|
|
}
|
|
|
|
TableColumn("") {
|
|
|
|
ControlView(
|
|
|
|
step: step,
|
|
|
|
isIncluded: isIncludedBinding(for: $0.id),
|
|
|
|
status: statuses[$0.id]
|
|
|
|
)
|
|
|
|
.environmentObject(theme) // TODO: #873, Table loses environment
|
|
|
|
}
|
2024-11-16 20:16:25 +00:00
|
|
|
.width(30)
|
2024-11-16 14:07:47 +00:00
|
|
|
TableColumn("") { profile in
|
|
|
|
Button {
|
|
|
|
onDelete([profile])
|
|
|
|
} label: {
|
|
|
|
ThemeImage(.editableSectionRemove)
|
|
|
|
}
|
|
|
|
.environmentObject(theme) // TODO: #873, Table loses environment
|
|
|
|
}
|
|
|
|
.width(20)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.disabled(!step.canSelect)
|
2024-11-17 13:02:40 +00:00
|
|
|
.themeForm()
|
|
|
|
.themeEmpty(if: isEmpty, message: Strings.Views.Migrate.noProfiles)
|
2024-11-16 14:07:47 +00:00
|
|
|
}
|
|
|
|
|
2024-11-14 14:11:25 +00:00
|
|
|
func isIncludedBinding(for profileId: UUID) -> Binding<Bool> {
|
|
|
|
Binding {
|
|
|
|
statuses[profileId] != .excluded
|
|
|
|
} set: {
|
|
|
|
if $0 {
|
|
|
|
statuses.removeValue(forKey: profileId)
|
|
|
|
} else {
|
|
|
|
statuses[profileId] = .excluded
|
2024-11-14 10:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
2024-11-14 14:11:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-16 14:07:47 +00:00
|
|
|
private extension MigratableProfile {
|
|
|
|
var timestamp: String {
|
|
|
|
lastUpdate?.localizedDescription(style: .timestamp) ?? ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - Subviews
|
|
|
|
|
2024-11-16 11:29:03 +00:00
|
|
|
private extension MigrateContentView.TableView {
|
2024-11-15 00:47:52 +00:00
|
|
|
struct ControlView: View {
|
2024-11-16 11:29:03 +00:00
|
|
|
let step: MigrateViewStep
|
2024-11-15 00:47:52 +00:00
|
|
|
|
|
|
|
@Binding
|
|
|
|
var isIncluded: Bool
|
|
|
|
|
|
|
|
let status: MigrationStatus?
|
2024-11-14 10:02:26 +00:00
|
|
|
|
2024-11-14 14:11:25 +00:00
|
|
|
var body: some View {
|
2024-11-15 00:47:52 +00:00
|
|
|
switch step {
|
|
|
|
case .initial, .fetching, .fetched:
|
|
|
|
Toggle("", isOn: $isIncluded)
|
|
|
|
.labelsHidden()
|
|
|
|
|
|
|
|
default:
|
|
|
|
statusView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@ViewBuilder
|
|
|
|
var statusView: some View {
|
2024-11-14 10:02:26 +00:00
|
|
|
switch status {
|
|
|
|
case .excluded:
|
2024-11-14 14:11:25 +00:00
|
|
|
Text("--")
|
2024-11-14 10:02:26 +00:00
|
|
|
|
|
|
|
case .pending:
|
2024-11-14 14:11:25 +00:00
|
|
|
ThemeImage(.progress)
|
2024-11-14 10:02:26 +00:00
|
|
|
|
2024-11-16 20:16:25 +00:00
|
|
|
case .done:
|
2024-11-14 14:11:25 +00:00
|
|
|
ThemeImage(.marked)
|
2024-11-14 10:02:26 +00:00
|
|
|
|
2024-11-14 14:11:25 +00:00
|
|
|
case .failed:
|
|
|
|
ThemeImage(.failure)
|
2024-11-15 00:47:52 +00:00
|
|
|
|
|
|
|
case .none:
|
|
|
|
EmptyView()
|
2024-11-14 10:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|