70 lines
2.4 KiB
Swift
70 lines
2.4 KiB
Swift
import Observation
|
|
import SwiftUI
|
|
|
|
@MainActor
|
|
struct ChatSessionsSheet: View {
|
|
@Bindable var viewModel: ClawdbotChatViewModel
|
|
@Environment(\.dismiss) private var dismiss
|
|
|
|
var body: some View {
|
|
NavigationStack {
|
|
List(self.viewModel.sessions) { session in
|
|
Button {
|
|
self.viewModel.switchSession(to: session.key)
|
|
self.dismiss()
|
|
} label: {
|
|
VStack(alignment: .leading, spacing: 4) {
|
|
Text(session.displayName ?? session.key)
|
|
.font(.system(.body, design: .monospaced))
|
|
.lineLimit(1)
|
|
if let updatedAt = session.updatedAt, updatedAt > 0 {
|
|
Text(Date(timeIntervalSince1970: updatedAt / 1000).formatted(
|
|
date: .abbreviated,
|
|
time: .shortened))
|
|
.font(.caption)
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.navigationTitle("Sessions")
|
|
.toolbar {
|
|
#if os(macOS)
|
|
ToolbarItem(placement: .automatic) {
|
|
Button {
|
|
self.viewModel.refreshSessions(limit: 200)
|
|
} label: {
|
|
Image(systemName: "arrow.clockwise")
|
|
}
|
|
}
|
|
ToolbarItem(placement: .primaryAction) {
|
|
Button {
|
|
self.dismiss()
|
|
} label: {
|
|
Image(systemName: "xmark")
|
|
}
|
|
}
|
|
#else
|
|
ToolbarItem(placement: .topBarLeading) {
|
|
Button {
|
|
self.viewModel.refreshSessions(limit: 200)
|
|
} label: {
|
|
Image(systemName: "arrow.clockwise")
|
|
}
|
|
}
|
|
ToolbarItem(placement: .topBarTrailing) {
|
|
Button {
|
|
self.dismiss()
|
|
} label: {
|
|
Image(systemName: "xmark")
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
.onAppear {
|
|
self.viewModel.refreshSessions(limit: 200)
|
|
}
|
|
}
|
|
}
|
|
}
|