-
Notifications
You must be signed in to change notification settings - Fork 839
/
Copy pathcard.tsx
369 lines (318 loc) Β· 9.2 KB
/
card.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import React, { FunctionComponent, ReactElement, ReactNode } from 'react';
import classNames from 'classnames';
import { CommonProps, keysOf } from '../common';
import { getSecureRelForTarget } from '../../services';
import { EuiText } from '../text';
import { EuiTitle } from '../title';
import { EuiBetaBadge } from '../badge/beta_badge';
import { EuiIconProps } from '../icon';
import {
EuiCardSelect,
EuiCardSelectProps,
euiCardSelectableColor,
} from './card_select';
import { htmlIdGenerator } from '../../services/accessibility';
type CardAlignment = 'left' | 'center' | 'right';
const textAlignToClassNameMap: { [alignment in CardAlignment]: string } = {
left: 'euiCard--leftAligned',
center: 'euiCard--centerAligned',
right: 'euiCard--rightAligned',
};
export const ALIGNMENTS = keysOf(textAlignToClassNameMap);
type CardLayout = 'vertical' | 'horizontal';
const layoutToClassNameMap: { [layout in CardLayout]: string } = {
vertical: '',
horizontal: 'euiCard--horizontal',
};
export const LAYOUT_ALIGNMENTS = keysOf(layoutToClassNameMap);
type CardDisplay = 'panel' | 'plain';
const displayToClassNameMap: { [display in CardDisplay]: string } = {
panel: '',
plain: 'euiCard--plain',
};
export const DISPLAYS = keysOf(displayToClassNameMap);
type EuiCardProps = Omit<CommonProps, 'aria-label'> & {
/**
* Card's are required to have at least a title and description
*/
title: NonNullable<ReactNode>;
/**
* Determines the title's heading element
*/
titleElement?: 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'span';
/**
* Determines the title's size, matching that of EuiTitle.
* Though, card titles can't be too large or small relative to the description text.
*/
titleSize?: 's' | 'xs';
/**
* Card's are required to have at least a title and description
*/
description: NonNullable<ReactNode>;
/**
* Requires a <EuiIcon> node
*/
icon?: ReactElement<EuiIconProps>;
/**
* Accepts a url in string form
*/
image?: string;
/**
* Content to be rendered between the description and the footer
*/
children?: ReactNode;
/**
* Accepts any combination of elements
*/
footer?: ReactNode;
/**
* Use only if you want to forego a button in the footer and make the whole card clickable
*/
onClick?:
| React.MouseEventHandler<HTMLButtonElement>
| React.MouseEventHandler<HTMLAnchorElement>;
isDisabled?: boolean;
href?: string;
target?: string;
rel?: string;
/**
* Changes alignment of the title and description
*/
textAlign?: CardAlignment;
/**
* Change to "horizontal" if you need the icon to be left of the content
*/
layout?: CardLayout;
/**
* Add a badge to the card to label it as "Beta" or other non-GA state
*/
betaBadgeLabel?: string;
/**
* Add a description to the beta badge (will appear in a tooltip)
*/
betaBadgeTooltipContent?: ReactNode;
/**
* Optional title will be supplied as tooltip title or title attribute otherwise the label will be used
*/
betaBadgeTitle?: string;
/**
* Adds a button to the bottom of the card to allow for in-place selection
*/
selectable?: EuiCardSelectProps;
/**
* Visual display of the card. Display as 'panel' or 'plain'.
* Selectable cards will always display as 'panel'.
*/
display?: CardDisplay;
};
export const EuiCard: FunctionComponent<EuiCardProps> = ({
className,
description,
isDisabled,
title,
titleElement = 'span',
titleSize = 's',
icon,
image,
children,
footer,
onClick,
href,
rel,
target,
textAlign = 'center',
betaBadgeLabel,
betaBadgeTooltipContent,
betaBadgeTitle,
layout = 'vertical',
selectable,
display = 'panel',
...rest
}) => {
/**
* For a11y, we simulate the same click that's provided on the title when clicking the whole card
* without having to make the whole card a button or anchor tag.
* *Card Accessibility: The redundant click event https://inclusive-components.design/cards/*
*/
let link: HTMLAnchorElement | HTMLButtonElement | null = null;
const outerOnClick = (e: React.MouseEvent<HTMLDivElement>) => {
if (link && link !== e.target) {
link.click();
}
};
if (layout === 'horizontal') {
if (image || footer) {
throw new Error(
"EuiCard: layout = horizontal' cannot be used in conjunction with 'image', 'footer', or 'textAlign'."
);
}
}
const selectableColorClass = selectable
? `euiCard--isSelectable--${euiCardSelectableColor(
selectable.color,
selectable.isSelected
)}`
: undefined;
const classes = classNames(
'euiCard',
displayToClassNameMap[display],
textAlignToClassNameMap[textAlign],
layoutToClassNameMap[layout],
{
'euiCard--isClickable':
onClick || href || (selectable && !selectable.isDisabled),
'euiCard--hasBetaBadge': betaBadgeLabel,
'euiCard--hasIcon': icon,
'euiCard--hasChildren': children,
'euiCard--isSelectable': selectable,
'euiCard-isSelected': selectable && selectable.isSelected,
'euiCard-isDisabled': isDisabled,
},
selectableColorClass,
className
);
const ariaId = htmlIdGenerator()();
/**
* Top area containing image, icon or both
*/
let imageNode;
if (image && layout === 'vertical') {
imageNode = <img className="euiCard__image" src={image} alt="" />;
}
let iconNode;
if (icon) {
iconNode = React.cloneElement(icon, {
className: classNames(icon.props.className, 'euiCard__icon'),
});
}
let optionalCardTop;
if (imageNode || iconNode) {
optionalCardTop = (
<div className="euiCard__top">
{imageNode}
{iconNode}
</div>
);
}
/**
* Optional EuiBetaBadge
*/
let optionalBetaBadge;
let optionalBetaBadgeID = '';
if (betaBadgeLabel) {
optionalBetaBadgeID = `${ariaId}BetaBadge`;
optionalBetaBadge = (
<span className="euiCard__betaBadgeWrapper">
<EuiBetaBadge
id={optionalBetaBadgeID}
label={betaBadgeLabel}
title={betaBadgeTitle}
tooltipContent={betaBadgeTooltipContent}
className="euiCard__betaBadge"
/>
</span>
);
}
/**
* Optional selectable button
*/
if (selectable && isDisabled && selectable.isDisabled === undefined) {
selectable.isDisabled = isDisabled;
}
let optionalSelectButton;
if (selectable) {
optionalSelectButton = (
<EuiCardSelect
aria-describedby={`${ariaId}Title ${ariaId}Description`}
{...selectable}
buttonRef={node => {
link = node;
}}
/>
);
}
/**
* Wraps the title with the link (<a>) or button.
* This makes the title element a11y friendly and gets described by its content if its interactable.
*/
let theTitle;
if (!isDisabled && href) {
theTitle = (
<a
className="euiCard__titleAnchor"
onClick={onClick as React.MouseEventHandler<HTMLAnchorElement>}
href={href}
target={target}
aria-describedby={`${ariaId}Description`}
rel={getSecureRelForTarget({ href, target, rel })}
ref={node => {
link = node;
}}>
{title}
</a>
);
} else if (isDisabled || onClick) {
theTitle = (
<button
className="euiCard__titleButton"
onClick={onClick as React.MouseEventHandler<HTMLButtonElement>}
disabled={isDisabled}
aria-describedby={`${optionalBetaBadgeID} ${ariaId}Description`}
ref={node => {
link = node;
}}>
{title}
</button>
);
} else {
theTitle = title;
}
/**
* Convert titleElement to a capital TitleElement
*/
const TitleElement = titleElement;
return (
<div className={classes} onClick={outerOnClick} {...rest}>
{optionalCardTop}
<div className="euiCard__content">
<EuiTitle
id={`${ariaId}Title`}
className="euiCard__title"
size={titleSize}>
<TitleElement>{theTitle}</TitleElement>
</EuiTitle>
<EuiText
id={`${ariaId}Description`}
size="s"
className="euiCard__description">
<p>{description}</p>
</EuiText>
{children}
</div>
{/* Beta badge should always be after the title/description but before any footer buttons */}
{optionalBetaBadge}
{layout === 'vertical' && footer && (
<div className="euiCard__footer">{footer}</div>
)}
{optionalSelectButton}
</div>
);
};