2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
import { PureComponent } from 'react';
|
|
|
|
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2017-05-20 22:58:13 +10:00
|
|
|
import spring from 'react-motion/lib/spring';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2023-05-09 11:11:56 +10:00
|
|
|
import { Icon } from 'mastodon/components/icon';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import Motion from '../../ui/util/optional_motion';
|
2017-03-24 13:50:30 +11:00
|
|
|
|
2023-05-23 18:52:27 +10:00
|
|
|
export default class UploadProgress extends PureComponent {
|
2017-03-24 13:50:30 +11:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
static propTypes = {
|
|
|
|
active: PropTypes.bool,
|
2017-05-21 01:31:47 +10:00
|
|
|
progress: PropTypes.number,
|
2022-10-30 05:05:53 +11:00
|
|
|
isProcessing: PropTypes.bool,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
|
|
|
|
2017-03-24 13:50:30 +11:00
|
|
|
render () {
|
2022-10-30 05:05:53 +11:00
|
|
|
const { active, progress, isProcessing } = this.props;
|
2017-03-24 13:50:30 +11:00
|
|
|
|
|
|
|
if (!active) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-10-30 05:05:53 +11:00
|
|
|
let message;
|
|
|
|
|
|
|
|
if (isProcessing) {
|
|
|
|
message = <FormattedMessage id='upload_progress.processing' defaultMessage='Processing…' />;
|
|
|
|
} else {
|
|
|
|
message = <FormattedMessage id='upload_progress.label' defaultMessage='Uploading…' />;
|
|
|
|
}
|
|
|
|
|
2017-03-24 13:50:30 +11:00
|
|
|
return (
|
|
|
|
<div className='upload-progress'>
|
2017-04-23 12:26:55 +10:00
|
|
|
<div className='upload-progress__icon'>
|
2022-10-30 05:05:53 +11:00
|
|
|
<Icon id='upload' />
|
2017-03-24 13:50:30 +11:00
|
|
|
</div>
|
|
|
|
|
2017-04-23 12:26:55 +10:00
|
|
|
<div className='upload-progress__message'>
|
2019-08-15 23:13:26 +10:00
|
|
|
{message}
|
2017-03-24 13:50:30 +11:00
|
|
|
|
|
|
|
<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-22 04:05:35 +10:00
|
|
|
}
|