-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavbar.tsx
489 lines (475 loc) · 14.7 KB
/
Navbar.tsx
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
import { css } from "@emotion/css";
import ComputerIcon from "@mui/icons-material/Computer";
import DarkModeIcon from "@mui/icons-material/DarkMode";
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
import FacebookIcon from "@mui/icons-material/Facebook";
import ForumIcon from "@mui/icons-material/Forum";
import GitHubIcon from "@mui/icons-material/GitHub";
import LightModeIcon from "@mui/icons-material/LightMode";
import MenuIcon from "@mui/icons-material/Menu";
import ThumbUpIcon from "@mui/icons-material/ThumbUp";
import TwitterIcon from "@mui/icons-material/Twitter";
import Box from "@mui/material/Box";
import Button from "@mui/material/Button";
import Collapse from "@mui/material/Collapse";
import Container from "@mui/material/Container";
import Drawer from "@mui/material/Drawer";
import Grid from "@mui/material/Grid";
import IconButton from "@mui/material/IconButton";
import Select from "@mui/material/Select";
import Paper from "@mui/material/Paper";
import Popover from "@mui/material/Popover";
import { Breakpoint, useTheme } from "@mui/material/styles";
import Tooltip from "@mui/material/Tooltip";
import Typography from "@mui/material/Typography";
import useMediaQuery from "@mui/material/useMediaQuery";
import React, { useContext, useState } from "react";
import { useLocation } from "react-router-dom";
import { ReactRouterLink } from "./components/ReactRouterLink/ReactRouterLink";
import { SettingsContext } from "./contexts/SettingsContext";
import { useTranslate } from "./hooks/useTranslate/useTranslate";
import {
IPossibleLanguages,
PossibleLanguagesNames,
} from "./services/internationalization/InternationalizationService";
export function Navbar() {
const theme = useTheme();
const location = useLocation();
const settingsManager = useContext(SettingsContext);
const [menuOpen, setMenuOpen] = useState(false);
const shouldRenderMobileMenu = useMediaQuery(theme.breakpoints.down("md"));
const { t, i18n, currentLanguage } = useTranslate();
const maxWidth: Breakpoint | undefined = location.pathname.includes("/srds")
? "xl"
: undefined;
return (
<Box
displayPrint="none"
className={css({
width: "100%",
background: theme.palette.primary.main,
color: "#fff",
height: "6rem",
boxShadow: theme.shadows[4],
})}
>
<Container maxWidth={maxWidth} className={css({ height: "6rem" })}>
<Grid
container
spacing={2}
alignItems="center"
justifyContent="space-between"
wrap="nowrap"
className={css({
height: "100%",
})}
>
<Grid item container spacing={1} alignItems="center">
<Grid item>
<ReactRouterLink
to="/"
className={css({ color: "inherit", textDecoration: "none" })}
>
<Button color="inherit">
<Grid container spacing={1} wrap="nowrap" alignItems="center">
<Grid item>
<img
src="/images/logo.png"
title="Singularity"
className={css({
height: "3rem",
})}
/>
</Grid>
<Grid item>
<Typography
noWrap
className={css({
fontWeight: theme.typography.fontWeightBold,
})}
>
Singularity{" "}
<Typography
component="span"
className={css({
fontWeight: theme.typography.fontWeightRegular,
})}
>
home
</Typography>
</Typography>
</Grid>
</Grid>
</Button>
</ReactRouterLink>
</Grid>
{shouldRenderMobileMenu
? renderMobileDrawer()
: renderMenuGridItems()}
{shouldRenderMobileMenu && (
<Grid item>
<IconButton
color="inherit"
className={css({ padding: "0" })}
onClick={() => {
setMenuOpen(true);
}}
size="large"
>
<MenuIcon />
</IconButton>
</Grid>
)}
</Grid>
{!shouldRenderMobileMenu && (
<Grid item >
<Box>
<Select
fullWidth
native
value={currentLanguage}
onChange={(e) => {
const newLanguage = e.target.value as string;
i18n.changeLanguage(newLanguage);
}}
variant="standard"
>
{Object.keys(PossibleLanguagesNames).map((languageKey) => {;
return (
<option key={languageKey} value={languageKey}>
{
PossibleLanguagesNames[
languageKey as IPossibleLanguages
]
}
</option>
);
})}
</Select>
</Box>
</Grid>
)}
{!shouldRenderMobileMenu && (
<Grid item>
<Tooltip title="Use Theme from System Preferences">
<IconButton
className={css({ color: "inherit" })}
onClick={() => {
settingsManager.actions.setThemeMode(undefined);
}}
>
<>
<ComputerIcon />
</>
</IconButton>
</Tooltip>
</Grid>
)}
<Grid item>
<Tooltip
title={
settingsManager.state.themeMode === "dark"
? "Light Mode"
: "Dark Mode"
}
>
<IconButton
className={css({ color: "inherit" })}
onClick={() => {
const newThemeMode =
settingsManager.state.themeMode === "dark"
? "light"
: "dark";
settingsManager.actions.setThemeMode(newThemeMode);
}}
>
<>
{settingsManager.state.themeMode === "dark" ? (
<LightModeIcon />
) : (
<DarkModeIcon />
)}
</>
</IconButton>
</Tooltip>
</Grid>
</Grid>
</Container>
</Box>
);
function renderMobileDrawer() {
return (
<Drawer
anchor="bottom"
classes={{
paper: css({
maxHeight: "80vh",
}),
}}
open={menuOpen}
onClose={() => {
setMenuOpen(false);
}}
>
<Box
p="1.5rem"
color={theme.palette.getContrastText(theme.palette.primary.main)}
bgcolor={theme.palette.primary.main}
>
{renderMenuGridItems()}
</Box>
</Drawer>
);
}
function renderMenuGridItems() {
return (
<>
<Grid item>
<NavLink
onClick={() => {
setMenuOpen(false);
}}
target="_blank"
to={{ pathname: "https://singularity-app.netlify.app/" }}
>
Singularity App
</NavLink>
</Grid>
<Grid item>
<NavLinkCategory
label={"Fari RPGs"}
onAnyLinkClick={() => {
setMenuOpen(false);
}}
subNav={[
{
label: "Fari RPGs",
links: [
{
to: { pathname: "https://farirpgs.com/discord" },
label: "Join the Discord Server",
icon: <ForumIcon />,
target: "_blank",
},
{
to: { pathname: "https://farirpgs.com/facebook" },
label: "Like on Facebook",
icon: <FacebookIcon />,
target: "_blank",
},
{
to: { pathname: "https://farirpgs.com/twitter" },
label: "Follow on Twitter",
icon: <TwitterIcon />,
target: "_blank",
},
{
to: {
pathname: "https://farirpgs.com/patreon",
},
label: "Become a Patron",
icon: <ThumbUpIcon />,
target: "_blank",
},
{
to: {
pathname: "https://github.com/fariapp/fari-games",
},
label: "Contribute on GitHub",
icon: <GitHubIcon />,
target: "_blank",
},
],
},
]}
/>
</Grid>
</>
);
}
}
function NavLink(props: {
to: string | { pathname: string };
target?: "_blank";
onClick?: () => void;
children: React.ReactNode;
}) {
const theme = useTheme();
return (
<Button
color="inherit"
component={ReactRouterLink}
to={props.to}
onClick={props.onClick}
target={props.target}
className={css({
"&:hover": {
background: theme.palette.primary.light,
},
})}
>
{props.children}
</Button>
);
}
function NavLinkCategory(props: {
label: JSX.Element | string;
subNav: Array<{
label: JSX.Element | string;
links: Array<{
label: JSX.Element | string;
to: string | { pathname: string };
target?: "_blank";
tooltip?: string;
icon?: JSX.Element;
}>;
}>;
onAnyLinkClick?: () => void;
children?: JSX.Element;
}) {
const theme = useTheme();
const shouldRenderMobileMenu = useMediaQuery(theme.breakpoints.down("md"));
const [anchorEl, setAnchorEl] = useState<HTMLButtonElement | null>(null);
const open = Boolean(anchorEl);
function handleOpenSubNav(event: React.MouseEvent<HTMLButtonElement>) {
if (!open) {
setAnchorEl(event.currentTarget);
} else {
handleCloseSubNav();
}
}
function handleCloseSubNav() {
setAnchorEl(null);
}
return (
<>
<div>
<Button
onClick={handleOpenSubNav}
color="inherit"
className={css({
"&:hover": {
background: theme.palette.primary.light,
},
})}
endIcon={<ExpandMoreIcon />}
>
{props.label}
</Button>
</div>
{shouldRenderMobileMenu ? (
<Collapse in={open}>
<Box mt=".5rem">
<Paper elevation={2}>
<Box p="1rem">
<Box>{renderSubNav()}</Box>
</Box>
</Paper>
</Box>
</Collapse>
) : (
<Popover
open={open}
onClose={handleCloseSubNav}
anchorEl={anchorEl}
TransitionProps={{ timeout: theme.transitions.duration.shortest }}
className={css({
marginTop: "1rem",
})}
anchorOrigin={{
vertical: "bottom",
horizontal: "left",
}}
transformOrigin={{
vertical: "top",
horizontal: "left",
}}
>
<Box px="1.5rem" py=".5rem" minWidth="200px">
<Box>
<Box>{renderSubNav()}</Box>
</Box>
</Box>
</Popover>
)}
</>
);
function renderSubNav() {
return (
<>
{props.subNav?.map((category, categoryIndex) => {
return (
<Box key={categoryIndex} mt=".5rem" mb="1.5rem">
<Box display="flex">
<Typography
fontWeight="bold"
color="textSecondary"
className={css({
fontSize: ".8rem",
textTransform: "uppercase",
})}
variant="caption"
>
{category.label}
</Typography>
</Box>
{category.links.map((link, linkIndex) => {
return (
<Box key={linkIndex} my=".5rem">
<Grid
container
wrap="nowrap"
spacing={1}
alignItems="center"
>
{link.icon && (
<Grid item>
<Box
display="flex"
className={css({
"& *": {
color: theme.palette.secondary.main,
},
})}
>
{link.icon}
</Box>
</Grid>
)}
<Grid item>
<Tooltip title={link.tooltip ?? ""}>
<div
className={css({
textAlign: "left",
})}
>
<ReactRouterLink
to={link.to}
target={link.target}
onClick={props.onAnyLinkClick}
className={css({
color: theme.palette.secondary.main,
fontWeight: theme.typography.fontWeightBold,
fontSize: "1rem",
textDecoration: "none",
"&:hover": {
textDecoration: "underline",
},
})}
>
{link.label}
</ReactRouterLink>
</div>
</Tooltip>
</Grid>
</Grid>
</Box>
);
})}
</Box>
);
})}
</>
);
}
}