mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
Move and merge ProgressBar
This commit is contained in:
parent
fc7707971e
commit
75afc3a7de
@ -18,9 +18,21 @@ limitations under the License.
|
|||||||
|
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = React.createClass({
|
||||||
|
displayName: 'ProgressBar',
|
||||||
propTypes: {
|
propTypes: {
|
||||||
value: React.PropTypes.number,
|
value: React.PropTypes.number,
|
||||||
max: React.PropTypes.number
|
max: React.PropTypes.number
|
||||||
},
|
},
|
||||||
};
|
|
||||||
|
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user