File tree 9 files changed +135
-6
lines changed
9 files changed +135
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export default function Logout() {
5
5
return (
6
6
< div className = "mt-auto " >
7
7
< button >
8
- < BiLogOut className = "h-6 w-6 text-white cursor-pointer" />
8
+ < BiLogOut className = "h-7 w-7 text-white cursor-pointer" />
9
9
</ button >
10
10
</ div >
11
11
) ;
Original file line number Diff line number Diff line change 1
1
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" ;
5
5
6
6
export default function Sidebar ( ) {
7
7
return (
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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 number Diff line number Diff line change
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 number Diff line number Diff line change
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 number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
- import Sidebar from "../../Components/Sidebar" ;
2
+ import Sidebar from "../../Components/Sidebar/Sidebar" ;
3
+ import MessageContainer from "../../Components/messages/MessageContainer" ;
3
4
4
5
export default function Home ( ) {
5
6
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] " >
7
8
< Sidebar />
9
+ < MessageContainer />
8
10
</ div >
9
11
) ;
10
12
}
Original file line number Diff line number Diff line change 9
9
background-size : cover;
10
10
background-position : center;
11
11
}
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
+ }
You can’t perform that action at this time.
0 commit comments