2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-05-20 12:58:13 +00:00
|
|
|
import Motion from 'react-motion/lib/Motion';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-03-24 02:50:30 +00:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class UploadProgress extends React.PureComponent {
|
2017-03-24 02:50:30 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
active: PropTypes.bool,
|
2017-05-20 15:31:47 +00:00
|
|
|
progress: PropTypes.number,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-03-24 02:50:30 +00:00
|
|
|
render () {
|
|
|
|
const { active, progress } = this.props;
|
|
|
|
|
|
|
|
if (!active) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='upload-progress'>
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='upload-progress__icon'>
|
2017-03-24 02:50:30 +00:00
|
|
|
<i className='fa fa-upload' />
|
|
|
|
</div>
|
|
|
|
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='upload-progress__message'>
|
2017-03-24 02:50:30 +00:00
|
|
|
<FormattedMessage id='upload_progress.label' defaultMessage='Uploading...' />
|
|
|
|
|
|
|
|
<div className='upload-progress__backdrop'>
|
|
|
|
<Motion defaultStyle={{ width: 0 }} style={{ width: spring(progress) }}>
|
|
|
|
{({ width }) =>
|
|
|
|
<div className='upload-progress__tracker' style={{ width: `${width}%` }} />
|
|
|
|
}
|
|
|
|
</Motion>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|