Messaging inside Referral#209
Open
Aditya8369 wants to merge 2 commits into
Open
Conversation
|
@Aditya8369 is attempting to deploy a commit to the omkarhole's projects Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implemented referral Q&A messaging. The backend now has a dedicated ReferralMessage model and participant-gated endpoints for posting and fetching messages on a referral, with optional Socket.IO emits wired through server.js and referral.controller.js. The route additions are in referral.routes.js, and the model is exported from Index.js.
The referral detail page now includes a message panel with conversation history, a composer, and recipient selection for the poster when there are multiple applicants in ReferralDetail.jsx. Applicants can message the poster directly; the poster can reply to a specific applicant from the dropdown. I validated the edited files with
get_errorsand a module-load check, and both passed.One note: the backend is live-ready for Socket.IO message events, but the app root is not currently mounting
SocketProvider, so the UI uses HTTP refreshes rather than live push updates. If you want, I can wire the existing socket context into the app and subscribe the referral panel to live message events next.closes #202