frontend/src/main.ts |
Bootstraps Angular and registers HTTP interceptors. |
frontend/src/app/app.routes.ts |
Defines public, shell, child, and admin routes. |
frontend/src/app/app.component.ts |
Loads bootstrap data and restores the session. |
frontend/src/app/features/home/home.component.ts |
Authenticated shell container; starts user and event state services. |
frontend/src/app/core/services/auth.service.ts |
Signal-backed access token and current-user state; owns the cross-tab invalidation BroadcastChannel + storage-event fallback. |
frontend/src/app/core/services/auth-session-events.pure.ts |
Pure cross-tab message encoding/validation and namespaced constants used by the auth broadcast channel. |
frontend/src/app/core/services/authenticated-event-source.service.ts |
Fetch-based authenticated SSE transport with frame parsing, abort support, and a separate 'unauthorized' event for 401/403. |
frontend/src/app/core/services/event-status.store.ts |
Event state signal store, one-second countdown timer, and the optional onUnauthorized callback wiring. |
frontend/src/app/core/services/event-status.pure.ts |
Event payload types, transport interface (including 'unauthorized' listener), pure countdown helpers, and the LED_COLOR_BY_STATE map used by the shell LED. |
frontend/src/app/features/home/home.component.ts |
Authenticated shell container; starts user and event state services, subscribes to peer invalidation, and navigates to /login when the session is invalidated elsewhere. |
frontend/src/app/features/shell/header/shell-header.component.ts |
Shell title, status LED (size/shape only — color comes from the pure map via [style.background-color]), countdown, and user menu. |
frontend/src/app/features/shell/tabs/quick-tabs.component.ts |
Main shell navigation tabs. |
frontend/src/app/features/shell/change-password/change-password-modal.component.ts |
Change-password form modal. |
tests/frontend/authenticated-event-source.spec.ts |
Tests SSE authorization, frame transport behavior, and the 401/403 unauthorized path. |
tests/frontend/auth-session-events.spec.ts |
Pure tests for cross-tab invalidation message encoding, payload validation, and storage-event filtering. |