-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Alert.js
101 lines (93 loc) · 2.31 KB
/
Alert.js
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
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { mapToCssModules, tagPropType } from './utils';
import Fade from './Fade';
const propTypes = {
/** Pass children so this component can wrap the child elements */
children: PropTypes.node,
/** Add custom class */
className: PropTypes.string,
/** Add custom class for close button */
closeClassName: PropTypes.string,
/** Aria label for close button */
closeAriaLabel: PropTypes.string,
/** Change color of alert */
color: PropTypes.string,
/** Change existing className with a new className */
cssModule: PropTypes.object,
/** Toggle fade animation */
fade: PropTypes.bool,
innerRef: PropTypes.oneOfType([
PropTypes.object,
PropTypes.string,
PropTypes.func,
]),
/** Control visibility state of Alert */
isOpen: PropTypes.bool,
/** Set a custom element for this component */
tag: tagPropType,
/** Function to toggle visibility */
toggle: PropTypes.func,
/** Props to be passed to `Fade` to modify transition */
transition: PropTypes.shape(Fade.propTypes),
};
function Alert(props) {
const {
className,
closeClassName,
closeAriaLabel = 'Close',
cssModule,
tag: Tag = 'div',
color = 'success',
isOpen = true,
toggle,
children,
transition = {
...Fade.defaultProps,
unmountOnExit: true,
},
fade = true,
innerRef,
...attributes
} = props;
const classes = mapToCssModules(
classNames(className, 'alert', `alert-${color}`, {
'alert-dismissible': toggle,
}),
cssModule,
);
const closeClasses = mapToCssModules(
classNames('btn-close', closeClassName),
cssModule,
);
const alertTransition = {
...Fade.defaultProps,
...transition,
baseClass: fade ? transition.baseClass : '',
timeout: fade ? transition.timeout : 0,
};
return (
<Fade
{...attributes}
{...alertTransition}
tag={Tag}
className={classes}
in={isOpen}
role="alert"
innerRef={innerRef}
>
{toggle ? (
<button
type="button"
className={closeClasses}
aria-label={closeAriaLabel}
onClick={toggle}
/>
) : null}
{children}
</Fade>
);
}
Alert.propTypes = propTypes;
export default Alert;