-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavbarWrapper.jsx
215 lines (200 loc) · 5.94 KB
/
NavbarWrapper.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
"use client";
import posthog from "posthog-js";
import { useMemo, Suspense, lazy } from "react";
import SignIn from "@/components/auth/SignIn";
import { getUserByEmail } from "@/src/queries";
import { useState, useEffect } from "react";
import PageSelector from "@/components/PageSelector";
import { useSession } from "next-auth/react";
import { motion } from "framer-motion";
import SearchBar from "@/components/SearchBar";
import { useMediaQuery } from "@/lib/media";
import NotesButton from "./NotesButton";
import Link from "next/link";
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/components/ui/popover";
const LoadingSkeleton = ({ isMobile = false }) => (
<Popover>
<PopoverTrigger>
<div
className={`flex h-full ${
isMobile
? "w-14 flex items-center justify-center"
: "w-40 bg-util px-2 py-1"
} rounded-md items-center`}
>
<div className="h-full spect-square bg-secondary rounded-full animate-pulse" />
{!isMobile && (
<div className="flex flex-col gap-1 px-2 w-full">
<div className="h-3 w-20 bg-secondary rounded animate-pulse" />
<div className="h-3 w-16 bg-secondary rounded animate-pulse" />
</div>
)}
</div>
</PopoverTrigger>
<PopoverContent className="text-sm bg-secondary text-text border-border flex flex-col gap-2 w-auto">
<div className="h-10 w-full bg-util rounded animate-pulse" />
<div className="h-10 w-full bg-util rounded animate-pulse" />
</PopoverContent>
</Popover>
);
const NavbarWrapper = ({ children }) => {
const isMobile = useMediaQuery("(max-width: 640px)");
const { data: session, status } = useSession();
const [email, setEmail] = useState("");
const [user, setUser] = useState(null);
const [isLoading, setIsLoading] = useState(true);
useEffect(() => {
if (session) {
setEmail(session.user.email);
}
}, [session]);
useEffect(() => {
if (email) {
getUserByEmail(email)
.then((data) => {
setUser(data[0]);
setIsLoading(false);
})
.catch(() => setIsLoading(false));
} else if (status !== "loading") {
setIsLoading(false);
}
}, [email, status]);
useEffect(() => {
if (user) {
posthog.identify(user.id, {
email: user.email,
name: user.name,
role: user.role,
});
}
}, [user]);
const memoizedNavbar = useMemo(() => {
return isMobile ? (
<MobileNavbar
session={session}
status={status}
user={user}
isLoading={isLoading}
/>
) : (
<Navbar
session={session}
status={status}
user={user}
isLoading={isLoading}
/>
);
}, [isMobile, session, status, user, isLoading]);
return (
<div
className="w-full h-full flex flex-col bg-base rounded-2xl"
style={{
height: "100%",
}}
>
{memoizedNavbar}
<main className="w-full h-full flex flex-col pb-10">{children}</main>
</div>
);
};
const ThemeSwitcher = lazy(() => import("./ThemeSwitcher"));
const Profile = lazy(() => import("@/components/auth/Profile"));
const transition = {
duration: 0.35,
ease: "easeInOut",
};
const variants = {
hidden: { y: -60 },
visible: { y: 0 },
};
function Navbar({ session, status, user, isLoading }) {
const isSmallScreen = useMediaQuery("(max-width: 640px)");
return (
<motion.nav
className="hidden sm:flex h-14 w-full bg-transparent py-2 gap-3 px-3"
variants={variants}
initial="hidden"
animate={isSmallScreen ? "hidden" : "visible"}
transition={transition}
>
<div className="w-full">
<SearchBar />
</div>
<div className="flex gap-3">
<Link
href="https://tejasbhovad.github.io/docs/"
className="w-auto px-4 h-full flex items-center justify-center bg-secondary text-text/85 font-semibold rounded-md hover:util hover:text-text/100 transition-all duration-200 ease-in-out border-[1.5px] border-border"
>
<docs>
</Link>
<Suspense fallback={<div>Loading...</div>}>
<ThemeSwitcher />
</Suspense>
{isLoading ? (
<LoadingSkeleton />
) : (
<>
{session && status === "authenticated" && (
<Suspense fallback={<div>Loading...</div>}>
<Profile
name={session.user.name}
role={user?.role}
image={session?.user?.image}
/>
</Suspense>
)}
{!session && status !== "loading" && <SignIn />}
</>
)}
</div>
</motion.nav>
);
}
function MobileNavbar({ session, status, user, isLoading }) {
const isSmallScreen = useMediaQuery("(max-width: 640px)");
return (
<motion.nav
className="flex sm:hidden h-28 w-full bg-secondary items-center px-4 gap-3 py-2 flex-col"
variants={{
hidden: { y: -60 },
visible: { y: 0 },
}}
initial="hidden"
animate={isSmallScreen ? "visible" : "hidden"}
transition={{ duration: 0.35, ease: "easeInOut" }}
>
<div className="h-1/2 w-full flex justify-between">
<div className="w-auto">
<NotesButton />
</div>
<div className="w-auto">
<PageSelector />
</div>
</div>
<div className="h-1/2 gap-1 w-full flex items-center justify-between">
<SearchBar />
{isLoading ? (
<LoadingSkeleton isMobile={true} />
) : (
<>
{session && status === "authenticated" && (
<Profile
name={session?.user.name}
role={user?.role}
image={session?.user?.image}
isMobile={true}
/>
)}
{!session && status !== "loading" && <SignIn />}
</>
)}
</div>
</motion.nav>
);
}
export default NavbarWrapper;