-
Notifications
You must be signed in to change notification settings - Fork 0
Develop #26
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
Conversation
Refactors and responsive in login module
Update and rename main.yml to master-CD.yml
Create develop-CD.yml
Update develop-CD.yml
Update develop-CD.yml
Update master-CD.yml
Create dashboard route and minimal view
Remove timeout
Update master-CD
add Link hrefs
Update develop-CD
Fix reload in VM
Create rooms view
testing ssh
User profile
Fix overflow and mobile styles ni room view
User profile
User profile
Improve deployment with docker images
Rename Dockerfile.dev to dockerfile.dev
fix timeout
Implementing version control in dockerhub
✅ Deploy Preview for parchat ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
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.
Pull Request Overview
This PR introduces a new "Develop" branch implementation that updates the chat and room-related user interfaces and associated backend simulations for messages. Key changes include the addition of new components for room layout, messages list, message input, and message display, updates to authentication and login pages, and enhancements to deployment workflows.
Reviewed Changes
Copilot reviewed 44 out of 47 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| app/(protected)/dashboard/room/layout.tsx | Adds the layout wrapper for room pages with an aside component. |
| app/(protected)/dashboard/room/_components/MessagesList.tsx | Implements a messages list component with auto-scrolling features. |
| app/(protected)/dashboard/room/_components/MessageInput.tsx | Adds a text area that resizes dynamically and sends messages. |
| app/(protected)/dashboard/room/_components/Message.tsx | Introduces message styling with background color based on sender. |
| app/(protected)/dashboard/room/[id]/page.tsx | Simulates fetching messages and renders the room interface. |
| app/(protected)/dashboard/room/[id]/loading.tsx | Provides a loading indicator for the room page. |
| app/(protected)/dashboard/page.tsx | Implements the dashboard view that includes room lists. |
| app/(protected)/dashboard/_components/RoomList.tsx | Lists available rooms with details and action buttons. |
| app/(nologged)/login/page.tsx | Removes the non-logged login page. |
| app/(auth)/page.tsx | Updates authenticated layout with header and footer. |
| app/(auth)/login/page.tsx | Implements a new login page with separate desktop and mobile forms. |
| app/(auth)/login/_components/MobileForm.tsx | Provides the mobile form UI for login and registration. |
| app/(auth)/login/_components/DesktopForm.tsx | Provides the desktop form UI for login and registration. |
| app/(auth)/login-gest/page.tsx | Adds an option for guest login. |
| app/(auth)/layout.tsx | Defines the layout for non-logged pages including header and footer. |
| .github/workflows/master-CD.yml | Adds the production deployment workflow. |
| .github/workflows/develop-CD.yml | Adds the develop deployment workflow. |
Files not reviewed (3)
- .dockerignore: Language not supported
- .github/workflows/main.yml: Language not supported
- Dockerfile.prod: Language not supported
| <form className="flex flex-col gap-5 w-[80%]"> | ||
| <div className="flex flex-col gap-1"> | ||
| <label htmlFor="user-register-mobile" className="font-bold"> | ||
| Tu ususuario |
Copilot
AI
Apr 22, 2025
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.
Typo in label text: 'ususuario' should be corrected to 'usuario'.
| Tu ususuario | |
| Tu usuario |
| <form className="flex flex-col gap-5 w-[80%]"> | ||
| <div className="flex flex-col gap-1"> | ||
| <label htmlFor="user-register-desktop" className="font-bold"> | ||
| Tu ususuario |
Copilot
AI
Apr 22, 2025
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.
Typo in label text: 'ususuario' should be corrected to 'usuario'.
| Tu ususuario | |
| Tu usuario |
No description provided.