This repository was archived by the owner on Oct 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSideNav.js
More file actions
418 lines (404 loc) · 15.3 KB
/
SideNav.js
File metadata and controls
418 lines (404 loc) · 15.3 KB
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
"use client";
import Image from "next/image";
import Link from "next/link";
import { useState, Fragment, useEffect } from "react";
import { Dialog, Transition } from "@headlessui/react";
import {
ChartBarSquareIcon,
FolderIcon,
ServerIcon,
StarIcon,
XMarkIcon,
} from "@heroicons/react/24/outline";
import { Bars3Icon, MagnifyingGlassIcon } from "@heroicons/react/20/solid";
import { classNames } from "@/utils/classNames";
import Logo from "@/assets/repo-rater-logo.svg";
import GitHub from "@/assets/github-mark.svg";
import { account } from "@/config/appwrite-client";
import getUser from "@/utils/github/getUser";
const navigation = [
{ name: "GitHub Repos", href: "/", icon: FolderIcon, current: false },
{
name: "Popular Repos",
href: "/popular",
icon: ServerIcon,
current: false,
},
{
name: "User Rankings",
href: "/rankings",
icon: ChartBarSquareIcon,
current: false,
},
{
name: "Star on GitHub",
href: "https://github.com/EddieHubCommunity/RepoRater",
icon: StarIcon,
current: false,
external: true,
css: "text-yellow-400",
},
];
export default function SideNav({ setKeyword, children }) {
const [sidebarOpen, setSidebarOpen] = useState(false);
const [user, setUser] = useState(null);
const login = async () => {
account.createOAuth2Session(
"github",
`${process.env.NEXT_PUBLIC_BASE_URL}/`,
`${process.env.NEXT_PUBLIC_BASE_URL}/`,
);
};
const logout = async () => {
await account.deleteSession("current");
setUser(null);
};
const getAppwriteUser = async () => {
try {
const user = await account.getSession("current");
let githubUser = {};
if (user) {
githubUser = await getUser(user.providerAccessToken);
}
setUser(githubUser);
} catch (e) {
console.log(e);
}
};
useEffect(() => {
getAppwriteUser();
}, []);
const secure = [
{
id: 1,
name: "Add Rating",
href: "/rate",
initial: "+",
current: false,
},
// {
// id: 2,
// name: "Your Ratings",
// href: "/account/ratings",
// initial: "S",
// current: false,
// },
// {
// id: 3,
// name: "Your Repos",
// href: "/account/repos",
// initial: "R",
// current: false,
// },
{
id: 4,
name: "Logout",
href: "/",
onClick: logout,
initial: "L",
current: false,
},
];
return (
<>
<Transition.Root show={sidebarOpen} as={Fragment}>
<Dialog
as="div"
className="relative z-50 xl:hidden"
onClose={setSidebarOpen}
>
<Transition.Child
as={Fragment}
enter="transition-opacity ease-linear duration-300"
enterFrom="opacity-0"
enterTo="opacity-100"
leave="transition-opacity ease-linear duration-300"
leaveFrom="opacity-100"
leaveTo="opacity-0"
>
<div className="fixed inset-0 bg-gray-900/80" />
</Transition.Child>
<div className="fixed inset-0 flex">
<Transition.Child
as={Fragment}
enter="transition ease-in-out duration-300 transform"
enterFrom="-translate-x-full"
enterTo="translate-x-0"
leave="transition ease-in-out duration-300 transform"
leaveFrom="translate-x-0"
leaveTo="-translate-x-full"
>
<Dialog.Panel className="relative mr-16 flex w-full max-w-xs flex-1">
<Transition.Child
as={Fragment}
enter="ease-in-out duration-300"
enterFrom="opacity-0"
enterTo="opacity-100"
leave="ease-in-out duration-300"
leaveFrom="opacity-100"
leaveTo="opacity-0"
>
<div className="absolute left-full top-0 flex w-16 justify-center pt-5">
<button
type="button"
className="-m-2.5 p-2.5"
onClick={() => setSidebarOpen(false)}
>
<span className="sr-only">Close sidebar</span>
<XMarkIcon
className="h-6 w-6 text-white"
aria-hidden="true"
/>
</button>
</div>
</Transition.Child>
{/* Sidebar component, swap this element with another sidebar if you like */}
<div className="flex grow flex-col gap-y-5 overflow-y-auto bg-gray-900 px-6 ring-1 ring-white/10">
<div className="flex h-16 shrink-0 items-center">
<Image
className="h-8 w-auto"
src={Logo}
alt="GitHub RepoRater"
width={8}
height={8}
/>
</div>
<nav className="flex flex-1 flex-col">
<ul role="list" className="flex flex-1 flex-col gap-y-7">
<li>
<ul role="list" className="-mx-2 space-y-1">
{navigation.map((item) => (
<li key={item.name}>
<Link
href={item.href}
target={item.external ? "_blank" : "_self"}
className={classNames([
item.current
? "bg-gray-800 text-white"
: "text-gray-400 hover:text-white hover:bg-gray-800",
"group flex gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold",
item.css && item.css,
])}
>
<item.icon
className="h-6 w-6 shrink-0"
aria-hidden="true"
/>
{item.name}
</Link>
</li>
))}
</ul>
</li>
{user && (
<li>
<div className="text-xs font-semibold leading-6 text-gray-400">
Secure
</div>
<ul role="list" className="-mx-2 mt-2 space-y-1">
{secure.map((team) => (
<li key={team.name}>
<Link
href={team.href}
onClick={team.onClick}
className={classNames([
team.current
? "bg-gray-800 text-white"
: "text-gray-400 hover:text-white hover:bg-gray-800",
"group flex gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold cursor-pointer",
])}
>
<span className="flex h-6 w-6 shrink-0 items-center justify-center rounded-lg border border-gray-700 bg-gray-800 text-[0.625rem] font-medium text-gray-400 group-hover:text-white">
{team.initial}
</span>
<span className="truncate">{team.name}</span>
</Link>
</li>
))}
</ul>
</li>
)}
{!user && (
<li className="-mx-6 mt-auto">
<Link
href="#"
onClick={login}
className="flex items-center gap-x-4 px-6 py-3 text-sm font-semibold leading-6 text-white hover:bg-gray-800"
>
<Image
className="h-8 w-8 rounded-full"
src={GitHub}
alt="GitHub OAuth Login"
width={8}
height={8}
/>
<span>Login</span>
</Link>
</li>
)}
{user && (
<li className="-mx-6 mt-auto">
<span className="flex items-center gap-x-4 px-6 py-3 text-sm font-semibold leading-6 text-white">
<Image
className="h-8 w-8 rounded-full"
src={user.avatar_url}
alt="GitHub OAuth Login"
width={8}
height={8}
/>
<span>{user.name}</span>
</span>
</li>
)}
</ul>
</nav>
</div>
</Dialog.Panel>
</Transition.Child>
</div>
</Dialog>
</Transition.Root>
{/* Static sidebar for desktop */}
<div className="hidden xl:fixed xl:inset-y-0 xl:z-50 xl:flex xl:w-72 xl:flex-col">
{/* Sidebar component, swap this element with another sidebar if you like */}
<div className="flex grow flex-col gap-y-5 overflow-y-auto bg-black/10 px-6 ring-1 ring-white/5">
<div className="flex h-16 shrink-0 items-center">
<Image
className="h-8 w-auto"
src={Logo}
alt="GitHub RepoRater"
width={8}
height={8}
/>
</div>
<nav className="flex flex-1 flex-col">
<ul role="list" className="flex flex-1 flex-col gap-y-7">
<li>
<ul role="list" className="-mx-2 space-y-1">
{navigation.map((item) => (
<li key={item.name}>
<Link
href={item.href}
target={item.external ? "_blank" : "_self"}
className={classNames([
item.current
? "bg-gray-800 text-white"
: "text-gray-400 hover:text-white hover:bg-gray-800",
"group flex gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold",
item.css && item.css,
])}
>
<item.icon
className="h-6 w-6 shrink-0"
aria-hidden="true"
/>
{item.name}
</Link>
</li>
))}
</ul>
</li>
{user && (
<li>
<div className="text-xs font-semibold leading-6 text-gray-400">
Secure
</div>
<ul role="list" className="-mx-2 mt-2 space-y-1">
{secure.map((team) => (
<li key={team.name}>
<Link
href={team.href}
onClick={team.onClick}
className={classNames([
team.current
? "bg-gray-800 text-white"
: "text-gray-400 hover:text-white hover:bg-gray-800",
"group flex gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold cursor-pointer",
])}
>
<span className="flex h-6 w-6 shrink-0 items-center justify-center rounded-lg border border-gray-700 bg-gray-800 text-[0.625rem] font-medium text-gray-400 group-hover:text-white">
{team.initial}
</span>
<span className="truncate">{team.name}</span>
</Link>
</li>
))}
</ul>
</li>
)}
{!user && (
<li className="-mx-6 mt-auto">
<Link
href="#"
onClick={login}
className="flex items-center gap-x-4 px-6 py-3 text-sm font-semibold leading-6 text-white hover:bg-gray-800"
>
<Image
className="h-8 w-8 rounded-full"
src={GitHub}
alt="GitHub OAuth Login"
width={8}
height={8}
/>
<span>Login</span>
</Link>
</li>
)}
{user && (
<li className="-mx-6 mt-auto">
<span className="flex items-center gap-x-4 px-6 py-3 text-sm font-semibold leading-6 text-white">
<Image
className="h-8 w-8 rounded-full"
src={user.avatar_url}
alt="GitHub OAuth Login"
width={8}
height={8}
/>
<span>{user.name}</span>
</span>
</li>
)}
</ul>
</nav>
</div>
</div>
<div className="xl:pl-72">
<div className="sticky top-0 z-40 flex h-16 shrink-0 items-center gap-x-6 border-b border-white/5 bg-gray-900 px-4 shadow-sm sm:px-6 lg:px-8">
<button
type="button"
className="-m-2.5 p-2.5 text-white xl:hidden"
onClick={() => setSidebarOpen(true)}
>
<span className="sr-only">Open sidebar</span>
<Bars3Icon className="h-5 w-5" aria-hidden="true" />
</button>
<div className="flex flex-1 gap-x-4 self-stretch lg:gap-x-6">
<form className="flex flex-1" onSubmit={(e) => e.preventDefault()}>
<label htmlFor="search-field" className="sr-only">
Search
</label>
<div className="relative w-full">
<MagnifyingGlassIcon
className="pointer-events-none absolute inset-y-0 left-0 h-full w-5 text-gray-500"
aria-hidden="true"
/>
<input
id="search-field"
className="block h-full w-full border-0 bg-transparent py-0 pl-8 pr-0 text-white focus:ring-0 sm:text-sm"
placeholder="Search..."
type="search"
name="search"
onChange={(e) => {
e.preventDefault();
setKeyword(e.target.value);
}}
/>
</div>
</form>
</div>
</div>
{children}
</div>
</>
);
}