-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFooter.tsx
More file actions
274 lines (263 loc) · 8.12 KB
/
Footer.tsx
File metadata and controls
274 lines (263 loc) · 8.12 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
import { useMemo, useState } from "react";
import styled from "styled-components";
import logo from "../../../src/assets/logo-white.svg";
import { BosonRoutes } from "../../lib/routing/routes";
import { breakpoint } from "../../lib/styles/breakpoint";
import { useBreakpoints } from "../../lib/utils/hooks/useBreakpoints";
import { sanitizeUrl } from "../../lib/utils/url";
import SocialLogo, {
SocialLogoValues
} from "../../pages/custom-store/SocialLogo";
import { useCustomStoreQueryParameter } from "../../pages/custom-store/useCustomStoreQueryParameter";
import useUserRoles from "../../router/useUserRoles";
import { LinkWithQuery } from "../customNavigation/LinkWithQuery";
import Layout from "../Layout";
import Grid from "../ui/Grid";
import Typography from "../ui/Typography";
import {
ADDITIONAL_LINKS,
getNavigationRoutes,
getProductRoutes,
SOCIAL_ROUTES
} from "./routes";
const Footer = styled.footer`
width: 100%;
background-color: var(--footerBgColor);
color: var(--footerTextColor);
padding: 4rem 1rem 2rem 1rem;
margin-top: auto;
`;
const LogoGrid = styled(Grid)`
flex-direction: column;
> a {
margin-bottom: 4rem;
}
margin-top: 4rem;
${breakpoint.xs} {
margin-top: 0;
> a {
margin-bottom: 0rem;
}
flex-direction: row;
}
`;
const NavigationGrid = styled(Grid)`
gap: 5rem;
padding: 0 2rem 2rem 0;
${breakpoint.xs} {
gap: 5rem;
padding: 0 0rem 2rem 0;
}
${breakpoint.m} {
gap: 10rem;
padding: 0 6rem 2rem 0;
}
${breakpoint.l} {
gap: 15rem;
padding: 0 8rem 2rem 0;
}
${breakpoint.xl} {
gap: 15rem;
padding: 0 10rem 2rem 0;
}
`;
interface INavigationLinks {
flexDirection?: "row" | "column";
gap?: string;
}
const NavigationLinks = styled.nav<INavigationLinks>`
display: flex;
gap: ${({ gap }) => gap || "16px"};
flex-wrap: wrap;
align-items: self-start;
max-width: 100%;
justify-content: center;
flex-direction: ${({ flexDirection }) => flexDirection || "row"};
a {
cursor: pointer;
text-decoration: none;
color: var(--footerTextColor);
}
a:hover {
color: var(--accent);
}
${breakpoint.xs} {
max-width: 125px;
}
${breakpoint.s} {
max-width: 300px;
}
`;
const LogoImg = styled.img`
height: 24px;
cursor: pointer;
`;
function Socials() {
const { isXXS, isLteS } = useBreakpoints();
const isCustomStoreFront = useCustomStoreQueryParameter("isCustomStoreFront");
const socialMediaLinks = useCustomStoreQueryParameter<
{ value: SocialLogoValues; url: string }[]
>("socialMediaLinks", { parseJson: true });
const renderSocialLinks = useMemo(() => {
if (isCustomStoreFront && typeof socialMediaLinks !== "string") {
return socialMediaLinks.map(({ url, value }) => {
return (
<a
href={sanitizeUrl(url)}
target="_blank"
rel="noopener noreferrer"
key={`social_nav_${value}_${url}`}
>
<SocialLogo logo={value} />
</a>
);
});
} else if (!isCustomStoreFront) {
return SOCIAL_ROUTES.map(({ name, url, logo: Logo }) => (
<a href={url} target="_blank" rel="noopener" key={`social_nav_${name}`}>
<Logo size={isLteS && !isXXS ? 20 : 32} weight="regular" />
</a>
));
}
return null;
}, [isCustomStoreFront, isLteS, isXXS, socialMediaLinks]);
return (
<NavigationLinks gap={isLteS && !isXXS ? "16px" : "32px"}>
{renderSocialLinks}
</NavigationLinks>
);
}
export default function FooterComponent() {
const { roles, address } = useUserRoles({ role: [] });
const { isXXS } = useBreakpoints();
const isCustomStoreFront = useCustomStoreQueryParameter("isCustomStoreFront");
const [year] = useState<number>(new Date().getFullYear());
const logoUrl = useCustomStoreQueryParameter("logoUrl");
const copyright = useCustomStoreQueryParameter("copyright");
const additionalFooterLinks = useCustomStoreQueryParameter<
{ label: string; value: string }[]
>("additionalFooterLinks", { parseJson: true });
const supportFunctionality = useCustomStoreQueryParameter<
("buyer" | "seller" | "dr")[]
>("supportFunctionality", { parseJson: true });
const isSupportFunctionalityDefined = supportFunctionality !== "";
const onlyBuyer =
typeof supportFunctionality != "string" &&
supportFunctionality?.length === 1 &&
supportFunctionality?.[0] === "buyer";
const onlySeller =
typeof supportFunctionality != "string" &&
supportFunctionality?.length === 1 &&
supportFunctionality?.[0] === "seller";
return (
<Footer>
<Layout>
<LogoGrid alignItems="flex-start" padding="0 0 2rem 0">
<LinkWithQuery to={BosonRoutes.Root}>
<LogoImg
src={logoUrl || logo}
alt="Boson Protocol"
data-testid="logo"
/>
</LinkWithQuery>
<NavigationGrid
justifyContent={isXXS ? "flex-start" : "flex-end"}
alignItems="flex-start"
>
<div>
<Typography tag="h5">Product</Typography>
<NavigationLinks flexDirection="column">
{getProductRoutes({
roles,
address,
isSupportFunctionalityDefined,
onlyBuyer,
onlySeller
}).reduce<JSX.Element[]>((acc, nav) => {
if (
nav &&
((isCustomStoreFront && nav.name !== "Sell") ||
!isCustomStoreFront)
) {
acc.push(
<LinkWithQuery
to={nav.url}
key={`product_nav_${nav.name}`}
>
{nav.name}
</LinkWithQuery>
);
}
return acc;
}, [])}
</NavigationLinks>
</div>
<div>
<Typography tag="h5">Navigation</Typography>
<NavigationLinks flexDirection="column">
{getNavigationRoutes({
roles,
isSupportFunctionalityDefined,
onlySeller
}).map(
(nav) =>
nav && (
<LinkWithQuery
to={nav.url}
key={`navigation_nav_${nav.name}`}
>
{nav.name}
</LinkWithQuery>
)
)}
</NavigationLinks>
</div>
</NavigationGrid>
</LogoGrid>
{isXXS && (
<Grid justifyContent="center">
<Socials />
</Grid>
)}
<Grid padding="2rem 0 0 0">
<Typography tag="p">
{isCustomStoreFront ? copyright : `© ${year} Bosonapp.io`}
</Typography>
{!isXXS && <Socials />}
<>
{isCustomStoreFront && typeof additionalFooterLinks !== "string" ? (
<NavigationLinks>
{additionalFooterLinks.map((footerLink, index) => {
return (
<a
key={`${footerLink.label}-${footerLink.value}-${index}`}
href={sanitizeUrl(footerLink.value)}
target="_blank"
style={{ textAlign: "center" }}
rel="noopener noreferrer"
>
{footerLink.label}
</a>
);
})}
</NavigationLinks>
) : (
<NavigationLinks>
{ADDITIONAL_LINKS.map((footerLink, index) => {
return (
<LinkWithQuery
to={footerLink.value}
key={`${footerLink.label}-${footerLink.value}-${index}`}
>
{footerLink.label}
</LinkWithQuery>
);
})}
</NavigationLinks>
)}
</>
</Grid>
</Layout>
</Footer>
);
}