-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathblocks.tsx
277 lines (253 loc) · 8.11 KB
/
blocks.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
import * as React from 'react';
import Stack from '../stack';
import * as styles from './blocks.css';
import * as mediaStyles from '../image.css';
import {Text2, Text3, Text5, Text8} from '../text';
import {vars} from '../skins/skin-contract.css';
import Inline from '../inline';
import Box from '../box';
import {ProgressBar} from '../progress-bar';
import classNames from 'classnames';
import {applyCssVars} from '../utils/css';
import type StackingGroup from '../stacking-group';
import type Image from '../image';
import type Tag from '../tag';
import type {RendersNullableElement} from '../utils/renders-element';
import type {ExclusifyUnion} from '../utils/utility-types';
interface BlockContentProps {
title?: string;
description?: ReadonlyArray<string> | string;
}
const BlockContent = ({title, description}: BlockContentProps) => {
const descriptionLines = typeof description === 'string' ? [description] : description;
return (
<div className={styles.column}>
<Text3 regular color={vars.colors.textPrimary}>
{title}
</Text3>
{descriptionLines &&
descriptionLines.map((paragraph, i) => (
<Text2 regular color={vars.colors.textSecondary} as="p" key={i}>
{paragraph}
</Text2>
))}
</div>
);
};
interface RowBlockBaseProps {
title?: string;
'aria-label'?: string;
}
interface RowBlockWithDescription extends RowBlockBaseProps {
description?: string;
}
interface RowBlockWithStackingGroup extends RowBlockBaseProps {
stackingGroup?: RendersNullableElement<typeof StackingGroup>;
}
type RowBlockProps = ExclusifyUnion<RowBlockWithDescription | RowBlockWithStackingGroup>;
export const RowBlock = ({
title,
stackingGroup,
description,
'aria-label': ariaLabel,
}: RowBlockProps): JSX.Element => {
return (
<div aria-label={ariaLabel}>
<Inline space="between" alignItems="center">
{title && (
<Box paddingRight={32}>
<Text2 regular>{title}</Text2>
</Box>
)}
{stackingGroup ? (
stackingGroup
) : (
<Text2 regular color={vars.colors.textSecondary} textAlign="right" as="div">
{description}
</Text2>
)}
</Inline>
</div>
);
};
interface SimpleBlockProps {
image?: RendersNullableElement<typeof Image>;
description?: string;
'aria-label'?: string;
rightText?: string;
}
export const SimpleBlock = ({
image,
description,
'aria-label': ariaLabel,
rightText,
}: SimpleBlockProps): JSX.Element => {
return (
<div aria-label={ariaLabel}>
<Inline space="between" alignItems="center">
<Inline space={16} alignItems="center">
<div
style={applyCssVars({
[mediaStyles.vars.mediaBorderRadius]: vars.borderRadii.mediaSmall,
})}
>
{image}
</div>
<Text2 regular color={vars.colors.textSecondary}>
{description}
</Text2>
</Inline>
<div className={styles.rightContent}>
<Text2 regular color={vars.colors.textBrand}>
{rightText}
</Text2>
</div>
</Inline>
</div>
);
};
interface InformationBlockProps {
title?: string;
description?: ReadonlyArray<string> | string;
value?: string;
secondaryValue?: string;
valueColor?: string;
'aria-label'?: string;
}
export const InformationBlock = ({
title,
description,
secondaryValue,
value,
valueColor = vars.colors.textPrimary,
'aria-label': ariaLabel,
}: InformationBlockProps): JSX.Element => {
return (
<Inline space="between" alignItems="flex-end" aria-label={ariaLabel}>
<BlockContent title={title} description={description} />
<div className={classNames(styles.column, styles.rightContent)}>
<Text2 regular color={vars.colors.textSecondary} decoration="line-through">
{secondaryValue}
</Text2>
<Text5 color={valueColor}>{value}</Text5>
</div>
</Inline>
);
};
interface Heading {
value: string;
text?: string;
valueColor?: string;
}
interface HighlightedValueBlockProps {
headline?: RendersNullableElement<typeof Tag>;
headings?: ReadonlyArray<Heading>;
title?: string;
description?: ReadonlyArray<string> | string;
'aria-label'?: string;
}
export const HighlightedValueBlock = ({
headline,
headings,
title,
description,
'aria-label': ariaLabel,
}: HighlightedValueBlockProps): JSX.Element => {
return (
<div aria-label={ariaLabel}>
{headline && <Box paddingBottom={24}>{headline}</Box>}
{headings && (
<Stack space={2}>
{headings.map((heading, index) => (
<Inline key={index} space={8} alignItems="baseline">
<Text8 color={heading.valueColor ?? vars.colors.textPrimary}>
{heading.value}
</Text8>
<Text2 regular color={vars.colors.textSecondary}>
{heading.text}
</Text2>
</Inline>
))}
</Stack>
)}
{title || description ? (
<Box paddingTop={8}>
<BlockContent title={title} description={description} />
</Box>
) : null}
</div>
);
};
interface ValueBlockProps {
title?: string;
value?: string;
description?: ReadonlyArray<string> | string;
valueColor?: string;
'aria-label'?: string;
}
export const ValueBlock = ({
title,
value,
description,
valueColor = vars.colors.textPrimary,
'aria-label': ariaLabel,
}: ValueBlockProps): JSX.Element => {
return (
<div aria-label={ariaLabel} className={styles.column}>
<Text2 regular color={vars.colors.textPrimary}>
{title}
</Text2>
<Text8 color={valueColor}>{value}</Text8>
<BlockContent description={description} />
</div>
);
};
interface ProgressBlockProps {
title?: string;
stackingGroup?: RendersNullableElement<typeof StackingGroup>;
progressPercent?: number;
reverse?: boolean;
heading: {
value: string;
valueColor?: string;
text: string;
};
description?: string;
'aria-label'?: string;
}
export const ProgressBlock = ({
title,
stackingGroup,
progressPercent,
reverse,
heading,
description,
'aria-label': ariaLabel,
}: ProgressBlockProps): JSX.Element => {
return (
<div aria-label={ariaLabel}>
<Stack space={8}>
<Inline space="between" alignItems="flex-end">
<Box paddingRight={32}>
<Text2 regular>{title}</Text2>
</Box>
{stackingGroup}
</Inline>
{progressPercent !== undefined && (
<ProgressBar aria-hidden progressPercent={progressPercent} reverse={reverse} />
)}
<Inline space={8} alignItems="baseline">
<Text8 color={heading.valueColor || vars.colors.textPrimary}>{heading.value}</Text8>
<Text2 regular color={vars.colors.textSecondary}>
{heading.text}
</Text2>
</Inline>
{description && (
<Text2 regular color={vars.colors.textSecondary}>
{description}
</Text2>
)}
</Stack>
</div>
);
};