Files
TUIkit/Sources/TUIkitExample/Pages/ContainersPage.swift
T
phranck d3f8ff60f3 Chore: Change license to MIT
- Add LICENSE file (MIT)
- Update 141 Swift file headers: CC BY-NC-SA 4.0 → License: MIT
2026-02-06 00:21:51 +01:00

191 lines
7.4 KiB
Swift

// 🖥️ TUIKit — Terminal UI Kit for Swift
// ContainersPage.swift
//
// Created by LAYERED.work
// License: MIT
import TUIkit
/// Static row showing Card, Box, and Panel side by side.
///
/// Purely palette-driven, no state — wrapped in `.equatable()` for
/// subtree memoization during Spinner/Pulse animation frames.
struct ContainerTypesRow: View, Equatable {
var body: some View {
HStack(spacing: 2) {
VStack(alignment: .leading) {
Text("Card").bold().foregroundColor(.palette.accent)
Card(borderColor: .palette.border) {
Text("A Card view").foregroundColor(.palette.foreground)
Text("with padding").foregroundColor(.palette.foregroundSecondary)
}
}
VStack(alignment: .leading) {
Text("Box").bold().foregroundColor(.palette.accent)
Box(color: .palette.border) {
Text("Simple Box").foregroundColor(.palette.foreground)
}
}
VStack(alignment: .leading) {
Text("Panel").bold().foregroundColor(.palette.accent)
Panel("Info", titleColor: .palette.accent) {
Text("Title in border").foregroundColor(.palette.foreground)
}
}
}
}
}
/// Static row showing a settings panel with footer and alignment examples.
///
/// Purely palette-driven, no state — wrapped in `.equatable()` for
/// subtree memoization during Spinner/Pulse animation frames.
struct SettingsAndAlignmentRow: View, Equatable {
var body: some View {
HStack(spacing: 2) {
DemoSection("Panel (Header + Footer)") {
Panel("Settings", titleColor: .palette.accent) {
Text("Primary text (foreground)").foregroundColor(.palette.foreground)
Text("Secondary text (foregroundSecondary)").foregroundColor(.palette.foregroundSecondary)
Text("Tertiary text (foregroundTertiary)").foregroundColor(.palette.foregroundTertiary)
} footer: {
Text("Footer: Press Enter to confirm").foregroundColor(.palette.foreground)
}
}
DemoSection("Content Alignment") {
HStack(spacing: 1) {
Box {
VStack(alignment: .leading) {
Text("Leading align").foregroundColor(.palette.foreground)
Text("short").foregroundColor(.palette.foregroundSecondary)
}
}
Box {
VStack(alignment: .center) {
Text("Center align").foregroundColor(.palette.foreground)
Text("short").foregroundColor(.palette.foregroundSecondary)
}
}
Box {
VStack(alignment: .trailing) {
Text("Trailing align").foregroundColor(.palette.foreground)
Text("short").foregroundColor(.palette.foregroundSecondary)
}
}
}
}
}
}
}
/// Static row showing ProgressView examples.
///
/// Purely palette-driven, no state — wrapped in `.equatable()` for
/// subtree memoization during Spinner/Pulse animation frames.
/// Static row showing ProgressView examples with all 6 styles.
struct ProgressViewRow: View, Equatable {
var body: some View {
DemoSection("ProgressView") {
VStack(spacing: 1) {
ProgressView("Downloading files...", value: 0.73)
ProgressView(value: 0.4) {
Text("Build progress").foregroundColor(.palette.foreground)
} currentValueLabel: {
Text("40%").foregroundColor(.palette.foregroundSecondary)
}
VStack(alignment: .leading, spacing: 0) {
Text("Styles:").dim()
HStack(spacing: 1) {
Text("block ").dim()
ProgressView(value: 0.6).progressBarStyle(.block)
}
HStack(spacing: 1) {
Text("blockFine").dim()
ProgressView(value: 0.6).progressBarStyle(.blockFine)
}
HStack(spacing: 1) {
Text("shade ").dim()
ProgressView(value: 0.6).progressBarStyle(.shade)
}
HStack(spacing: 1) {
Text("bar ").dim()
ProgressView(value: 0.6).progressBarStyle(.bar)
}
HStack(spacing: 1) {
Text("dot ").dim()
ProgressView(value: 0.6).progressBarStyle(.dot)
}
}
}
}
}
}
/// Container views demo page.
///
/// Shows various container views including:
/// - Card (bordered container with padding)
/// - Box (simple bordered container)
/// - Panel (container with title in border)
/// - ProgressView (horizontal progress bar)
/// - Collapsible detail section demonstrating `@State` toggle
struct ContainersPage: View {
@State var showDetails: Bool = false
var body: some View {
VStack(spacing: 1) {
ContainerTypesRow().equatable()
SettingsAndAlignmentRow().equatable()
ProgressViewRow().equatable()
DemoSection("Collapsible Detail (@State)") {
VStack(alignment: .leading) {
HStack(spacing: 2) {
Button(showDetails ? "Hide Details" : "Show Details") {
showDetails.toggle()
}
Text(showDetails ? "expanded" : "collapsed")
.dim()
}
if showDetails {
Panel("Padding Examples", titleColor: .palette.accent) {
HStack(spacing: 1) {
Box {
Text("h:1 v:0").foregroundColor(.palette.foreground)
.padding(.horizontal, 1)
}
Box {
Text("h:1 v:1").foregroundColor(.palette.foreground)
.padding(EdgeInsets(horizontal: 1, vertical: 1))
}
Box {
Text("h:1 v:2").foregroundColor(.palette.foreground)
.padding(EdgeInsets(horizontal: 1, vertical: 2))
}
}
}
}
}
}
DemoSection("Appearance & BorderStyle") {
Text("BorderStyle is determined by Appearance. Press 'a' to cycle.").foregroundColor(.palette.foregroundSecondary)
}
Spacer()
}
.appHeader {
HStack {
Text("Container Views Demo").bold().foregroundColor(.palette.accent)
Spacer()
Text("TUIkit v\(tuiKitVersion)").foregroundColor(.palette.foregroundTertiary)
}
}
}
}