forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpinner.js
More file actions
74 lines (67 loc) · 1.55 KB
/
Spinner.js
File metadata and controls
74 lines (67 loc) · 1.55 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
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { mapToCssModules, tagPropType } from './utils';
const propTypes = {
/** Set a custom element for this component */
tag: tagPropType,
/** Change animation of spinner */
type: PropTypes.oneOf(['border', 'grow']),
/** Change size of spinner */
size: PropTypes.oneOf(['sm']),
/** Change color of spinner */
color: PropTypes.oneOf([
'primary',
'secondary',
'success',
'danger',
'warning',
'info',
'light',
'dark',
]),
/** Add custom class */
className: PropTypes.string,
/** Change existing className with a new className */
cssModule: PropTypes.object,
/** Pass children so this component can wrap the child elements */
children: PropTypes.string,
};
const defaultProps = {
tag: 'div',
type: 'border',
children: 'Loading...',
};
function Spinner(props) {
const {
className,
cssModule,
type,
size,
color,
children,
tag: Tag,
...attributes
} = props;
const classes = mapToCssModules(
classNames(
className,
size ? `spinner-${type}-${size}` : false,
`spinner-${type}`,
color ? `text-${color}` : false,
),
cssModule,
);
return (
<Tag role="status" {...attributes} className={classes}>
{children && (
<span className={mapToCssModules('visually-hidden', cssModule)}>
{children}
</span>
)}
</Tag>
);
}
Spinner.propTypes = propTypes;
Spinner.defaultProps = defaultProps;
export default Spinner;