-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue #20: Connect API to the frontend of the application #29
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for submitting the PR, it looks very promising. However, this PR is failing the DCO check. Please sign your commits to resolve this issue.
7ae98bc
to
6c25d9e
Compare
{chatSelected ? <WelcomeSection /> : <ChatSection />} | ||
</div> | ||
<ChatBottomBar /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The BottomBar
enables two interactions here:
- Use the chat context to reply to messages.
- If no chat is selected then start a new chat.
So if you refactor it to the chat section then please note that you will need to add another ChatBottomBar
to the welcome section that starts a new chat if that is the design you are going for.
Signed-off-by: xtzhang1122 <[email protected]>
Signed-off-by: xtzhang1122 <[email protected]>
Signed-off-by: xtzhang1122 <[email protected]>
Signed-off-by: xtzhang1122 <[email protected]>
Signed-off-by: xtzhang1122 <[email protected]>
Signed-off-by: xtzhang1122 <[email protected]>
Description
This PR addresses Issue #20 . Users can now interact directly with the frontend, receiving their typed messages in the chatbox.
Due to hardware limitations, testing the connection between the frontend and backend hasn't been performed. The relevant code is written but currently commented out.
Current Progress
The image below demonstrates the current progress
