-
Notifications
You must be signed in to change notification settings - Fork 3
/
RoadPreview.tsx
255 lines (249 loc) · 7.88 KB
/
RoadPreview.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
import {
Box,
Divider,
Link,
Stack,
Tooltip,
Typography,
useTheme
} from "@mui/material";
import { LabelChipGroup, LabelChipGroupProps } from "../LabelSelector";
import { AsamLogo } from "../SvgIcons/AsamLogo";
import AttachFileIcon from "@mui/icons-material/AttachFile";
import { CarMakerLogo } from "../SvgIcons/CarMakerLogo";
import DateRangeOutlinedIcon from "@mui/icons-material/DateRangeOutlined";
import NoWrapTypography from "../NoWrapTypography/NoWrapTypography";
import NumbersIcon from "@mui/icons-material/Numbers";
import React from "react";
import { RoadPreviewProps } from "./RoadPreview.types";
import TruncatedTooltip from "../TruncatedTooltip";
import UserAvatar from "../UserAvatar/UserAvatar";
import VersionChip from "../VersionChip/VersionChip";
/**
* RoadPreview component for visualizing Road information about specific road
*/
export function RoadPreview({
name,
href,
version,
image,
description,
format,
formatVersion,
file,
createdAt,
user,
label = [],
sx
}: RoadPreviewProps) {
// theme hook for returning specific colors from the theme to MUI icon
const theme = useTheme();
/** Checking if we have optional properties for conditional rendering according to: label, createdAt, user */
function hasOptionalProperty() {
return (label?.length && label?.length > 0) || createdAt || user;
}
/** Map the label chip array in format expected from LabelChipGroup Component */
const labelChips: LabelChipGroupProps["chips"] = label?.map(l => {
return {
clickable: false,
color: l.color,
label: l.name,
size: "small"
};
});
return (
<Box
display="flex"
flexDirection="column"
gap={2}
minWidth={0}
fontFamily="Montserrat"
data-testid="road-preview-wrapper"
sx={{ ...sx }}
>
<Box gap={1}>
<Stack direction="row" spacing={1} minWidth={0}>
<img
src={image}
alt="road-image"
style={{
height: "44px",
marginBottom: "auto",
marginTop: "auto",
objectFit: "contain",
width: "78px"
}}
/>
<Stack direction="column" minWidth={0}>
<Stack direction="row" gap={1} display="flex">
<Box>
<VersionChip version={version} />
</Box>
<NoWrapTypography>
<Link
href={href}
target="_blank"
color="primary"
variant="subtitle2"
underline="hover"
data-testid="road-preview-name"
>
{name}
</Link>
</NoWrapTypography>
</Stack>
<Stack direction="row">
<TruncatedTooltip multiline={2}>
<Typography
variant="caption"
color="textPrimary"
data-testid="road-preview-description"
>
{description}
</Typography>
</TruncatedTooltip>
</Stack>
</Stack>
</Stack>
</Box>
<Box gap={1}>
<Stack direction={"row"} spacing={2}>
<Box flexShrink={0} display="flex" gap="4px" alignItems="center">
<Tooltip title="Road Format">
{/* need div element, because tooltip is not shown without it */}
<div style={{ display: "flex" }}>
{format === "CarMaker" ? (
<CarMakerLogo sx={{ height: "20px", width: "20px" }} />
) : (
<AsamLogo sx={{ height: "20px", width: "20px" }} />
)}
</div>
</Tooltip>
<Typography
variant="caption"
color="textSecondary"
data-testid="road-preview-format"
>
{format}
</Typography>
</Box>
<Box flexShrink={0} display="flex" gap="4px" alignItems="center">
<Tooltip title="Format Version">
<NumbersIcon
sx={{
color: theme.palette.text.secondary,
height: "20px",
width: "20px"
}}
></NumbersIcon>
</Tooltip>
<Typography
variant="caption"
color="textSecondary"
data-testid="road-preview-format-version"
>
{formatVersion}
</Typography>
</Box>
<Box display="flex" gap="4px" alignItems="center" minWidth={0}>
<Tooltip title="Road File">
<AttachFileIcon
sx={{
color: theme.palette.text.secondary,
height: "20px",
width: "20px"
}}
/>
</Tooltip>
<NoWrapTypography>
<Typography
variant="caption"
color="textSecondary"
data-testid="road-preview-filename"
>
{file.name}
</Typography>
</NoWrapTypography>
</Box>
</Stack>
</Box>
{hasOptionalProperty() ? (
<>
<Divider />
<Box display="flex" flexDirection="column" gap={2}>
{(createdAt || user) && (
<Stack direction="row" spacing={2}>
{createdAt && (
<Box flexShrink={0}>
<Stack
direction="row"
display="flex"
alignItems="center"
gap="4px"
>
<Tooltip title="Created On">
<DateRangeOutlinedIcon
sx={{ color: theme.palette.text.secondary }}
/>
</Tooltip>
<Typography
color="textSecondary"
variant="caption"
data-testid="road-preview-created"
>
{createdAt}
</Typography>
</Stack>
</Box>
)}
{user && (
<Box minWidth={0}>
<Stack
direction="row"
display="flex"
alignItems="center"
gap="4px"
>
<Tooltip title="Created By">
{/* needs div element otherwise tooltip is not showing when user as wrapper of custom component */}
<div>
<UserAvatar
sx={{ height: "24px", width: "24px" }}
color="#EC407A"
name={user}
></UserAvatar>
</div>
</Tooltip>
<NoWrapTypography>
<Typography
color="textSecondary"
variant="caption"
data-testid="road-preview-user"
>
{user}
</Typography>
</NoWrapTypography>
</Stack>
</Box>
)}
</Stack>
)}
{label && label.length > 0 && (
<Stack
direction="row"
spacing={1}
sx={{
height: 24,
maxWidth: "calc(100% - 16px)",
overflowX: "hidden"
}}
>
<LabelChipGroup chips={labelChips || []} />
</Stack>
)}
</Box>
</>
) : null}
</Box>
);
}