passepartout-apple/Passepartout/Library/Sources/AppUI/Views/Profile/iOS/ProfileEditView+iOS.swift

177 lines
4.9 KiB
Swift
Raw Normal View History

2024-09-23 13:02:26 +00:00
//
// ProfileEditView+iOS.swift
// Passepartout
//
// Created by Davide De Rosa on 6/22/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/>.
//
#if os(iOS)
import AppLibrary
2024-09-23 13:02:26 +00:00
import PassepartoutKit
import SwiftUI
import UtilsLibrary
struct ProfileEditView: View, Routable {
@ObservedObject
var profileEditor: ProfileEditor
let moduleViewFactory: any ModuleViewFactory
@Binding
var path: NavigationPath
var flow: ProfileCoordinator.Flow?
@State
private var malformedModuleIds: [UUID] = []
var body: some View {
debugChanges()
return List {
NameSection(
name: $profileEditor.profile.name,
2024-09-23 13:02:26 +00:00
placeholder: Strings.Placeholders.Profile.name
)
Group {
2024-09-23 13:02:26 +00:00
ForEach(profileEditor.modules, id: \.id, content: moduleRow)
.onMove(perform: moveModules)
.onDelete(perform: removeModules)
addModuleButton
}
.themeSection(
header: Strings.Global.modules,
footer: Strings.Views.Profile.ModuleList.Section.footer
)
2024-09-23 13:02:26 +00:00
StorageSection(
profileEditor: profileEditor
2024-09-23 13:02:26 +00:00
)
}
.toolbar(content: toolbarContent)
2024-10-03 22:47:28 +00:00
.navigationTitle(Strings.Global.profile)
2024-09-23 13:02:26 +00:00
.navigationBarBackButtonHidden(true)
.navigationDestination(for: NavigationRoute.self, destination: pushDestination)
}
}
// MARK: -
private extension ProfileEditView {
@ToolbarContentBuilder
func toolbarContent() -> some ToolbarContent {
ToolbarItem {
ProfileSaveButton(
title: Strings.Global.save,
errorModuleIds: $malformedModuleIds
) {
try await flow?.onCommitEditing()
}
}
ToolbarItem(placement: .cancellationAction) {
Button(Strings.Global.cancel, role: .cancel) {
flow?.onCancelEditing()
}
}
}
func moduleRow(for module: any ModuleBuilder) -> some View {
2024-09-23 13:02:26 +00:00
EditorModuleToggle(profileEditor: profileEditor, module: module) {
Button {
push(.moduleDetail(moduleId: module.id))
} label: {
HStack {
Text(module.description(inEditor: profileEditor))
.themeError(malformedModuleIds.contains(module.id))
Spacer()
}
.contentShape(.rect)
}
}
}
var addModuleButton: some View {
let moduleTypes = profileEditor.availableModuleTypes.sorted {
$0.localizedDescription < $1.localizedDescription
}
return Menu {
ForEach(moduleTypes) { selectedType in
Button(selectedType.localizedDescription) {
flow?.onNewModule(selectedType)
}
}
} label: {
Text(Strings.Views.Profile.Rows.addModule)
// .frame(maxWidth: .infinity, alignment: .leading)
}
.disabled(moduleTypes.isEmpty)
}
}
private extension ProfileEditView {
func moveModules(from offsets: IndexSet, to newOffset: Int) {
profileEditor.moveModules(from: offsets, to: newOffset)
}
func removeModules(at offsets: IndexSet) {
profileEditor.removeModules(at: offsets)
}
}
// MARK: - Destinations
private extension ProfileEditView {
enum NavigationRoute: Hashable {
case moduleDetail(moduleId: UUID)
}
@ViewBuilder
func pushDestination(for item: NavigationRoute) -> some View {
switch item {
case .moduleDetail(let moduleId):
ModuleDetailView(
profileEditor: profileEditor,
moduleId: moduleId,
moduleViewFactory: moduleViewFactory
)
}
}
func push(_ item: NavigationRoute) {
path.append(item)
}
}
#Preview {
NavigationStack {
ProfileEditView(
profileEditor: ProfileEditor(profile: .newProfile()),
moduleViewFactory: DefaultModuleViewFactory(),
path: .constant(NavigationPath())
)
}
.withMockEnvironment()
2024-09-23 13:02:26 +00:00
}
#endif