mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-23 13:11:19 +00:00
* feat(ios): unify navigation on a black overlay sidebar and drop the phone tab bar * test(ios): rework navigation tests and snapshot UITests for the sidebar shell * chore(i18n): sync derived native catalogs for sidebar strings * feat(ios): reveal the sidebar beneath a push-away rounded content card * feat(ios): web-parity sidebar — agent switcher, pinned pages, sessions vocabulary, uniform content card * chore(i18n): translate sidebar and session strings across native catalogs * fix(ios): sidebar footer shows connection dot only when degraded, like the web * feat(ios): sidebar toggle top-left with edge-swipe open; card surface owns the drawer chrome * fix(ios): single sidebar refresh owner, alias-aware Home badges, RM tap-close, user pin order, drop vestigial idiom shims * feat(ios): align sidebar with the mobile prototype — agent roster, theme-following palette, web session subtitles, row badges * chore(i18n): translate agent roster and Recent strings across native catalogs * feat(ios): frosted-glass agent picker with uniform drawer insets * fix(ios): address sidebar review findings — settings toggle edge, per-agent scoping, alias-aware selection, cron paging, refresh cadence * fix(ios): clear landing CI blockers
97 lines
3.5 KiB
Swift
97 lines
3.5 KiB
Swift
import SwiftUI
|
|
|
|
struct IPadSidebarScreenChrome<Content: View>: View {
|
|
@Environment(\.verticalSizeClass) private var verticalSizeClass
|
|
let title: String
|
|
let subtitle: String
|
|
let headerSidebarAction: OpenClawSidebarHeaderAction?
|
|
let usesNativeNavigationChrome: Bool
|
|
let gatewayAction: (() -> Void)?
|
|
@ViewBuilder var content: Content
|
|
|
|
init(
|
|
title: String,
|
|
subtitle: String,
|
|
headerSidebarAction: OpenClawSidebarHeaderAction? = nil,
|
|
usesNativeNavigationChrome: Bool = false,
|
|
gatewayAction: (() -> Void)? = nil,
|
|
@ViewBuilder content: () -> Content)
|
|
{
|
|
self.title = title
|
|
self.subtitle = subtitle
|
|
self.headerSidebarAction = headerSidebarAction
|
|
self.usesNativeNavigationChrome = usesNativeNavigationChrome
|
|
self.gatewayAction = gatewayAction
|
|
self.content = content()
|
|
}
|
|
|
|
var body: some View {
|
|
ZStack {
|
|
OpenClawProBackground()
|
|
ScrollView {
|
|
VStack(alignment: .leading, spacing: self.isCompactHeight ? 10 : 16) {
|
|
if !self.usesNativeNavigationChrome {
|
|
OpenClawAdaptiveHeaderRow(
|
|
title: .localized(self.title),
|
|
subtitle: .localized(self.subtitle),
|
|
titleFont: self.isCompactHeight ? OpenClawType.headline : OpenClawType.title2SemiBold,
|
|
subtitleLineLimit: self.isCompactHeight ? 1 : 2)
|
|
{
|
|
if let headerSidebarAction {
|
|
OpenClawSidebarHeaderLeadingSlot(action: headerSidebarAction)
|
|
}
|
|
} accessory: {
|
|
self.gatewayPill
|
|
}
|
|
.padding(.horizontal, OpenClawProMetric.pagePadding)
|
|
}
|
|
self.content
|
|
}
|
|
.padding(.vertical, self.isCompactHeight ? 10 : 18)
|
|
.font(OpenClawType.body)
|
|
}
|
|
.safeAreaPadding(.bottom, self.bottomScrollInset)
|
|
}
|
|
.navigationTitle(self.title)
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbar(self.usesNativeNavigationChrome ? .visible : .hidden, for: .navigationBar)
|
|
.toolbar {
|
|
if self.usesNativeNavigationChrome, let gatewayAction {
|
|
ToolbarItem(placement: .topBarTrailing) {
|
|
Button(action: gatewayAction) {
|
|
Image(systemName: "antenna.radiowaves.left.and.right")
|
|
}
|
|
.accessibilityLabel("Gateway settings")
|
|
}
|
|
}
|
|
if self.usesNativeNavigationChrome, let headerSidebarAction {
|
|
ToolbarItem(placement: .topBarLeading) {
|
|
OpenClawSidebarRevealButton(action: headerSidebarAction)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private var isCompactHeight: Bool {
|
|
self.verticalSizeClass == .compact
|
|
}
|
|
|
|
@ViewBuilder
|
|
private var gatewayPill: some View {
|
|
if let gatewayAction {
|
|
Button(action: gatewayAction) {
|
|
OpenClawGatewayCompactPill()
|
|
}
|
|
.buttonBorderShape(.capsule)
|
|
.openClawGlassButton()
|
|
.accessibilityHint("Opens Settings / Gateway")
|
|
} else {
|
|
OpenClawGatewayCompactPill()
|
|
}
|
|
}
|
|
|
|
private var bottomScrollInset: CGFloat {
|
|
self.isCompactHeight ? 150 : OpenClawProMetric.bottomScrollInset
|
|
}
|
|
}
|