-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathindex.tsx
72 lines (60 loc) · 1.9 KB
/
index.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
import React from "react";
import styled, { css } from "styled-components";
import { MAX_WIDTH_LANDSCAPE, landscapeStyle } from "styles/landscapeStyle";
import { responsiveSize } from "styles/responsiveSize";
import { useAccount } from "wagmi";
import { useTotalLeaderboardJurors } from "queries/useTotalLeaderboardJurors";
import ArrowIcon from "svgs/icons/arrow.svg";
import { StyledArrowLink } from "components/StyledArrowLink";
import ScrollTop from "components/ScrollTop";
import Search from "./Search";
import StatsAndFilters from "./StatsAndFilters";
import DisplayJurors from "./DisplayJurors";
const Container = styled.div`
width: 100%;
background-color: ${({ theme }) => theme.lightBackground};
padding: 32px 16px 40px;
max-width: ${MAX_WIDTH_LANDSCAPE};
margin: 0 auto;
${landscapeStyle(
() => css`
padding: 48px ${responsiveSize(0, 132)} 60px;
`
)}
`;
const Header = styled.div`
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: ${responsiveSize(12, 24)};
gap: 4px;
`;
const StyledTitle = styled.h1`
margin: 0px;
font-size: ${responsiveSize(20, 24)};
`;
const Jurors: React.FC = () => {
const { data: queryTotalLeaderBoardJurors } = useTotalLeaderboardJurors();
const totalLeaderboardJurors = queryTotalLeaderBoardJurors?.counter?.totalLeaderboardJurors;
const { isConnected } = useAccount();
return (
<>
<Container>
<Header>
<StyledTitle>Jurors Leaderboard</StyledTitle>
{isConnected ? (
<StyledArrowLink to="/profile">
My Profile <ArrowIcon />
</StyledArrowLink>
) : null}
</Header>
<Search />
<StatsAndFilters totalJurors={totalLeaderboardJurors} />
<DisplayJurors totalLeaderboardJurors={totalLeaderboardJurors} />
</Container>
<ScrollTop />
</>
);
};
export default Jurors;