Skip to content
This repository was archived by the owner on Aug 6, 2026. It is now read-only.

feat: extract and display meeting participants - #75

Closed
lucasheriques wants to merge 1 commit into
feat/live-transcriptsfrom
10-29-feat_store_meeting_participants_from_recall_sdk
Closed

feat: extract and display meeting participants#75
lucasheriques wants to merge 1 commit into
feat/live-transcriptsfrom
10-29-feat_store_meeting_participants_from_recall_sdk

Conversation

@lucasheriques

@lucasheriqueslucasheriques commented Oct 29, 2025

Copy link
Copy Markdown
Contributor

Summary

  • Extract unique participants from transcript segments when recording ends
  • Display participant count and names in RecordingView header
  • Show participants as blue badges below meeting metadata

Implementation

Client-side extraction (recordingService.ts):

  • When meeting ends, extract unique participants from all transcript segments
  • Single-pass array operation with Set deduplication (efficient even for 1000+ segments)
  • Update recording with participants list via API

UI Display (RecordingView.tsx):

  • Show participant count in header metadata ("3 participants")
  • Display participant names as blue badges
  • For active recordings: extract from current segments
  • For past recordings: use stored participants field

Notes

Builds on #74 (live transcripts) which provides the RecordingView component.

@lucasheriquesGraphite App

lucasheriques commented Oct 29, 2025

Copy link
Copy Markdown
ContributorAuthor

Sign up for freeto subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@lucasheriques