2024-09-23 13:02:26 +00:00
|
|
|
//
|
|
|
|
// Theme+UI.swift
|
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 8/28/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-09-25 17:32:07 +00:00
|
|
|
import CommonLibrary
|
|
|
|
import LocalAuthentication
|
2024-09-23 13:02:26 +00:00
|
|
|
import SwiftUI
|
|
|
|
import UtilsLibrary
|
|
|
|
|
|
|
|
// MARK: - Modifiers
|
|
|
|
|
|
|
|
struct ThemeWindowModifier: ViewModifier {
|
|
|
|
let size: CGSize
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeNavigationDetailModifier: ViewModifier {
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeFormModifier: ViewModifier {
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
|
|
|
.formStyle(.grouped)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeBooleanModalModifier<Modal>: ViewModifier where Modal: View {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var isPresented: Bool
|
|
|
|
|
|
|
|
let isRoot: Bool
|
|
|
|
|
|
|
|
let isInteractive: Bool
|
|
|
|
|
|
|
|
let modal: () -> Modal
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
|
|
|
.sheet(isPresented: $isPresented) {
|
|
|
|
modal()
|
|
|
|
.frame(minWidth: modalSize?.width, minHeight: modalSize?.height)
|
|
|
|
.interactiveDismissDisabled(!isInteractive)
|
2024-09-25 17:32:07 +00:00
|
|
|
.themeLockScreen()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private var modalSize: CGSize? {
|
|
|
|
isRoot ? theme.rootModalSize : theme.secondaryModalSize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeItemModalModifier<Modal, T>: ViewModifier where Modal: View, T: Identifiable {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var item: T?
|
|
|
|
|
|
|
|
let isRoot: Bool
|
|
|
|
|
|
|
|
let isInteractive: Bool
|
|
|
|
|
|
|
|
let modal: (T) -> Modal
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
|
|
|
.sheet(item: $item) {
|
|
|
|
modal($0)
|
|
|
|
.frame(minWidth: modalSize?.width, minHeight: modalSize?.height)
|
|
|
|
.interactiveDismissDisabled(!isInteractive)
|
2024-09-25 17:32:07 +00:00
|
|
|
.themeLockScreen()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private var modalSize: CGSize? {
|
|
|
|
isRoot ? theme.rootModalSize : theme.secondaryModalSize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-18 16:12:28 +00:00
|
|
|
struct ThemeBooleanPopoverModifier<Popover>: ViewModifier where Popover: View {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
2024-10-26 18:28:02 +00:00
|
|
|
@Environment(\.horizontalSizeClass)
|
|
|
|
private var hsClass
|
|
|
|
|
|
|
|
@Environment(\.verticalSizeClass)
|
|
|
|
private var vsClass
|
|
|
|
|
2024-10-18 16:12:28 +00:00
|
|
|
@Binding
|
|
|
|
var isPresented: Bool
|
|
|
|
|
|
|
|
@ViewBuilder
|
|
|
|
let popover: Popover
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
2024-10-26 18:28:02 +00:00
|
|
|
if hsClass == .regular && vsClass == .regular {
|
|
|
|
content
|
|
|
|
.popover(isPresented: $isPresented) {
|
|
|
|
popover
|
|
|
|
.frame(minWidth: theme.popoverSize?.width, minHeight: theme.popoverSize?.height)
|
|
|
|
.themeLockScreen()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
content
|
|
|
|
.sheet(isPresented: $isPresented) {
|
|
|
|
popover
|
|
|
|
.themeLockScreen()
|
|
|
|
}
|
|
|
|
}
|
2024-10-18 16:12:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-03 21:25:51 +00:00
|
|
|
struct ThemeConfirmationModifier: ViewModifier {
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var isPresented: Bool
|
|
|
|
|
|
|
|
let title: String
|
|
|
|
|
|
|
|
let action: () -> Void
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
|
|
|
.confirmationDialog(title, isPresented: $isPresented) {
|
|
|
|
Button(Strings.Global.ok, action: action)
|
|
|
|
Text(Strings.Global.cancel)
|
|
|
|
} message: {
|
|
|
|
Text(Strings.Theme.Confirmation.message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-28 10:47:33 +00:00
|
|
|
struct ThemeNavigationStackModifier: ViewModifier {
|
|
|
|
|
|
|
|
@Environment(\.dismiss)
|
|
|
|
private var dismiss
|
|
|
|
|
|
|
|
let condition: Bool
|
|
|
|
|
|
|
|
let closable: Bool
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var path: NavigationPath
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
if condition {
|
|
|
|
NavigationStack(path: $path) {
|
|
|
|
content
|
|
|
|
.toolbar {
|
|
|
|
if closable {
|
|
|
|
ToolbarItem(placement: .cancellationAction) {
|
|
|
|
Button {
|
|
|
|
dismiss()
|
|
|
|
} label: {
|
|
|
|
ThemeImage(.close)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
content
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
struct ThemePlainButtonModifier: ViewModifier {
|
|
|
|
let action: () -> Void
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeManualInputModifier: ViewModifier {
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeEmptyMessageModifier: ViewModifier {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
VStack {
|
|
|
|
Spacer()
|
|
|
|
content
|
|
|
|
.font(theme.emptyMessageFont)
|
|
|
|
.foregroundStyle(theme.emptyMessageColor)
|
|
|
|
Spacer()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeErrorModifier: ViewModifier {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
let isError: Bool
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
|
|
|
.foregroundStyle(isError ? theme.errorColor : theme.titleColor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeAnimationModifier<T>: ViewModifier where T: Equatable {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
let value: T
|
|
|
|
|
|
|
|
let category: ThemeAnimationCategory
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
|
|
|
.animation(theme.animation(for: category), value: value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-28 20:38:26 +00:00
|
|
|
struct ThemeTrailingValueModifier: ViewModifier {
|
|
|
|
let value: CustomStringConvertible?
|
|
|
|
|
|
|
|
let truncationMode: Text.TruncationMode
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
LabeledContent {
|
|
|
|
if let value {
|
|
|
|
Spacer()
|
|
|
|
Text(value.description)
|
|
|
|
.foregroundStyle(.secondary)
|
|
|
|
.lineLimit(1)
|
|
|
|
.truncationMode(truncationMode)
|
|
|
|
}
|
|
|
|
} label: {
|
|
|
|
content
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-03 15:03:53 +00:00
|
|
|
struct ThemeSectionWithHeaderFooterModifier: ViewModifier {
|
|
|
|
let header: String?
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
let footer: String?
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeGridSectionModifier: ViewModifier {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
let title: String?
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
if let title {
|
|
|
|
Text(title)
|
|
|
|
.font(theme.gridHeaderStyle)
|
|
|
|
.fontWeight(theme.relevantWeight)
|
|
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
|
|
.padding(.leading)
|
|
|
|
.padding(.bottom, theme.gridHeaderBottom)
|
|
|
|
}
|
|
|
|
content
|
|
|
|
.padding(.bottom)
|
|
|
|
.padding(.bottom)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeGridCellModifier: ViewModifier {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
let isSelected: Bool
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
|
|
|
.padding()
|
|
|
|
.background(isSelected ? theme.gridCellActiveColor : theme.gridCellColor)
|
|
|
|
.clipShape(.rect(cornerRadius: theme.gridRadius))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeHoverListRowModifier: ViewModifier {
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
|
|
|
.frame(maxHeight: .infinity)
|
|
|
|
.listRowInsets(.init())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-25 17:32:07 +00:00
|
|
|
struct ThemeLockScreenModifier: ViewModifier {
|
|
|
|
|
|
|
|
@AppStorage(AppPreference.locksInBackground.key)
|
|
|
|
private var locksInBackground = false
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
LockableView(
|
|
|
|
locksInBackground: $locksInBackground,
|
|
|
|
content: {
|
|
|
|
content
|
|
|
|
},
|
|
|
|
lockedContent: LogoView.init,
|
|
|
|
unlockBlock: Self.unlockScreenBlock
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
private static func unlockScreenBlock() async -> Bool {
|
|
|
|
let context = LAContext()
|
|
|
|
let policy: LAPolicy = .deviceOwnerAuthentication
|
|
|
|
var error: NSError?
|
|
|
|
guard context.canEvaluatePolicy(policy, error: &error) else {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
let isAuthorized = try await context.evaluatePolicy(
|
|
|
|
policy,
|
2024-09-28 10:47:33 +00:00
|
|
|
localizedReason: Strings.Views.Settings.Rows.LockInBackground.message
|
2024-09-25 17:32:07 +00:00
|
|
|
)
|
|
|
|
return isAuthorized
|
|
|
|
} catch {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-03 15:50:19 +00:00
|
|
|
struct ThemeTipModifier: ViewModifier {
|
|
|
|
let text: String
|
|
|
|
|
|
|
|
let edge: Edge
|
|
|
|
|
|
|
|
@State
|
|
|
|
private var isPresenting = false
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
HStack {
|
|
|
|
content
|
|
|
|
Button {
|
|
|
|
isPresenting = true
|
|
|
|
} label: {
|
|
|
|
ThemeImage(.tip)
|
|
|
|
}
|
2024-10-04 00:57:09 +00:00
|
|
|
.imageScale(.large)
|
2024-10-03 15:50:19 +00:00
|
|
|
.buttonStyle(.borderless)
|
2024-10-03 15:53:19 +00:00
|
|
|
.popover(isPresented: $isPresenting, arrowEdge: edge) {
|
|
|
|
VStack {
|
|
|
|
Text(text)
|
|
|
|
.font(.body)
|
|
|
|
.foregroundStyle(.primary)
|
|
|
|
.lineLimit(nil)
|
|
|
|
.multilineTextAlignment(.leading)
|
|
|
|
.frame(width: 150.0)
|
|
|
|
}
|
|
|
|
.padding(12)
|
2024-10-03 15:50:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
// MARK: - Views
|
|
|
|
|
|
|
|
public enum ThemeAnimationCategory: CaseIterable {
|
2024-10-10 22:24:06 +00:00
|
|
|
case diagnostics
|
|
|
|
|
|
|
|
case modules
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
case profiles
|
|
|
|
|
|
|
|
case profilesLayout
|
|
|
|
|
2024-10-10 22:24:06 +00:00
|
|
|
case providers
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeImage: View {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
private let name: Theme.ImageName
|
|
|
|
|
|
|
|
init(_ name: Theme.ImageName) {
|
|
|
|
self.name = name
|
|
|
|
}
|
|
|
|
|
|
|
|
var body: some View {
|
2024-10-26 19:51:18 +00:00
|
|
|
Image(systemName: theme.systemImageName(name))
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeImageLabel: View {
|
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
private let title: String
|
|
|
|
|
|
|
|
private let name: Theme.ImageName
|
|
|
|
|
|
|
|
init(_ title: String, _ name: Theme.ImageName) {
|
|
|
|
self.title = title
|
|
|
|
self.name = name
|
|
|
|
}
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
Label {
|
|
|
|
Text(title)
|
|
|
|
} icon: {
|
|
|
|
ThemeImage(name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-23 15:17:20 +00:00
|
|
|
struct ThemeDisclosableMenu<Content, Label>: View where Content: View, Label: View {
|
2024-10-22 13:06:13 +00:00
|
|
|
|
|
|
|
@ViewBuilder
|
2024-10-23 15:17:20 +00:00
|
|
|
let content: () -> Content
|
2024-10-22 13:06:13 +00:00
|
|
|
|
|
|
|
@ViewBuilder
|
2024-10-23 15:17:20 +00:00
|
|
|
let label: Label
|
2024-10-22 13:06:13 +00:00
|
|
|
|
|
|
|
var body: some View {
|
2024-10-23 15:17:20 +00:00
|
|
|
Menu(content: content) {
|
2024-10-22 13:06:13 +00:00
|
|
|
HStack(alignment: .firstTextBaseline) {
|
2024-10-23 15:17:20 +00:00
|
|
|
label
|
2024-10-22 13:06:13 +00:00
|
|
|
ThemeImage(.disclose)
|
|
|
|
}
|
|
|
|
.contentShape(.rect)
|
|
|
|
}
|
|
|
|
.foregroundStyle(.primary)
|
|
|
|
#if os(macOS)
|
|
|
|
.buttonStyle(.plain)
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-11 17:45:58 +00:00
|
|
|
struct ThemeCopiableText<Value, ValueView>: View where Value: CustomStringConvertible, ValueView: View {
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
var title: String?
|
|
|
|
|
2024-10-11 17:45:58 +00:00
|
|
|
let value: Value
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-10-04 22:17:08 +00:00
|
|
|
var isMultiLine = true
|
2024-10-04 08:37:10 +00:00
|
|
|
|
2024-10-11 17:45:58 +00:00
|
|
|
let valueView: (Value) -> ValueView
|
2024-10-09 19:40:56 +00:00
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
var body: some View {
|
|
|
|
HStack {
|
|
|
|
if let title {
|
|
|
|
Text(title)
|
|
|
|
Spacer()
|
|
|
|
}
|
2024-10-09 19:40:56 +00:00
|
|
|
valueView(value)
|
2024-09-23 13:02:26 +00:00
|
|
|
.foregroundStyle(title == nil ? theme.titleColor : theme.valueColor)
|
2024-10-04 08:37:10 +00:00
|
|
|
.themeMultiLine(isMultiLine)
|
2024-09-23 13:02:26 +00:00
|
|
|
if title == nil {
|
|
|
|
Spacer()
|
|
|
|
}
|
|
|
|
Button {
|
2024-10-11 17:45:58 +00:00
|
|
|
copyToPasteboard(value.description)
|
2024-09-23 13:02:26 +00:00
|
|
|
} label: {
|
|
|
|
ThemeImage(.copy)
|
|
|
|
}
|
2024-10-01 13:45:25 +00:00
|
|
|
// TODO: #584, necessary to avoid cell selection
|
2024-09-23 13:02:26 +00:00
|
|
|
.buttonStyle(.borderless)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeTappableText: View {
|
|
|
|
let title: String
|
|
|
|
|
|
|
|
let action: () -> Void
|
|
|
|
|
|
|
|
var commonView: some View {
|
|
|
|
Button(action: action) {
|
|
|
|
Text(title)
|
|
|
|
.themeTruncating()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeTextField: View {
|
|
|
|
let title: String?
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var text: String
|
|
|
|
|
|
|
|
let placeholder: String
|
|
|
|
|
|
|
|
init(_ title: String, text: Binding<String>, placeholder: String) {
|
|
|
|
self.title = title
|
|
|
|
_text = text
|
|
|
|
self.placeholder = placeholder
|
|
|
|
}
|
|
|
|
|
|
|
|
@ViewBuilder
|
|
|
|
var commonView: some View {
|
|
|
|
if let title {
|
|
|
|
LabeledContent {
|
|
|
|
fieldView
|
|
|
|
} label: {
|
|
|
|
Text(title)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fieldView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private var fieldView: some View {
|
|
|
|
TextField(title ?? "", text: $text, prompt: Text(placeholder))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeSecureField: View {
|
|
|
|
let title: String?
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var text: String
|
|
|
|
|
|
|
|
let placeholder: String
|
|
|
|
|
|
|
|
@ViewBuilder
|
|
|
|
var commonView: some View {
|
|
|
|
if let title {
|
|
|
|
LabeledContent {
|
|
|
|
fieldView
|
|
|
|
} label: {
|
|
|
|
Text(title)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fieldView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private var fieldView: some View {
|
|
|
|
RevealingSecureField(title ?? "", text: $text, prompt: Text(placeholder), imageWidth: 30.0) {
|
|
|
|
ThemeImage(.hide)
|
|
|
|
.foregroundStyle(Color.accentColor)
|
|
|
|
} revealImage: {
|
|
|
|
ThemeImage(.show)
|
|
|
|
.foregroundStyle(Color.accentColor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeRemovableItemRow<ItemView>: View where ItemView: View {
|
|
|
|
let isEditing: Bool
|
|
|
|
|
|
|
|
@ViewBuilder
|
|
|
|
let itemView: () -> ItemView
|
|
|
|
|
|
|
|
let removeAction: () -> Void
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
RemovableItemRow(
|
|
|
|
isEditing: isEditing,
|
|
|
|
itemView: itemView,
|
|
|
|
removeView: removeView
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ThemeEditableListSection {
|
|
|
|
struct RemoveLabel: View {
|
|
|
|
let action: () -> Void
|
|
|
|
}
|
|
|
|
|
|
|
|
struct EditLabel: View {
|
|
|
|
}
|
|
|
|
}
|