-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathProgressBar.jsx
67 lines (59 loc) · 1.75 KB
/
ProgressBar.jsx
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
/**
* @component
*/
import classnames from 'clsx';
import PropTypes from 'prop-types';
import React, { useMemo } from 'react';
import { CSSTransition } from 'react-transition-group';
import AutoProgressBar from './AutoProgressBar';
import { isNumber } from '../../utils/is';
/**
* An animated progress bar that can show an actions progress or an
* indeterminate state like a loading spinner.
*/
const ProgressBar = ({ children = null, value, ready = false }) => {
const className = useMemo(
() =>
classnames('cc__progress-bar', {
'cc__progress-bar--determinate': isNumber(value),
'cc__progress-bar--indeterminate': !isNumber(value),
}),
[value]
);
return (
<div className={className}>
<CSSTransition
timeout={300}
classNames="cc__progress-bar--animation-1"
in={!ready}
unmountOnExit
>
<AutoProgressBar value={value} />
</CSSTransition>
<CSSTransition
timeout={300}
classNames="cc__progress-bar--animation-2"
in={ready}
>
<div className="cc__progress-bar__text">{children}</div>
</CSSTransition>
</div>
);
};
ProgressBar.propTypes = {
/**
* The progress in percent (`0` - `100`).
*/
value: PropTypes.number,
/**
* A label that is shown beneath the progress bar.
*/
children: PropTypes.node,
/**
* When toggled on it will hide the progress bar in an animated transition
* and only show its children.
*/
ready: PropTypes.bool,
};
ProgressBar.displayName = 'ProgressBar';
export default ProgressBar;