feat: iOS Gruppenansicht direkt im Kalender (Umschalter + Banner)

Gruppen sind nicht mehr nur im Menü versteckt: im Top-Bar gibt es einen
Gruppen-Umschalter (Persönlich / <Gruppe>). Beim Wählen einer Gruppe zeigt
der echte Monats-/Wochen-/Tagesansicht die kombinierte Überlagerung
(GET /groups/{id}/combined) mit server-definierten Farben und
Besitzer-Präfix; ein Banner "Gruppenansicht: <Name>" mit "Verlassen".
CalendarStore.activeGroup steuert den Modus.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Scarriffle
2026-05-31 20:55:28 +02:00
parent c9803d80a3
commit 6dc8724a9a
3 changed files with 86 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ struct CalendarHostView: View {
@State private var visibleMonth: Date = .now
@State private var showFilter = false
@State private var didApplyDefaultView = false
@State private var groups: [CalGroup] = []
private var titleString: String {
if store.viewType == .month {
@@ -67,6 +68,7 @@ struct CalendarHostView: View {
private var flatVariant: some View {
VStack(spacing: 0) {
topBar
groupBanner
Divider()
errorBanner
calendarContent
@@ -127,6 +129,7 @@ struct CalendarHostView: View {
}
ToolbarItem(placement: .navigationBarTrailing) {
HStack(spacing: 8) {
groupMenu
viewPickerMenu
Button { showFilter = true } label: {
Image(systemName: "line.3.horizontal.decrease.circle")
@@ -137,6 +140,7 @@ struct CalendarHostView: View {
}
}
}
.safeAreaInset(edge: .top) { groupBanner }
}
.overlay(alignment: .bottomTrailing) { glassFAB }
.modifier(calendarSheets)
@@ -182,6 +186,7 @@ struct CalendarHostView: View {
.lineLimit(1)
.minimumScaleFactor(0.7)
Spacer(minLength: 8)
groupMenu
viewPickerMenu
filterButton
Button { showMenu = true } label: {
@@ -205,6 +210,48 @@ struct CalendarHostView: View {
.accessibilityLabel(L10n.t("filter.button", appLang))
}
// Group switcher: "Persönlich" + each group. Selecting a group flips the
// calendar into the combined overlay (like the web's group view).
private var groupMenu: some View {
Menu {
Button { switchGroup(nil) } label: {
Label(L10n.t("groups.personal", appLang),
systemImage: store.activeGroup == nil ? "checkmark" : "person")
}
ForEach(groups) { g in
Button { switchGroup(g) } label: {
Label("\(g.icon ?? "👥") \(g.name)",
systemImage: store.activeGroup?.id == g.id ? "checkmark" : "person.2")
}
}
} label: {
Image(systemName: store.activeGroup == nil ? "person.2" : "person.2.fill")
.font(.system(size: 17, weight: .medium))
.foregroundStyle(store.activeGroup == nil ? .primary : Color.accentColor)
.frame(width: 40, height: 40)
}
.accessibilityLabel(L10n.t("groups.title", appLang))
}
@ViewBuilder private var groupBanner: some View {
if let g = store.activeGroup {
HStack(spacing: 8) {
Text("\(L10n.t("groups.view_label", appLang)): \(g.icon ?? "👥") \(g.name)")
.font(.subheadline).lineLimit(1)
Spacer()
Button(L10n.t("groups.exit", appLang)) { switchGroup(nil) }
.font(.callout)
}
.padding(.horizontal, 12).padding(.vertical, 7)
.background(Color.accentColor.opacity(0.18))
}
}
private func switchGroup(_ g: CalGroup?) {
store.activeGroup = g
Task { await onNavigate() }
}
private var viewPickerMenu: some View {
Menu {
ForEach(CalViewType.allCases, id: \.self) { vt in
@@ -352,6 +399,7 @@ struct CalendarHostView: View {
applyServerDrivenSettings(initial: true)
await store.loadWritableCalendars(api: api)
groups = (try? await api.getGroups()) ?? []
// 1. Load current view immediately (visible)
let (s, e) = store.rangeForCurrentView()
await store.loadEvents(api: api, start: s, end: e)