feat(dashboard): add Recording Assignments section

- Extend dashboard API to include recordingSuggestions for each event
- Add toBeRecorded and toRecord arrays with heat and user details
- Export RecordingSummaryCard component
- Add Recording Assignments section to DashboardPage
- Filter and display events with recording suggestions
- Show up to 2 suggestions per event with View Details link
This commit is contained in:
Radosław Gierwiało
2025-11-30 15:14:06 +01:00
parent 6ce3111cdd
commit d8799d03af
3 changed files with 93 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
export { default as DashboardEventCard } from './DashboardEventCard';
export { default as DashboardMatchCard } from './DashboardMatchCard';
export { default as RecordingSummaryCard } from './RecordingSummaryCard';
export { IncomingRequestCard, OutgoingRequestCard } from './MatchRequestCards';