-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathDisputeContext.tsx
114 lines (98 loc) · 3.14 KB
/
DisputeContext.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
import React from "react";
import styled from "styled-components";
import { DisputeDetails } from "@kleros/kleros-sdk/src/dataMappings/utils/disputeDetailsTypes";
import { INVALID_DISPUTE_DATA_ERROR, RPC_ERROR } from "consts/index";
import { Answer as IAnswer } from "context/NewDisputeContext";
import { isUndefined } from "utils/index";
import { responsiveSize } from "styles/responsiveSize";
import ReactMarkdown from "components/ReactMarkdown";
import { StyledSkeleton } from "components/StyledSkeleton";
import AliasDisplay from "./Alias";
import { Divider } from "../Divider";
import { ExternalLink } from "../ExternalLink";
const StyledH1 = styled.h1`
margin: 0;
word-wrap: break-word;
`;
const ReactMarkdownWrapper = styled.div`
& p:first-of-type {
margin: 0;
}
`;
const VotingOptions = styled.div`
display: flex;
flex-direction: column;
gap: 8px;
`;
const AnswersContainer = styled.div`
display: flex;
flex-direction: column;
`;
const AnswersHeader = styled.h3`
margin: 0;
`;
const Answer = styled.div`
margin: 0px;
display: flex;
flex-wrap: wrap;
gap: 6px;
`;
const AliasesContainer = styled.div`
display: flex;
flex-wrap: wrap;
gap: ${responsiveSize(8, 20)};
`;
interface IDisputeContext {
disputeDetails?: DisputeDetails;
isRpcError?: boolean;
}
export const DisputeContext: React.FC<IDisputeContext> = ({ disputeDetails, isRpcError = false }) => {
const errMsg = isRpcError ? RPC_ERROR : INVALID_DISPUTE_DATA_ERROR;
return (
<>
<StyledH1>{isUndefined(disputeDetails) ? <StyledSkeleton /> : (disputeDetails?.title ?? errMsg)}</StyledH1>
{!isUndefined(disputeDetails) ? (
<>
{disputeDetails?.question?.trim() ? (
<ReactMarkdownWrapper>
<ReactMarkdown>{disputeDetails.question}</ReactMarkdown>
</ReactMarkdownWrapper>
) : null}
{disputeDetails?.description?.trim() ? (
<ReactMarkdownWrapper>
<ReactMarkdown>{disputeDetails.description}</ReactMarkdown>
</ReactMarkdownWrapper>
) : null}
</>
) : null}
{isUndefined(disputeDetails?.frontendUrl) ? null : (
<ExternalLink href={disputeDetails?.frontendUrl} target="_blank" rel="noreferrer">
Go to arbitrable
</ExternalLink>
)}
<VotingOptions>
{isUndefined(disputeDetails) ? null : <AnswersHeader>Voting Options</AnswersHeader>}
<AnswersContainer>
{disputeDetails?.answers?.map((answer: IAnswer, i: number) => (
<Answer key={answer.title}>
<small>
<label>{i + 1}.</label> {answer.title}
{answer.description.trim() ? ` - ${answer.description}` : null}
</small>
</Answer>
))}
</AnswersContainer>
</VotingOptions>
{isUndefined(disputeDetails?.aliases) ? null : (
<>
<Divider />
<AliasesContainer>
{Object.keys(disputeDetails.aliases).map((key) => (
<AliasDisplay name={key} key={key} address={disputeDetails.aliases[key]} />
))}
</AliasesContainer>
</>
)}
</>
);
};