-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathDescription.tsx
106 lines (89 loc) · 2.74 KB
/
Description.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
import React, { useEffect } from "react";
import styled from "styled-components";
import ReactMarkdown from "react-markdown";
import { Routes, Route, Navigate, useParams, useNavigate, useLocation } from "react-router-dom";
import { Tabs } from "@kleros/ui-components-library";
import { useCourtPolicy } from "queries/useCourtPolicy";
import { StyledSkeleton } from "components/StyledSkeleton";
const Container = styled.div`
width: 100%;
`;
const TextContainer = styled.div`
width: 100%;
padding: 12px 0;
p {
word-break: break-word;
}
`;
const StyledTabs = styled(Tabs)`
width: 100%;
> * {
display: flex;
flex-wrap: wrap;
> svg {
margin-right: 0px !important;
}
}
`;
interface IPolicy {
description?: string;
requiredSkills?: string;
summary?: string;
}
const TABS = [
{
text: "Purpose",
value: 0,
path: "purpose",
isVisible: (policy: IPolicy) => !!policy?.description,
},
{
text: "Skills",
value: 1,
path: "skills",
isVisible: (policy: IPolicy) => !!policy?.requiredSkills,
},
{
text: "Policy",
value: 2,
path: "policy",
isVisible: (policy: IPolicy) => !!policy?.summary,
},
];
const Description: React.FC = () => {
const { id } = useParams();
const { data: policy } = useCourtPolicy(id);
const navigate = useNavigate();
const location = useLocation();
const currentPathName = location.pathname.split("/").at(-1);
const filteredTabs = TABS.filter(({ isVisible }) => isVisible(policy));
const currentTab = TABS.findIndex(({ path }) => path === currentPathName);
const handleTabChange = (index: number) => {
navigate(TABS[index].path);
};
useEffect(() => {
if (currentPathName && !filteredTabs.map((t) => t.path).includes(currentPathName) && filteredTabs.length > 0) {
navigate(filteredTabs[0].path, { replace: true });
}
}, [policy, currentPathName, filteredTabs, navigate]);
return (
<>
{policy ? (
<Container id="description">
<StyledTabs currentValue={currentTab} items={filteredTabs} callback={handleTabChange} />
<TextContainer>
<Routes>
<Route path="purpose" element={formatMarkdown(policy?.description)} />
<Route path="skills" element={formatMarkdown(policy?.requiredSkills)} />
<Route path="policy" element={formatMarkdown(policy?.summary)} />
<Route path="*" element={<Navigate to={filteredTabs.length > 0 ? filteredTabs[0].path : ""} replace />} />
</Routes>
</TextContainer>
</Container>
) : null}
</>
);
};
const formatMarkdown = (markdown?: string) =>
markdown ? <ReactMarkdown>{markdown.replace(/\n/g, " \n")}</ReactMarkdown> : <StyledSkeleton />;
export default Description;