2026-04-28 Evening — Event Graph Dashboard
Event Graph Visualization (20:48 UTC)
Status: ✅ Events integrated into dashboard
Data: 8 events in Event Graph (port 8002)
What was built
- Event Graph card added to dashboard template (
index.html) /api/todayendpoint now returnseventsfield alongside calendar, weather, health- Dashboard JS renders events with:
- Day labels ("Today", "Tomorrow", or date)
- Time formatted as "3:00 PM"
- Status indicator (✓ confirmed, ? tentative, • unknown)
- Location if available
- Auto-refreshes with health card (every 30s)
Event Graph Data (8 events)
| Event | Date | Status |
|---|---|---|
| Sullivan Baseball Game | Today 4 PM | tentative |
| Sullivan Soccer Practice | Today 6 PM | confirmed |
| Sullivan Soccer Practice | Today 6 PM | confirmed |
| Family Dinner | Today 8 PM | confirmed |
| Maggie Vet Checkup | Tomorrow 2 PM | confirmed |
| Harper Piano Recital | Tomorrow 7 PM | confirmed |
| Aundrea Dentist | Wed 10 AM | confirmed |
Architecture
dashboard/router.py→_get_event_graph()calls Event Graph API on port 8002- Returns formatted events with day labels for display
- Integrated into
/api/todayresponse (already authenticated) - Dashboard renders via HTMX + JS (no separate polling endpoint needed)
To View
- Go to
https://family.hoffdesk.com - Log in (session auth)
- Dashboard shows 📊 Events card with upcoming events
- Auto-refreshes every 30 seconds
Files Modified
dashboard/templates/index.html— Event Graph card + JS rendererdashboard/router.py—_get_event_graph()+ integration into/api/todaydashboard/static/style.css— Event list styling