2023-12-16 19:58:54 +00:00
|
|
|
//
|
2024-09-23 13:02:26 +00:00
|
|
|
// NameSection.swift
|
2023-12-16 19:58:54 +00:00
|
|
|
// Passepartout
|
|
|
|
//
|
2024-09-23 13:02:26 +00:00
|
|
|
// Created by Davide De Rosa on 9/15/24.
|
2024-01-14 13:34:21 +00:00
|
|
|
// Copyright (c) 2024 Davide De Rosa. All rights reserved.
|
2023-12-16 19:58:54 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2024-11-27 14:30:15 +00:00
|
|
|
public struct NameSection: View {
|
2024-09-23 13:02:26 +00:00
|
|
|
|
|
|
|
@Binding
|
2024-11-27 14:30:15 +00:00
|
|
|
private var name: String
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-27 14:30:15 +00:00
|
|
|
private let placeholder: String
|
2023-12-16 19:58:54 +00:00
|
|
|
|
2024-11-27 14:30:15 +00:00
|
|
|
private let footer: String?
|
|
|
|
|
|
|
|
public init(name: Binding<String>, placeholder: String, footer: String? = nil) {
|
|
|
|
_name = name
|
|
|
|
self.placeholder = placeholder
|
|
|
|
self.footer = footer
|
|
|
|
}
|
|
|
|
|
|
|
|
public var body: some View {
|
2024-09-23 13:02:26 +00:00
|
|
|
debugChanges()
|
2024-10-03 21:31:44 +00:00
|
|
|
return Group {
|
2024-11-23 19:31:22 +00:00
|
|
|
ThemeTextField(Strings.Global.Nouns.name, text: $name, placeholder: placeholder)
|
2024-09-23 13:02:26 +00:00
|
|
|
.labelsHidden()
|
|
|
|
.themeManualInput()
|
2024-11-27 14:30:15 +00:00
|
|
|
|
|
|
|
#if os(macOS)
|
|
|
|
footer.map {
|
|
|
|
Text($0)
|
|
|
|
.themeFooter()
|
|
|
|
}
|
|
|
|
#endif
|
2023-12-16 19:58:54 +00:00
|
|
|
}
|
2024-11-27 14:30:15 +00:00
|
|
|
.themeSection(header: Strings.Global.Nouns.name, footer: footer)
|
2023-12-16 19:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-13 11:07:30 +00:00
|
|
|
// MARK: - Previews
|
|
|
|
|
2023-12-16 19:58:54 +00:00
|
|
|
#Preview {
|
2024-11-13 11:07:30 +00:00
|
|
|
struct ContentView: View {
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-13 11:07:30 +00:00
|
|
|
@State
|
|
|
|
private var name = ""
|
2024-09-23 13:02:26 +00:00
|
|
|
|
2024-11-13 11:07:30 +00:00
|
|
|
var body: some View {
|
|
|
|
Form {
|
|
|
|
NameSection(
|
|
|
|
name: $name,
|
|
|
|
placeholder: "My name"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
.themeForm()
|
|
|
|
}
|
2024-09-23 13:02:26 +00:00
|
|
|
}
|
2024-11-13 11:07:30 +00:00
|
|
|
|
|
|
|
return ContentView()
|
|
|
|
.withMockEnvironment()
|
2023-12-16 19:58:54 +00:00
|
|
|
}
|