-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathJurorLevels.tsx
147 lines (131 loc) · 3.65 KB
/
JurorLevels.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
import React, { useState } from "react";
import styled, { css } from "styled-components";
import { Card as _Card } from "@kleros/ui-components-library";
import { landscapeStyle } from "styles/landscapeStyle";
import Coherency from "pages/Dashboard/JurorInfo/Coherency";
import PixelArt from "pages/Dashboard/JurorInfo/PixelArt";
import Template from "./MainStructureTemplate";
import { Title, ParagraphsContainer, LeftContentContainer } from "./PageContentsTemplate";
const Card = styled(_Card)`
display: flex;
flex-direction: column;
align-items: center;
width: 234px;
height: 100%;
gap: 28px;
padding: 24px;
${landscapeStyle(
() => css`
flex-direction: row;
width: 100%;
height: 236px;
`
)}
`;
const leftPageContents = [
{
title: "Juror Level 1: Phytagoras",
paragraphs: [
"Jurors are classified into distinct levels according to their performance starting from Level 1.",
"Level 1: Jurors with 0 cases arbitrated, OR Jurors with ≥ 1 case arbitrated with 0-70% of coherent votes.",
],
},
{
title: "Juror Level 2: Socrates",
paragraphs: ["Level 2: Jurors with ≥ 3 cases arbitrated with 70%-80% of coherent votes."],
},
{
title: "Juror Level 3: Plato",
paragraphs: ["Level 3: Jurors with ≥ 7 cases arbitrated with 80%-90% of coherent votes."],
},
{
title: "Juror Level 4: Aristotle",
paragraphs: ["Level 4: Jurors with ≥ 10 cases arbitrated with more than 90% of coherent votes."],
},
{
title: "Juror Level 0: Diogenes",
paragraphs: [
"There's a level for the low-performance/lazy jurors. Level 0: Jurors with ≥ 3 cases arbitrated" +
" with less than 50% of coherent votes.",
],
},
];
const userLevelData = [
{
level: 1,
title: "Phytagoras",
totalCoherentVotes: 6,
totalResolvedVotes: 10,
},
{
level: 2,
title: "Socrates",
totalCoherentVotes: 7,
totalResolvedVotes: 10,
},
{
level: 3,
title: "Plato",
totalCoherentVotes: 8,
totalResolvedVotes: 10,
},
{
level: 4,
title: "Aristotle",
totalCoherentVotes: 9,
totalResolvedVotes: 10,
},
{
level: 0,
title: "Diogenes",
totalCoherentVotes: 3,
totalResolvedVotes: 10,
},
];
const LeftContent: React.FC<{ currentPage: number }> = ({ currentPage }) => {
const { title, paragraphs } = leftPageContents[currentPage - 1];
return (
<LeftContentContainer>
<Title>{title}</Title>
<ParagraphsContainer>
{paragraphs.map((paragraph, index) => (
<label key={paragraph}>{paragraph}</label>
))}
</ParagraphsContainer>
</LeftContentContainer>
);
};
const RightContent: React.FC<{ currentPage: number }> = ({ currentPage }) => {
const userData = userLevelData[currentPage - 1];
return (
<Card>
<PixelArt level={userData.level} width="189px" height="189px" />
<Coherency
userLevelData={userData}
totalCoherentVotes={userData.totalCoherentVotes}
totalResolvedVotes={userData.totalResolvedVotes}
isMiniGuide={true}
/>
</Card>
);
};
interface IJurorLevels {
toggleMiniGuide: () => void;
}
const JurorLevels: React.FC<IJurorLevels> = ({ toggleMiniGuide }) => {
const [currentPage, setCurrentPage] = useState(1);
return (
<Template
LeftContent={<LeftContent currentPage={currentPage} />}
RightContent={<RightContent currentPage={currentPage} />}
onClose={toggleMiniGuide}
currentPage={currentPage}
setCurrentPage={setCurrentPage}
numPages={leftPageContents.length}
isOnboarding={false}
canClose={true}
isVisible={true}
/>
);
};
export default JurorLevels;