feat: Add dedicated Meeting Details page with transcript and AI insights#87
Conversation
|
@mrunmayeekokitkar is attempting to deploy a commit to the Shiv Raj Singh's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
Warning Review limit reached
Next review available in: 6 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (11)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
@mrunmayeekokitkar Thank you so much for another excellent contribution to MeetOnMemory! 🚀 I really appreciate the effort and dedication you put into implementing the Meeting Details page. Your responsiveness to the review feedback and willingness to resolve the CI issues, merge conflicts, and other blockers made the review process much smoother. I'm happy to have merged your PR! 🎉 Thank you for your continued contributions to the project. If you found MeetOnMemory helpful, please consider ⭐ starring the repository. I look forward to seeing your future contributions. Happy coding! 💙 |
Pull Request
Description
Implements a dedicated Meeting Details page that provides a comprehensive view of meeting information, including AI-generated insights, transcripts, participants, metadata, and management actions. This update introduces reusable detail components, backend support for fetching and updating individual meetings, and integrates the new page into the application's routing while preserving existing functionality.
Type of Change
Related Issue
Closes #73
Changes
Meeting Details Page
MeetingDetailspage component for displaying complete meeting information./meeting/:id.Components Created
Created the following reusable components under
meeting-details:MeetingHeaderMeetingSummaryMeetingTranscriptMeetingParticipantsMeetingMetadataMeetingActionsMeetingHeader
Displays:
MeetingSummary
MeetingTranscript
MeetingParticipants
Displays participant information including:
MeetingMetadata
Displays meeting metadata including:
MeetingActions
Provides quick actions for:
Backend Changes
Controllers
Added:
getMeetingByIdcontroller for retrieving individual meeting details.updateMeetingcontroller for renaming meetings.Routes
Added backend endpoints:
GET /api/meetings/:id– Retrieve meeting details.PATCH /api/meetings/:id– Rename/update meeting.Routing
/meeting/:idroute toApp.jsx.ProtectedRoute.Dependencies
Installed:
date-fnsfor consistent and reliable date formatting.Features Implemented
Implementation Summary
Backend
getMeetingByIdcontroller inmeetingController.js.updateMeetingcontroller for meeting renaming.GET /api/meetings/:idPATCH /api/meetings/:idroutes in
meetingRoutes.js.Frontend
Created:
MeetingDetails.jsx– Main page integrating all detail components.MeetingHeader.jsxMeetingSummary.jsxMeetingTranscript.jsxMeetingParticipants.jsxMeetingMetadata.jsxMeetingActions.jsxNavigation
/meeting/:idroute inApp.jsx.Testing
Verification
/meeting/:id.Meeting-Details-Pagebranch.Screenshots
N/A
Checklist