import React from 'react';
import PropTypes from 'prop-types';
import { Modal, ModalHeader, ModalBody } from 'reactstrap';
import { gettext, fileServerRoot } from '../../utils/constants';
import { seafileAPI } from '../../utils/seafile-api';
import { Utils } from '../../utils/utils';
import Loading from '../loading';
const propTypes = {
token: PropTypes.string,
path: PropTypes.string.isRequired,
repoID: PropTypes.string,
target: PropTypes.oneOfType([
PropTypes.string,
PropTypes.array
]),
toggleDialog: PropTypes.func.isRequired
};
let interval;
class ZipDownloadDialog extends React.Component {
constructor(props) {
super(props);
this.state = {
isLoading: true,
errorMsg: '',
zipProgress: null
};
}
componentDidMount() {
const { token, path, repoID, target } = this.props;
let getZipTask;
if (token) {
getZipTask = target.length ?
seafileAPI.getShareLinkDirentsZipTask(token, path, target) :
seafileAPI.getShareLinkZipTask(token, path);
} else {
getZipTask = seafileAPI.zipDownload(repoID, path, target);
}
getZipTask.then((res) => {
const zipToken = res.data['zip_token'];
this.setState({
isLoading: false,
errorMsg: '',
zipToken: zipToken
});
this.queryZipProgress();
interval = setInterval(this.queryZipProgress, 1000);
}).catch((error) => {
let errorMsg = Utils.getErrorMsg(error);
this.setState({
isLoading: false,
errorMsg: errorMsg
});
});
}
queryZipProgress = () => {
const zipToken = this.state.zipToken;
seafileAPI.queryZipProgress(zipToken).then((res) => {
const data = res.data;
this.setState({
zipProgress: data.total == 0 ? '100%' : (data.zipped/data.total*100).toFixed(2) + '%'
});
if (data['total'] == data['zipped']) {
clearInterval(interval);
this.props.toggleDialog();
location.href = `${fileServerRoot}zip/${zipToken}`;
}
}).catch((error) => {
clearInterval(interval);
let errorMsg = Utils.getErrorMsg(error);
this.setState({
isLoading: false,
errorMsg: errorMsg
});
});
}
cancelZipTask = () => {
const zipToken = this.state.zipToken;
seafileAPI.cancelZipTask(zipToken).then((res) => {
// do nothing
}).catch((error) => {
// do nothing
});
}
toggleDialog = () => {
const zipProgress = this.state.zipProgress;
if (zipProgress && zipProgress != '100%') {
clearInterval(interval);
this.cancelZipTask();
}
this.props.toggleDialog();
}
render() {
return (
{errorMsg}
; } return{`${gettext('Packaging...')} ${zipProgress}`}
; } } ZipDownloadDialog.propTypes = propTypes; export default ZipDownloadDialog;