Skip to content

Mybranch #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

Open
wants to merge 35 commits into
base: starter
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a056b5a
Installation
Maxeroz Jun 4, 2024
f60fd55
Database Structure
Maxeroz Jun 4, 2024
a007611
Glass BG Effect
Maxeroz Jun 4, 2024
6d79b21
Chat App Components
Maxeroz Jun 4, 2024
276943c
User Info Design
Maxeroz Jun 4, 2024
f211c18
Search Bar Design
Maxeroz Jun 5, 2024
3f94b2c
Top Chat Component
Maxeroz Jun 5, 2024
80f3f10
Chat Bottom Design
Maxeroz Jun 5, 2024
7b698df
Chat Messages Design
Maxeroz Jun 5, 2024
a888ef8
Detail Component Design
Maxeroz Jun 5, 2024
6f0302a
Auto Scroll Ref
Maxeroz Jun 5, 2024
2bc2524
Details Overflow
Maxeroz Jun 5, 2024
f3adf13
Login Page Design
Maxeroz Jun 5, 2024
dae58f4
React Toastify
Maxeroz Jun 5, 2024
d99d082
Add New User Component
Maxeroz Jun 5, 2024
17f6ddb
FireBase
Maxeroz Jun 5, 2024
08fd383
Auth React Form
Maxeroz Jun 5, 2024
41f171c
Add User Data after Auth
Maxeroz Jun 5, 2024
6ae13e3
Uploading Image FireBase
Maxeroz Jun 5, 2024
9d2819f
FireBase Sign In
Maxeroz Jun 5, 2024
7fffda5
Store User After Auth
Maxeroz Jun 5, 2024
58459c1
Custom Hook for Emoji Container State Control
Maxeroz Jun 5, 2024
fe91759
Fetching Real Time Data
Maxeroz Jun 6, 2024
97b7c9e
Fetch Chats from FireStore
Maxeroz Jun 6, 2024
70ad1f3
Fixed Avatar Display
Maxeroz Jun 6, 2024
141d3cb
Search a User from Database
Maxeroz Jun 6, 2024
fae374b
Create a new Chat
Maxeroz Jun 6, 2024
a9d1491
Zustand Chat Store
Maxeroz Jun 6, 2024
aae715a
Add a new message
Maxeroz Jun 7, 2024
6f1d016
Add Image to Chat Message
Maxeroz Jun 7, 2024
3588f2e
Block Unblock User
Maxeroz Jun 7, 2024
a038b8a
Search Filter
Maxeroz Jun 7, 2024
ac9ee04
Implementing Preview Page
Maxeroz Jun 7, 2024
55aef50
LoggIn fixes and Small Changes, adding Preview pages
Maxeroz Jun 8, 2024
8c9cc0b
Small useEffect array fixes for scrolling into View Messages
Maxeroz Jun 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_API_KEY = AIzaSyDJHK3cn5oybxsAP6TUqNgUwlo73VNbqMg
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["prettier-plugin-tailwindcss"]
}
9 changes: 6 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✉️</text></svg>"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lama Dev Chat App</title>
<title>Chat App</title>
</head>
<body>
<body class="flex h-screen items-center justify-center bg-main text-white">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
Expand Down
Loading