-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeader.js
292 lines (279 loc) · 6.86 KB
/
Header.js
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
import { useEffect, useState } from "react";
import { NavLink as RouteLink } from "react-router-dom";
import { useAuth0 } from "@auth0/auth0-react";
import {
Box,
Flex,
Text,
IconButton,
Button,
Stack,
Collapse,
Icon,
Link,
Popover,
PopoverTrigger,
PopoverContent,
useColorModeValue,
useDisclosure,
PopoverArrow,
PopoverCloseButton,
PopoverBody,
} from "@chakra-ui/react";
import { HamburgerIcon, CloseIcon, ChevronRightIcon } from "@chakra-ui/icons";
import { BsCart3 } from "react-icons/bs";
import Logo from "./Logo";
import Cart from "./customer/Cart";
export const CUSTOMER_LINKS = [
{
label: "Home",
href: "/",
},
{
label: "Contact Us",
href: "/contact",
},
{
label: "Reviews",
href: "/reviews",
},
];
export const ADMIN_LINKS = [
{
label: "Home",
href: "/admin",
},
{
label: "Menu",
href: "/admin/menu",
},
{
label: "Messages",
href: "/admin/messages",
},
];
export default function Header({
links,
isAdminPage,
cartItems = [],
addToCart = () => {},
}) {
const { isOpen, onToggle } = useDisclosure();
const { isAuthenticated, buildLogoutUrl, buildAuthorizeUrl } = useAuth0();
const [authUrl, setAuthUrl] = useState("");
useEffect(() => {
(async () => {
setAuthUrl(
await (isAuthenticated
? buildLogoutUrl({
returnTo: `${window.location.origin}/admin`,
}) // this not to be waited
: buildAuthorizeUrl({
// this returns a promise
audience: process.env.REACT_APP_AUDIENCE,
}))
);
})();
}, [isAuthenticated, buildLogoutUrl, buildAuthorizeUrl]); // when isAuthenticated changes logIn changes to logOut viseversa
const itemCount = cartItems.reduce((acc, item) => {
return acc + Number(item.quantity);
}, 0);
const cartIcon = !isAdminPage ? (
<Popover>
<PopoverTrigger>
<Button variant="ghost">
<BsCart3 />
{itemCount > 0 ? (
<Text as="sup" color="red">
{itemCount}
</Text>
) : null}
</Button>
</PopoverTrigger>
<PopoverContent>
<PopoverArrow />
<PopoverCloseButton />
<PopoverBody>
<Cart addToCart={addToCart} cartItems={cartItems} />
</PopoverBody>
</PopoverContent>
</Popover>
) : null;
return (
<Box>
<Flex
bg={useColorModeValue("white", "gray.800")}
color={useColorModeValue("gray.600", "white")}
minH={"60px"}
py={{ base: 2 }}
px={{ base: 4 }}
borderBottom={1}
borderStyle={"solid"}
borderColor={useColorModeValue("gray.200", "gray.900")}
align={"center"}
>
<Flex
flex={{ base: 0, md: "auto" }}
ml={{ base: -2 }}
display={{ base: "flex", md: "none" }}
>
<IconButton
flex="0"
onClick={onToggle}
icon={
isOpen ? <CloseIcon w={3} h={3} /> : <HamburgerIcon w={5} h={5} />
}
variant={"ghost"}
aria-label={"Toggle Navigation"}
/>
</Flex>
<Flex
flex={{ base: 1 }}
justify={{ base: "center", md: "start", sm: "center" }}
>
<Logo />
<Flex display={{ base: "none", md: "flex" }} ml={10}>
<DesktopNav links={links} />
</Flex>
</Flex>
{isAdminPage ? (
<Stack
flex={{ base: 1, md: 0 }}
justify={"flex-end"}
direction={"row"}
spacing={6}
>
<Button
as={"a"}
colorScheme="blue"
variant="solid"
fontSize={"sm"}
fontWeight={400}
href={authUrl}
>
{isAuthenticated ? "Sign Out" : "Sign In"}
</Button>
</Stack>
) : (
cartIcon
)}
</Flex>
<Collapse in={isOpen} animateOpacity>
<MobileNav links={links} />
</Collapse>
</Box>
);
}
const DesktopNav = ({ links }) => {
return (
<Stack direction={"row"} spacing={4}>
{links.map((navItem) => (
<Box key={navItem.label}>
<Popover trigger={"hover"} placement={"bottom-start"}>
<PopoverTrigger>
<Link
as={RouteLink}
_activeLink={{ fontWeight: "bold" }}
p={2}
to={navItem.href ?? "#"}
fontSize={"sm"}
>
{navItem.label}
</Link>
</PopoverTrigger>
{navItem.children && (
<PopoverContent
border={0}
boxShadow={"xl"}
p={4}
rounded={"xl"}
minW={"sm"}
>
<Stack>
{navItem.children.map((child) => (
<DesktopSubNav key={child.label} {...child} />
))}
</Stack>
</PopoverContent>
)}
</Popover>
</Box>
))}
</Stack>
);
};
const DesktopSubNav = ({ label, href, subLabel }) => {
return (
<Link
as={RouteLink}
href={href}
role={"group"}
display={"block"}
p={2}
rounded={"md"}
_hover={{ bg: useColorModeValue("pink.50", "gray.900") }}
>
<Stack direction={"row"} align={"center"}>
<Box>
<Text
transition={"all .3s ease"}
_groupHover={{ color: "pink.400" }}
fontWeight={500}
>
{label}
</Text>
<Text fontSize={"sm"}>{subLabel}</Text>
</Box>
<Flex
transition={"all .3s ease"}
transform={"translateX(-10px)"}
opacity={0}
_groupHover={{ opacity: "100%", transform: "translateX(0)" }}
justify={"flex-end"}
align={"center"}
flex={1}
>
<Icon color={"pink.400"} w={5} h={5} as={ChevronRightIcon} />
</Flex>
</Stack>
</Link>
);
};
const MobileNav = ({ links }) => {
return (
<Stack
bg={useColorModeValue("white", "gray.800")}
p={4}
display={{ md: "none" }}
>
{links.map((navItem) => (
<MobileNavItem key={navItem.label} {...navItem} />
))}
</Stack>
);
};
const MobileNavItem = ({ label, href }) => {
const { isOpen, onToggle } = useDisclosure();
return (
<Stack spacing={4} onClick={onToggle}>
<Flex
py={2}
as={RouteLink}
// as={Link}
to={href ?? "#"}
justify={"space-between"}
align={"center"}
_hover={{
textDecoration: "none",
}}
>
<Text
fontWeight={600}
color={useColorModeValue("gray.600", "gray.200")}
>
{label}
</Text>
</Flex>
</Stack>
);
};