Skip to content

Commit 31d97eb

Browse files
frontend design done
1 parent 043cf5b commit 31d97eb

File tree

9 files changed

+135
-6
lines changed

9 files changed

+135
-6
lines changed

frontend/src/Components/Sidebar/Logout.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default function Logout() {
55
return (
66
<div className="mt-auto ">
77
<button>
8-
<BiLogOut className="h-6 w-6 text-white cursor-pointer" />
8+
<BiLogOut className="h-7 w-7 text-white cursor-pointer" />
99
</button>
1010
</div>
1111
);

frontend/src/Components/Sidebar.jsx frontend/src/Components/Sidebar/Sidebar.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
2-
import SearchInput from "./Sidebar/SearchInput";
3-
import Conversations from "./Sidebar/Conversations";
4-
import Logout from "./Sidebar/Logout";
2+
import SearchInput from "./SearchInput";
3+
import Conversations from "./Conversations";
4+
import Logout from "./Logout";
55

66
export default function Sidebar() {
77
return (
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import React from "react";
2+
3+
export default function message() {
4+
return (
5+
<div className="chat chat-start">
6+
<div className="chat-image avatar">
7+
<div className="w-10 rounded-full">
8+
<img
9+
alt="Tailwind CSS chat bubble component"
10+
src="https://img.daisyui.com/images/stock/photo-1534528741775-53994a69daeb.webp"
11+
/>
12+
</div>
13+
</div>
14+
<div className="chat-header">
15+
Obi-Wan Kenobi
16+
<time className="text-xs opacity-50">12:45</time>
17+
</div>
18+
<div className="chat-bubble">You were the Chosen One!</div>
19+
<div className="chat-footer opacity-50">Delivered</div>
20+
</div>
21+
);
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import React from "react";
2+
import MessageHeader from "./MessageHeader";
3+
import Messages from "./Messages";
4+
import MessageInput from "./MessageInput";
5+
import { IoIosSend, IoMdChatbubbles } from "react-icons/io";
6+
7+
export default function MessageContainer() {
8+
let NoChat = true;
9+
return (
10+
<div className="md:min-w-[450px] flex flex-col m:h-[450px] md:h-[600px]">
11+
{NoChat ? (
12+
<EmptyContiner />
13+
) : (
14+
<>
15+
<MessageHeader />
16+
<Messages />
17+
<MessageInput />
18+
</>
19+
)}
20+
</div>
21+
);
22+
}
23+
24+
const EmptyContiner = () => {
25+
return (
26+
<div className="flex items-center justify-center w-full h-full">
27+
<div className="px-4 text-center sm:text-lg md:text-xl text-gray-200 font-semibold flex flex-col items-center gap-2">
28+
<p>Welcome 👋 John Doe ❄</p>
29+
<p>Select a chat to start messaging</p>
30+
<IoIosSend className="text-3xl md:text-6xl text-center" />
31+
</div>
32+
</div>
33+
);
34+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from "react";
2+
3+
export default function MessageHeader() {
4+
return (
5+
<div className="bg-slate-500 px-4 py-2 mb-2">
6+
<span className="label-text">To:</span>
7+
<span className="text-gray-900 font-bold">John Doe</span>
8+
</div>
9+
);
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import React from "react";
2+
import { IoIosSend } from "react-icons/io";
3+
4+
export default function MessageInput() {
5+
return (
6+
<div className="">
7+
<form action="" method="post" className="flex m-1">
8+
<input
9+
type="text"
10+
placeholder="Enter your message"
11+
className="input input-bordered input-primary flex-1"
12+
/>
13+
<button className="btn btn-primary rounded px-2 ml-1">
14+
<IoIosSend className="h-8 w-8" />
15+
</button>
16+
</form>
17+
</div>
18+
);
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import React from "react";
2+
import Message from "./Message";
3+
4+
export default function Messages() {
5+
return (
6+
<div className="flex flex-col flex-1 overflow-auto">
7+
<Message></Message>
8+
<Message></Message>
9+
<Message></Message>
10+
<Message></Message>
11+
<Message></Message>
12+
<Message></Message>
13+
<Message></Message>
14+
<Message></Message>
15+
<Message></Message>
16+
<Message></Message>
17+
</div>
18+
);
19+
}

frontend/src/Pages/Home/Home.jsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import React from "react";
2-
import Sidebar from "../../Components/Sidebar";
2+
import Sidebar from "../../Components/Sidebar/Sidebar";
3+
import MessageContainer from "../../Components/messages/MessageContainer";
34

45
export default function Home() {
56
return (
6-
<div className="shadow-md rounded-lg bg-gray-400 bg-clip-padding backdrop-blur-xl bg-opacity-0 sm:h-[450px] md:h-[600px]">
7+
<div className="flex shadow-md rounded-lg bg-gray-400 bg-clip-padding backdrop-blur-xl bg-opacity-0 sm:h-[450px] md:h-[600px] ">
78
<Sidebar />
9+
<MessageContainer />
810
</div>
911
);
1012
}

frontend/src/index.css

+23
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,26 @@ body {
99
background-size: cover;
1010
background-position: center;
1111
}
12+
13+
/* Scrollbar styling */
14+
::-webkit-scrollbar {
15+
width: 8px;
16+
}
17+
18+
::-webkit-scrollbar-track {
19+
background: #555;
20+
}
21+
22+
::-webkit-scrollbar-thumb {
23+
background: #121212;
24+
border-radius: 5px;
25+
}
26+
27+
::-webkit-scrollbar-thumb:hover {
28+
background: #242424;
29+
}
30+
31+
* {
32+
scrollbar-width: 8px;
33+
scrollbar-color: #1f1e1e #a09e9e5b;
34+
}

0 commit comments

Comments
 (0)