2019-04-21 12:09:52 +02:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Motion from 'flavours/glitch/util/optional_motion';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
|
|
|
import Icon from 'flavours/glitch/components/icon';
|
|
|
|
|
|
|
|
export default class UploadProgress extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
active: PropTypes.bool,
|
|
|
|
progress: PropTypes.number,
|
2019-08-19 20:53:28 +02:00
|
|
|
icon: PropTypes.string.isRequired,
|
|
|
|
message: PropTypes.node.isRequired,
|
2019-04-21 12:09:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
2019-08-19 20:53:28 +02:00
|
|
|
const { active, progress, icon, message } = this.props;
|
2019-04-21 12:09:52 +02:00
|
|
|
|
|
|
|
if (!active) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='composer--upload_form--progress'>
|
2019-09-09 15:28:45 +02:00
|
|
|
<Icon id={icon} />
|
2019-04-21 12:09:52 +02:00
|
|
|
|
|
|
|
<div className='message'>
|
2019-08-19 20:53:28 +02:00
|
|
|
{message}
|
2019-04-21 12:09:52 +02:00
|
|
|
|
|
|
|
<div className='backdrop'>
|
|
|
|
<Motion defaultStyle={{ width: 0 }} style={{ width: spring(progress) }}>
|
|
|
|
{({ width }) =>
|
|
|
|
(<div className='tracker' style={{ width: `${width}%` }}
|
|
|
|
/>)
|
|
|
|
}
|
|
|
|
</Motion>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|