passepartout-apple/Passepartout/App/Constants/Theme.swift

507 lines
12 KiB
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// Theme.swift
// Passepartout
//
// Created by Davide De Rosa on 2/24/22.
// Copyright (c) 2022 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 SwiftUI
import PassepartoutCore
extension View {
var themeIdiom: UIUserInterfaceIdiom {
UIDevice.current.userInterfaceIdiom
}
var themeIsiPad: Bool {
#if targetEnvironment(macCatalyst)
false
#else
UIDevice.current.userInterfaceIdiom == .pad
#endif
}
var themeIsiPadPortrait: Bool {
#if targetEnvironment(macCatalyst)
false
#else
let device: UIDevice = .current
return device.userInterfaceIdiom == .pad && device.orientation.isPortrait
#endif
}
var themeIsMultitasking: Bool {
UIDevice.current.isMultitaskingSupported
}
2022-04-12 13:09:14 +00:00
}
// MARK: Global
2022-04-12 13:09:14 +00:00
extension View {
func themeGlobal() -> some View {
themeNavigationViewStyle()
.themeTint()
.themeToggleStyle()
.menuStyle(.borderlessButton)
2022-04-12 13:09:14 +00:00
}
@ViewBuilder
private func themeTint() -> some View {
if #available(iOS 15, *) {
tint(.accentColor)
} else {
self
}
}
@ViewBuilder
private func themeToggleStyle() -> some View {
if #available(iOS 15, *) {
toggleStyle(.switch)
} else {
toggleStyle(SwitchToggleStyle(tint: .accentColor))
}
}
2022-04-12 13:09:14 +00:00
@ViewBuilder
private func themeNavigationViewStyle() -> some View {
switch themeIdiom {
2022-04-12 13:09:14 +00:00
case .phone:
navigationViewStyle(.stack)
default:
navigationViewStyle(.automatic)
}
}
2022-04-12 13:09:14 +00:00
func themePrimaryView() -> some View {
#if targetEnvironment(macCatalyst)
navigationBarTitleDisplayMode(.inline)
#else
navigationBarTitleDisplayMode(.large)
.navigationTitle(Unlocalized.appName)
#endif
2022-04-12 13:09:14 +00:00
}
func themeSecondaryView() -> some View {
navigationBarTitleDisplayMode(.inline)
.listStyle(.insetGrouped)
2022-04-12 13:09:14 +00:00
}
}
// MARK: Colors
extension View {
fileprivate var themePrimaryBackgroundColor: Color {
2022-04-12 13:09:14 +00:00
Color(Asset.Assets.primaryColor.color)
}
fileprivate var themeSecondaryColor: Color {
2022-04-12 13:09:14 +00:00
.secondary
}
fileprivate var themeLightTextColor: Color {
2022-04-12 13:09:14 +00:00
Color(Asset.Assets.lightTextColor.color)
}
fileprivate var themeErrorColor: Color {
2022-04-12 13:09:14 +00:00
.red
}
private func themeColor(_ string: String?, validator: (String) throws -> Void) -> Color? {
guard let string = string else {
return nil
}
do {
try validator(string)
return nil
} catch {
return themeErrorColor
}
}
}
// MARK: Images
extension View {
var themeAssetsLogoImage: String {
"logo"
}
2022-05-05 07:51:17 +00:00
var themeCheckmarkImage: String {
"checkmark"
}
var themeShareImage: String {
"square.and.arrow.up"
}
var themeCloseImage: String {
"xmark"
}
var themeConceilImage: String {
"eye.slash"
}
var themeRevealImage: String {
"eye"
}
// MARK: Organizer
2022-04-12 13:09:14 +00:00
func themeAssetsProviderImage(_ providerName: ProviderName) -> String {
"providers/\(providerName)"
}
func themeAssetsCountryImage(_ countryCode: String) -> String {
"flags/\(countryCode.lowercased())"
}
var themeProviderImage: String {
2022-04-27 11:40:05 +00:00
"externaldrive.connected.to.line.below"
}
var themeHostFilesImage: String {
2022-04-27 11:40:05 +00:00
"folder"
2022-04-12 13:09:14 +00:00
}
var themeHostTextImage: String {
"text.justify"
2022-04-12 13:09:14 +00:00
}
var themeInfoMenuImage: String {
"info.circle"
}
2022-05-05 07:51:17 +00:00
var themeDonateImage: String {
"giftcard"
}
2022-05-05 07:51:17 +00:00
var themeRedditImage: String {
"person.3"
}
var themeWriteReviewImage: String {
"star"
2022-05-05 07:51:17 +00:00
}
var themeAddMenuImage: String {
2022-04-12 13:09:14 +00:00
"plus"
}
2022-05-05 07:51:17 +00:00
var themeProfileActiveImage: String {
2022-05-03 17:24:46 +00:00
"checkmark.circle"
}
var themeProfileConnectedImage: String {
"circle.fill"
}
var themeProfileInactiveImage: String {
2022-05-03 17:24:46 +00:00
"circle"
}
2022-05-05 07:51:17 +00:00
// MARK: Profile
var themeSettingsMenuImage: String {
"ellipsis.circle"
2022-04-12 13:09:14 +00:00
}
var themeShortcutsImage: String {
2022-04-27 11:40:05 +00:00
"mic"
2022-04-12 13:09:14 +00:00
}
2022-05-05 07:51:17 +00:00
var themeRenameProfileImage: String {
"highlighter"
// "character.cursor.ibeam"
2022-04-12 13:09:14 +00:00
}
2022-05-05 07:51:17 +00:00
var themeDuplicateImage: String {
"doc.on.doc"
2022-04-12 13:09:14 +00:00
}
var themeUninstallImage: String {
"arrow.uturn.down"
}
2022-04-12 13:09:14 +00:00
var themeDeleteImage: String {
2022-04-27 11:40:05 +00:00
"trash"
2022-04-12 13:09:14 +00:00
}
var themeVPNProtocolImage: String {
2022-04-27 11:40:05 +00:00
"bolt"
2022-04-12 13:09:14 +00:00
// "waveform.path.ecg"
// "message.and.waveform.fill"
// "pc"
// "captions.bubble.fill"
}
var themeEndpointImage: String {
"link"
}
var themeAccountImage: String {
2022-04-27 11:40:05 +00:00
"person"
2022-04-12 13:09:14 +00:00
}
var themeProviderLocationImage: String {
2022-04-27 11:40:05 +00:00
"location"
2022-04-12 13:09:14 +00:00
}
var themeProviderPresetImage: String {
"slider.horizontal.3"
}
var themeProviderRefreshImage: String {
"arrow.clockwise"
}
var themeNetworkSettingsImage: String {
// "network"
"globe"
}
var themeOnDemandImage: String {
"wifi"
}
var themeDiagnosticsImage: String {
"bandage.fill"
}
var themeFAQImage: String {
2022-04-27 11:40:05 +00:00
"questionmark.diamond"
2022-04-12 13:09:14 +00:00
}
func themeFavoritesImage(_ active: Bool) -> String {
active ? "bookmark.fill" : "bookmark"
}
func themeFavoriteActionImage(_ doFavorite: Bool) -> String {
doFavorite ? "bookmark" : "bookmark.slash.fill"
}
}
extension String {
var asAssetImage: Image {
Image(self)
}
var asSystemImage: Image {
Image(systemName: self)
}
}
// MARK: Styles
extension View {
func themeAccentForegroundStyle() -> some View {
foregroundColor(.accentColor)
}
var themePrimaryBackground: some View {
themePrimaryBackgroundColor
.ignoresSafeArea()
}
func themeSecondaryTextStyle() -> some View {
foregroundColor(themeSecondaryColor)
}
func themeLightTextStyle() -> some View {
foregroundColor(themeLightTextColor)
}
@available(iOS 15, *)
func themePrimaryTintStyle() -> some View {
tint(themePrimaryBackgroundColor)
}
2022-04-23 09:27:17 +00:00
func themeTextButtonStyle() -> some View {
accentColor(.primary)
}
func themeLongTextStyle() -> some View {
lineLimit(1)
.truncationMode(.middle)
}
func themeInformativeTextStyle() -> some View {
multilineTextAlignment(.center)
.font(.title)
.foregroundColor(themeSecondaryColor)
}
func themeDebugLogStyle() -> some View {
font(.system(size: 13, weight: .medium, design: .monospaced))
}
}
2022-04-23 10:08:24 +00:00
// MARK: Animations
extension View {
func themeAnimation<V: Equatable>(on value: V) -> some View {
animation(.default, value: value)
}
}
extension Binding {
func themeAnimation() -> Binding<Value> {
animation(.default)
}
}
2022-04-12 13:09:14 +00:00
// MARK: Shortcuts
extension View {
func themeCloseItem(presentationMode: Binding<PresentationMode>) -> some ToolbarContent {
ToolbarItem(placement: .cancellationAction) {
Button {
presentationMode.wrappedValue.dismiss()
} label: {
themeCloseImage.asSystemImage
}
}
}
func themeCloseItem(isPresented: Binding<Bool>) -> some ToolbarContent {
ToolbarItem(placement: .cancellationAction) {
Button {
isPresented.wrappedValue = false
} label: {
themeCloseImage.asSystemImage
}
}
}
2022-04-12 13:09:14 +00:00
func themeSaveButtonLabel() -> some View {
// themeCheckmarkImage.asSystemImage
Text(L10n.Global.Strings.save)
}
// func themeDoneButtonLabel() -> some View {
//// themeCheckmarkImage.asSystemImage
// Text(L10n.Global.Strings.ok)
// }
2022-04-12 13:09:14 +00:00
func themeTextPicker<T: Hashable>(_ title: String, selection: Binding<T>, values: [T], description: @escaping (T) -> String) -> some View {
StyledPicker(title: title, selection: selection, values: values) {
Text(description($0))
} selectionLabel: {
Text(description($0))
.foregroundColor(themeSecondaryColor)
} listStyle: {
.insetGrouped
}
}
func themeLongContentLinkDefault(_ title: String, content: Binding<String>) -> some View {
LongContentLink(title, content: content) {
Text($0)
.foregroundColor(themeSecondaryColor)
}
}
2022-04-12 13:09:14 +00:00
func themeLongContentLink(_ title: String, content: Binding<String>, withPreview preview: String? = nil) -> some View {
LongContentLink(title, content: content, preview: preview) {
Text(preview != nil ? $0 : "")
.foregroundColor(themeSecondaryColor)
}
}
@ViewBuilder
func themeErrorMessage(_ message: String?) -> some View {
if let message = message {
if message.last != "." {
Text("\(message).")
.foregroundColor(themeErrorColor)
} else {
Text(message)
.foregroundColor(themeErrorColor)
}
} else {
EmptyView()
}
}
}
// MARK: Validation
extension View {
func themeValidProfileName() -> some View {
2022-04-25 13:20:19 +00:00
autocapitalization(.none)
.disableAutocorrection(true)
}
func themeValidURL(_ urlString: String?) -> some View {
2022-04-12 13:09:14 +00:00
themeValidating(urlString, validator: Validators.url)
.keyboardType(.asciiCapable)
.autocapitalization(.none)
.disableAutocorrection(true)
}
func themeValidIPAddress(_ ipAddress: String?) -> some View {
2022-04-12 13:09:14 +00:00
themeValidating(ipAddress, validator: Validators.ipAddress)
.keyboardType(.numbersAndPunctuation)
.autocapitalization(.none)
.disableAutocorrection(true)
}
func themeValidSocketPort() -> some View {
2022-04-12 13:09:14 +00:00
keyboardType(.numberPad)
}
func themeValidDomainName(_ domainName: String?) -> some View {
2022-04-12 13:09:14 +00:00
themeValidating(domainName, validator: Validators.domainName)
.keyboardType(.asciiCapable)
.autocapitalization(.none)
.disableAutocorrection(true)
}
func themeValidDNSOverTLSServerName(_ string: String?) -> some View {
themeValidating(string, validator: Validators.dnsOverTLSServerName)
.keyboardType(.asciiCapable)
.autocapitalization(.none)
.disableAutocorrection(true)
}
func themeValidSSID(_ text: String?) -> some View {
2022-04-12 13:09:14 +00:00
themeValidating(text, validator: Validators.notEmpty)
.keyboardType(.asciiCapable)
.autocapitalization(.none)
.disableAutocorrection(true)
}
private func themeValidating(_ string: String?, validator: (String) throws -> Void) -> some View {
foregroundColor(themeColor(string, validator: validator))
}
}
// MARK: Hacks
extension View {
// @available(*, deprecated, message: "mitigates multiline text truncation (1.0 does not work though)")
func xxxThemeTruncation() -> some View {
minimumScaleFactor(0.5)
}
}