2015-06-11 13:23:02 -04:00
|
|
|
var React = require('react');
|
|
|
|
|
2015-06-19 07:53:48 -04:00
|
|
|
var ProgressBarController = require("./../molecules/ProgressBar");
|
|
|
|
|
2015-06-11 13:23:02 -04:00
|
|
|
module.exports = React.createClass({
|
2015-06-19 07:53:48 -04:00
|
|
|
mixins: [ProgressBarController],
|
2015-06-11 13:23:02 -04:00
|
|
|
|
|
|
|
render: function() {
|
|
|
|
// Would use an HTML5 progress tag but if that doesn't animate if you
|
|
|
|
// use the HTML attributes rather than styles
|
|
|
|
var progressStyle = {
|
|
|
|
width: ((this.props.value / this.props.max) * 100)+"%"
|
|
|
|
};
|
|
|
|
return (
|
|
|
|
<div className="mx_ProgressBar"><div className="mx_ProgressBar_fill" style={progressStyle}></div></div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|