Add Ongoing to the Panama Daybook

This commit is contained in:
Gabriel Brown
2026-08-17 12:18:04 -04:00
parent 1ce5c732b7
commit a5450fdb6d
12 changed files with 483 additions and 47 deletions
+5 -2
View File
@@ -79,7 +79,7 @@ ShellRoot {
Overview {}
// QuickSettings is the window; QuickSettingsPanel is its content.
QuickSettings {}
DateMenu {}
DateMenu { id: dateMenu }
ClipboardPanel {}
CaptureOverlay {}
IntelligenceResult {}
@@ -268,6 +268,7 @@ ShellRoot {
function reset(): void { CalendarAgenda.clearFixture(); }
function refresh(): void { CalendarAgenda.refresh(); }
function open(): void { ShellState.openDateMenu("agenda"); }
function page(name: string): void { ShellState.openDateMenu(name); }
function close(): void { ShellState.close(); }
function select(date: string): void { CalendarAgenda.selectIsoDate(date); }
function status(): string {
@@ -281,7 +282,9 @@ ShellRoot {
selectedDate: CalendarAgenda.selectedDateKey,
selectedEventCount: CalendarAgenda.selectedEvents.length,
capsuleVisible: CalendarAgenda.capsuleVisible,
capsuleText: CalendarAgenda.capsuleText
capsuleText: CalendarAgenda.capsuleText,
ongoingCount: Ongoing.count,
ongoingFits: dateMenu.ongoingContentFits
});
}
}