2015-12-02 21:16:16 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-12-20 03:45:24 +03:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2015-12-02 21:16:16 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-08-30 12:34:59 +03:00
|
|
|
import React from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2019-04-08 19:53:39 +03:00
|
|
|
import ContentMessages from '../../ContentMessages';
|
2020-05-14 05:41:41 +03:00
|
|
|
import dis from "../../dispatcher/dispatcher";
|
2019-12-21 00:41:07 +03:00
|
|
|
import filesize from "filesize";
|
2017-06-07 13:40:46 +03:00
|
|
|
import { _t } from '../../languageHandler';
|
2015-12-02 21:16:16 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
export default class UploadBar extends React.Component {
|
|
|
|
static propTypes = {
|
2017-12-26 04:03:18 +03:00
|
|
|
room: PropTypes.object,
|
2020-08-29 14:14:16 +03:00
|
|
|
};
|
2015-12-02 21:16:16 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
componentDidMount() {
|
2017-03-16 17:19:17 +03:00
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
2015-12-02 21:16:16 +03:00
|
|
|
this.mounted = true;
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
2015-12-02 21:16:16 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
componentWillUnmount() {
|
2015-12-02 21:16:16 +03:00
|
|
|
this.mounted = false;
|
2017-03-16 17:19:17 +03:00
|
|
|
dis.unregister(this.dispatcherRef);
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
2015-12-02 21:16:16 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
onAction = payload => {
|
2015-12-02 21:16:16 +03:00
|
|
|
switch (payload.action) {
|
|
|
|
case 'upload_progress':
|
|
|
|
case 'upload_finished':
|
2019-04-08 19:53:39 +03:00
|
|
|
case 'upload_canceled':
|
2015-12-02 21:16:16 +03:00
|
|
|
case 'upload_failed':
|
|
|
|
if (this.mounted) this.forceUpdate();
|
|
|
|
break;
|
|
|
|
}
|
2020-08-29 14:14:16 +03:00
|
|
|
};
|
2015-12-02 21:16:16 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
render() {
|
2019-04-01 18:42:41 +03:00
|
|
|
const uploads = ContentMessages.sharedInstance().getCurrentUploads();
|
2016-04-14 21:11:20 +03:00
|
|
|
|
|
|
|
// for testing UI... - also fix up the ContentMessages.getCurrentUploads().length
|
|
|
|
// check in RoomView
|
|
|
|
//
|
|
|
|
// uploads = [{
|
|
|
|
// roomId: this.props.room.roomId,
|
|
|
|
// loaded: 123493,
|
|
|
|
// total: 347534,
|
|
|
|
// fileName: "testing_fooble.jpg",
|
|
|
|
// }];
|
|
|
|
|
2015-12-02 21:16:16 +03:00
|
|
|
if (uploads.length == 0) {
|
2017-01-20 17:22:27 +03:00
|
|
|
return <div />;
|
2015-12-02 21:16:16 +03:00
|
|
|
}
|
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
let upload;
|
|
|
|
for (let i = 0; i < uploads.length; ++i) {
|
2015-12-02 21:16:16 +03:00
|
|
|
if (uploads[i].roomId == this.props.room.roomId) {
|
|
|
|
upload = uploads[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!upload) {
|
2017-01-20 17:22:27 +03:00
|
|
|
return <div />;
|
2015-12-02 21:16:16 +03:00
|
|
|
}
|
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const innerProgressStyle = {
|
|
|
|
width: ((upload.loaded / (upload.total || 1)) * 100) + '%',
|
2015-12-02 21:16:16 +03:00
|
|
|
};
|
2017-10-11 19:56:17 +03:00
|
|
|
let uploadedSize = filesize(upload.loaded);
|
|
|
|
const totalSize = filesize(upload.total);
|
2017-01-20 17:22:27 +03:00
|
|
|
if (uploadedSize.replace(/^.* /, '') === totalSize.replace(/^.* /, '')) {
|
2015-12-02 21:16:16 +03:00
|
|
|
uploadedSize = uploadedSize.replace(/ .*/, '');
|
|
|
|
}
|
|
|
|
|
2017-06-07 13:40:46 +03:00
|
|
|
// MUST use var name 'count' for pluralization to kick in
|
2020-10-30 21:18:17 +03:00
|
|
|
const uploadText = _t(
|
|
|
|
"Uploading %(filename)s and %(count)s others", {filename: upload.fileName, count: (uploads.length - 1)},
|
|
|
|
);
|
2015-12-02 21:16:16 +03:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="mx_UploadBar">
|
|
|
|
<div className="mx_UploadBar_uploadProgressOuter">
|
|
|
|
<div className="mx_UploadBar_uploadProgressInner" style={innerProgressStyle}></div>
|
|
|
|
</div>
|
2019-01-11 04:37:28 +03:00
|
|
|
<img className="mx_UploadBar_uploadIcon mx_filterFlipColor" src={require("../../../res/img/fileicon.png")} width="17" height="22" />
|
|
|
|
<img className="mx_UploadBar_uploadCancel mx_filterFlipColor" src={require("../../../res/img/cancel.svg")} width="18" height="18"
|
2019-04-01 18:42:41 +03:00
|
|
|
onClick={function() { ContentMessages.sharedInstance().cancelUpload(upload.promise); }}
|
2015-12-02 21:16:16 +03:00
|
|
|
/>
|
|
|
|
<div className="mx_UploadBar_uploadBytes">
|
|
|
|
{ uploadedSize } / { totalSize }
|
|
|
|
</div>
|
2017-10-11 19:56:17 +03:00
|
|
|
<div className="mx_UploadBar_uploadFilename">{ uploadText }</div>
|
2015-12-02 21:16:16 +03:00
|
|
|
</div>
|
|
|
|
);
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
|
|
|
}
|