mirror of https://github.com/vector-im/riot-web
20 lines
648 B
JavaScript
20 lines
648 B
JavaScript
var React = require('react');
|
|
|
|
var ProgressBarController = require("../../../../src/controllers/molecules/ProgressBar");
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'ProgressBar',
|
|
mixins: [ProgressBarController],
|
|
|
|
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>
|
|
);
|
|
}
|
|
});
|