2024-09-23 13:02:26 +00:00
|
|
|
//
|
2024-11-01 22:32:35 +00:00
|
|
|
// Theme+Modifiers.swift
|
2024-09-23 13:02:26 +00:00
|
|
|
// Passepartout
|
|
|
|
//
|
2024-11-01 22:32:35 +00:00
|
|
|
// Created by Davide De Rosa on 11/1/24.
|
2024-09-23 13:02:26 +00:00
|
|
|
// 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
|
2024-10-29 13:30:41 +00:00
|
|
|
#if canImport(LocalAuthentication)
|
2024-09-25 17:32:07 +00:00
|
|
|
import LocalAuthentication
|
2024-10-29 13:30:41 +00:00
|
|
|
#endif
|
2024-09-23 13:02:26 +00:00
|
|
|
import SwiftUI
|
|
|
|
import UtilsLibrary
|
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
// MARK: Shortcuts
|
|
|
|
|
|
|
|
extension View {
|
|
|
|
public func themeModal<Content>(
|
|
|
|
isPresented: Binding<Bool>,
|
|
|
|
isRoot: Bool = false,
|
|
|
|
isInteractive: Bool = true,
|
|
|
|
content: @escaping () -> Content
|
|
|
|
) -> some View where Content: View {
|
|
|
|
modifier(ThemeBooleanModalModifier(
|
|
|
|
isPresented: isPresented,
|
|
|
|
isRoot: isRoot,
|
|
|
|
isInteractive: isInteractive,
|
|
|
|
modal: content
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeModal<Content, T>(
|
|
|
|
item: Binding<T?>,
|
|
|
|
isRoot: Bool = false,
|
|
|
|
isInteractive: Bool = true,
|
|
|
|
content: @escaping (T) -> Content
|
|
|
|
) -> some View where Content: View, T: Identifiable {
|
|
|
|
modifier(ThemeItemModalModifier(
|
|
|
|
item: item,
|
|
|
|
isRoot: isRoot,
|
|
|
|
isInteractive: isInteractive,
|
|
|
|
modal: content
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeConfirmation(
|
|
|
|
isPresented: Binding<Bool>,
|
|
|
|
title: String,
|
|
|
|
isDestructive: Bool = false,
|
|
|
|
action: @escaping () -> Void
|
|
|
|
) -> some View {
|
|
|
|
modifier(ThemeConfirmationModifier(
|
|
|
|
isPresented: isPresented,
|
|
|
|
title: title,
|
|
|
|
isDestructive: isDestructive,
|
|
|
|
action: action
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeNavigationStack(if condition: Bool, closable: Bool = false, path: Binding<NavigationPath>) -> some View {
|
|
|
|
modifier(ThemeNavigationStackModifier(condition: condition, closable: closable, path: path))
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeForm() -> some View {
|
|
|
|
modifier(ThemeFormModifier())
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeManualInput() -> some View {
|
|
|
|
modifier(ThemeManualInputModifier())
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeSection(header: String? = nil, footer: String? = nil) -> some View {
|
|
|
|
modifier(ThemeSectionWithHeaderFooterModifier(header: header, footer: footer))
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-10-29 13:30:41 +00:00
|
|
|
#if !os(tvOS)
|
2024-11-01 22:32:35 +00:00
|
|
|
public func themeWindow(width: CGFloat, height: CGFloat) -> some View {
|
|
|
|
modifier(ThemeWindowModifier(size: .init(width: width, height: height)))
|
|
|
|
}
|
2024-10-29 13:30:41 +00:00
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
public func themeNavigationDetail() -> some View {
|
|
|
|
modifier(ThemeNavigationDetailModifier())
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
public func themePlainButton(action: @escaping () -> Void) -> some View {
|
|
|
|
modifier(ThemePlainButtonModifier(action: action))
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
@ViewBuilder
|
|
|
|
public func themeMultiLine(_ isMultiLine: Bool) -> some View {
|
|
|
|
if isMultiLine {
|
|
|
|
multilineTextAlignment(.leading)
|
|
|
|
} else {
|
|
|
|
themeTruncating()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeTruncating(_ mode: Text.TruncationMode = .middle) -> some View {
|
|
|
|
lineLimit(1)
|
|
|
|
.truncationMode(mode)
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeEmptyMessage() -> some View {
|
|
|
|
modifier(ThemeEmptyMessageModifier())
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
2024-11-01 22:32:35 +00:00
|
|
|
|
|
|
|
public func themeError(_ isError: Bool) -> some View {
|
|
|
|
modifier(ThemeErrorModifier(isError: isError))
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeAnimation<T>(on value: T, category: ThemeAnimationCategory) -> some View where T: Equatable {
|
|
|
|
modifier(ThemeAnimationModifier(value: value, category: category))
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeTrailingValue(_ value: CustomStringConvertible?, truncationMode: Text.TruncationMode = .tail) -> some View {
|
|
|
|
modifier(ThemeTrailingValueModifier(value: value, truncationMode: truncationMode))
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeGridHeader(title: String?) -> some View {
|
|
|
|
modifier(ThemeGridSectionModifier(title: title))
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeGridCell(isSelected: Bool) -> some View {
|
|
|
|
modifier(ThemeGridCellModifier(isSelected: isSelected))
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeHoverListRow() -> some View {
|
|
|
|
modifier(ThemeHoverListRowModifier())
|
|
|
|
}
|
|
|
|
|
|
|
|
public func themeTip(_ text: String, edge: Edge) -> some View {
|
|
|
|
modifier(ThemeTipModifier(text: text, edge: edge))
|
|
|
|
}
|
|
|
|
#endif
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
// MARK: - Presentation modifiers
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
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-10-31 10:14:39 +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-10-31 10:14:39 +00:00
|
|
|
.themeLockScreen()
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private var modalSize: CGSize? {
|
|
|
|
isRoot ? theme.rootModalSize : theme.secondaryModalSize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-03 21:25:51 +00:00
|
|
|
struct ThemeConfirmationModifier: ViewModifier {
|
|
|
|
|
|
|
|
@Binding
|
|
|
|
var isPresented: Bool
|
|
|
|
|
|
|
|
let title: String
|
|
|
|
|
2024-10-30 13:53:35 +00:00
|
|
|
let isDestructive: Bool
|
|
|
|
|
2024-10-03 21:25:51 +00:00
|
|
|
let action: () -> Void
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
2024-10-30 13:53:35 +00:00
|
|
|
.confirmationDialog(title, isPresented: $isPresented, titleVisibility: .visible) {
|
|
|
|
Button(Strings.Theme.Confirmation.ok, role: isDestructive ? .destructive : nil, action: action)
|
2024-10-30 14:20:18 +00:00
|
|
|
Text(Strings.Theme.Confirmation.cancel)
|
2024-10-03 21:25:51 +00:00
|
|
|
} 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-11-01 22:32:35 +00:00
|
|
|
// MARK: - Content modifiers
|
|
|
|
|
|
|
|
struct ThemeFormModifier: ViewModifier {
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
content
|
|
|
|
.formStyle(.grouped)
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeManualInputModifier: ViewModifier {
|
|
|
|
}
|
|
|
|
|
2024-11-01 22:32:35 +00:00
|
|
|
struct ThemeSectionWithHeaderFooterModifier: ViewModifier {
|
|
|
|
let header: String?
|
|
|
|
|
|
|
|
let footer: String?
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !os(tvOS)
|
|
|
|
|
|
|
|
struct ThemeWindowModifier: ViewModifier {
|
|
|
|
let size: CGSize
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemeNavigationDetailModifier: ViewModifier {
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ThemePlainButtonModifier: ViewModifier {
|
|
|
|
let action: () -> Void
|
|
|
|
}
|
|
|
|
|
2024-09-23 13:02:26 +00:00
|
|
|
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-09-23 13:02:26 +00:00
|
|
|
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-10-31 10:14:39 +00:00
|
|
|
struct ThemeLockScreenModifier<LockedContent>: ViewModifier where LockedContent: View {
|
2024-09-25 17:32:07 +00:00
|
|
|
|
|
|
|
@AppStorage(AppPreference.locksInBackground.key)
|
|
|
|
private var locksInBackground = false
|
|
|
|
|
2024-10-31 10:14:39 +00:00
|
|
|
@EnvironmentObject
|
|
|
|
private var theme: Theme
|
|
|
|
|
|
|
|
@ViewBuilder
|
|
|
|
let lockedContent: () -> LockedContent
|
2024-10-30 09:18:39 +00:00
|
|
|
|
2024-09-25 17:32:07 +00:00
|
|
|
func body(content: Content) -> some View {
|
|
|
|
LockableView(
|
2024-10-30 11:25:33 +00:00
|
|
|
locksInBackground: locksInBackground,
|
2024-09-25 17:32:07 +00:00
|
|
|
content: {
|
|
|
|
content
|
|
|
|
},
|
2024-10-31 10:14:39 +00:00
|
|
|
lockedContent: lockedContent,
|
2024-09-25 17:32:07 +00:00
|
|
|
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-10-30 14:20:18 +00:00
|
|
|
localizedReason: Strings.Theme.LockScreen.reason
|
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-10-29 13:30:41 +00:00
|
|
|
#endif
|