Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathAlert.js
More file actions
Latest commit
101 lines (93 loc) · 2.31 KB
/
Copy pathAlert.js
File metadata and controls
101 lines (93 loc) · 2.31 KB
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
importReactfrom'react';
importPropTypesfrom'prop-types';
importclassNamesfrom'classnames';
import{mapToCssModules,tagPropType}from'./utils';
importFadefrom'./Fade';
constpropTypes={
/** 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),
};
functionAlert(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;
constclasses=mapToCssModules(
classNames(className,'alert',`alert-${color}`,{
'alert-dismissible': toggle,
}),
cssModule,
);
constcloseClasses=mapToCssModules(
classNames('btn-close',closeClassName),
cssModule,
);
constalertTransition={
...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;
exportdefaultAlert;