-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathOptionsContainer.tsx
122 lines (108 loc) · 3.78 KB
/
OptionsContainer.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
import React, { useCallback, useMemo, useState } from "react";
import styled from "styled-components";
import ReactMarkdown from "react-markdown";
import { useParams } from "react-router-dom";
import { Button, Tooltip } from "@kleros/ui-components-library";
import { usePopulatedDisputeData } from "hooks/queries/usePopulatedDisputeData";
import { isUndefined } from "utils/index";
import { EnsureChain } from "components/EnsureChain";
import JustificationArea from "./JustificationArea";
import { Answer } from "@kleros/kleros-sdk";
import { RefuseToArbitrateAnswer } from "@kleros/kleros-sdk/src/dataMappings/utils/disputeDetailsSchema";
const MainContainer = styled.div`
width: 100%;
height: auto;
display: flex;
flex-direction: column;
`;
const OptionsContainer = styled.div`
margin-top: 24px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
`;
const RefuseToArbitrateContainer = styled.div`
position: relative;
left: 0;
right: 0;
width: auto;
margin: calc(-1 * (16px + (32 - 16) * (min(max(100vw, 375px), 1250px) - 375px) / 875));
margin-top: 32px;
background-color: ${({ theme }) => theme.lightBlue};
padding: 32px;
display: flex;
justify-content: center;
`;
const StyledEnsureChain = styled(EnsureChain)`
align-self: center;
`;
interface IOptions {
arbitrable: `0x${string}`;
handleSelection: (arg0: bigint) => Promise<void>;
justification?: string;
setJustification?: (arg0: string) => void;
}
const Options: React.FC<IOptions> = ({ arbitrable, handleSelection, justification, setJustification }) => {
const { id } = useParams();
const { data: disputeDetails } = usePopulatedDisputeData(id, arbitrable);
const [chosenOption, setChosenOption] = useState(BigInt(-1));
const [isSending, setIsSending] = useState(false);
const updatedRTA = useMemo(() => {
const RTAFromTemplate = disputeDetails?.answers?.find((answer) => BigInt(answer.id) === BigInt(0));
if (!RTAFromTemplate) return RefuseToArbitrateAnswer;
return RTAFromTemplate;
}, [disputeDetails]);
const onClick = useCallback(
async (id: bigint) => {
setIsSending(true);
setChosenOption(id);
await handleSelection(id);
setChosenOption(BigInt(-1));
setIsSending(false);
},
[handleSelection, setChosenOption, setIsSending]
);
return id ? (
<>
<MainContainer dir="auto">
<ReactMarkdown>{disputeDetails?.question ?? ""}</ReactMarkdown>
{!isUndefined(justification) && !isUndefined(setJustification) ? (
<JustificationArea {...{ justification, setJustification }} />
) : null}
{isUndefined(disputeDetails?.answers) ? null : (
<StyledEnsureChain>
<OptionsContainer>
{disputeDetails?.answers?.map((answer: Answer) => {
return BigInt(answer.id) !== BigInt(0) ? (
<Tooltip text={answer.description} key={answer.title}>
<Button
text={answer.title}
disabled={isSending}
isLoading={chosenOption === BigInt(answer.id)}
onClick={() => onClick(BigInt(answer.id))}
/>
</Tooltip>
) : null;
})}
</OptionsContainer>
</StyledEnsureChain>
)}
</MainContainer>
<RefuseToArbitrateContainer>
<EnsureChain>
<Tooltip text={updatedRTA.description}>
<Button
variant="secondary"
text={updatedRTA.title}
disabled={isSending}
isLoading={chosenOption === BigInt(0)}
onClick={() => onClick(BigInt(0))}
/>
</Tooltip>
</EnsureChain>
</RefuseToArbitrateContainer>
</>
) : null;
};
export default Options;