blob: 08c718d3c27c9ed0a1101a1d64010dfedf24bb78 (
plain)
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
|
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import { LinearProgress } from '@material-ui/core';
const styles = {
root: {
flexGrow: 1,
},
};
class LinearDeterminate extends React.Component {
state = {
completed: 0,
};
componentDidMount() {
this.timer = setInterval(this.progress, 500);
}
componentWillUnmount() {
clearInterval(this.timer);
}
timer = null;
progress = () => {
const { completed } = this.state;
if (completed === 100) {
this.setState({ completed: 0 });
} else {
const diff = Math.random() * 10;
this.setState({ completed: Math.min(completed + diff, 100) });
}
};
render() {
const { classes } = this.props;
return (
<div className={classes.root}>
<LinearProgress variant="determinate" value={this.state.completed} />
<br />
<LinearProgress color="secondary" variant="determinate" value={this.state.completed} />
</div>
);
}
}
LinearDeterminate.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(LinearDeterminate);
|