-
Notifications
You must be signed in to change notification settings - Fork 0
Collab frontend #14
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
Collab frontend #14
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.
Just a small minor bug in the editor where changing langauge does not actually change the syntax highlighting and suggestion.
For now it is ok but in future we should make it such that each language has its own state so that when change language it will disappear and reappear after they change it back.
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.
lgtm
The merge-base changed after approval.
scroll till the last line
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.
LGTM! Collab page looks clean and easy to use. However, is it possible to include a short description for future PRs so it is easier for reviewers to identify the areas to look out for? @LemonDrew
Verified that scroll bar has been disabled when code does not exceed current screen height
Verified that language selector works as intended with correct syntax highlighting
Verified that collab page is only accessible by authenticated users
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.
lgtm! looks and works as expected, code looks p clean as well, nice job
Agree with @CJianzhi 's comment on PR descriptions
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.
LGTM
- Text Editor is now working, with highlighting, and scrolling enabled
- Able to key into chat box, overflow spills right
import { ChevronRightIcon } from "lucide-react"; | ||
|
||
export default function ChatComponent() { | ||
const chatMessages = ["HELLO", "HOW ARE YOU?"]; |
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.
Noticed that there is some boiler plate chat messages here. Do you intend to render them for this PR, as its currently not rendered?
No description provided.