react-toolbox/spec/components/progress.jsx

58 lines
1.3 KiB
React
Raw Normal View History

2015-09-21 11:01:52 +03:00
/* global React */
import ProgressBar from '../../components/progress_bar';
export default React.createClass({
displayName: 'ProgressBarTest',
getInitialState () {
return {
progress: 0,
buffer: 10
};
},
componentWillMount () {
this.simulateProgress();
},
simulateProgress () {
setTimeout(() => {
if (this.state.progress < 100) {
this.increaseProgress();
if (this.state.progress > this.state.buffer) this.increaseBuffer();
} else {
this.replaceState(this.getInitialState());
}
this.simulateProgress();
}, (Math.random() * 1 + 1) * 1000);
},
increaseProgress () {
this.setState({
progress: Math.random() * 30 + this.state.progress
});
},
increaseBuffer () {
this.setState({
buffer: Math.random() * (100 - this.state.progress) + this.state.progress
});
},
render () {
return (
<section>
<h2>Progress bars</h2>
<p>Determinate</p>
<ProgressBar mode="determinate" value={this.state.progress} buffer={this.state.buffer}/>
<p>Indeterminate...</p>
<ProgressBar mode="indeterminate"/>
<p>Circular</p>
<ProgressBar type="circular" mode="indeterminate"/>
</section>
);
}
});