mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-16 08:16:55 +00:00
55 lines
1.8 KiB
JavaScript
55 lines
1.8 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { gettext } from '../../utils/constants';
|
|
import { Modal, ModalBody, ModalFooter, Button } from 'reactstrap';
|
|
import SeahubModalHeader from '@/components/common/seahub-modal-header';
|
|
|
|
const propTypes = {
|
|
currentResumableFile: PropTypes.object.isRequired,
|
|
replaceRepetitionFile: PropTypes.func.isRequired,
|
|
uploadFile: PropTypes.func.isRequired,
|
|
cancelFileUpload: PropTypes.func.isRequired,
|
|
};
|
|
|
|
class UploadRemindDialog extends React.Component {
|
|
|
|
toggle = (e) => {
|
|
e.nativeEvent.stopImmediatePropagation();
|
|
this.props.cancelFileUpload();
|
|
};
|
|
|
|
replaceRepetitionFile = (e) => {
|
|
e.nativeEvent.stopImmediatePropagation();
|
|
this.props.replaceRepetitionFile();
|
|
};
|
|
|
|
uploadFile = (e) => {
|
|
e.nativeEvent.stopImmediatePropagation();
|
|
this.props.uploadFile();
|
|
};
|
|
|
|
render() {
|
|
const { fileName } = this.props.currentResumableFile;
|
|
return (
|
|
<Modal isOpen={true} toggle={this.toggle}>
|
|
<SeahubModalHeader toggle={this.toggle}>
|
|
<span>{gettext('Replace file {filename}?').replace('{filename}', fileName)}</span>
|
|
</SeahubModalHeader>
|
|
<ModalBody>
|
|
<p>{gettext('A file with the same name already exists in this folder.')}</p>
|
|
<p>{gettext('Replacing it will overwrite its content.')}</p>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<Button color="primary" onClick={this.replaceRepetitionFile}>{gettext('Replace')}</Button>
|
|
<Button color="primary" onClick={this.uploadFile}>{gettext('Don\'t replace')}</Button>
|
|
<Button color="secondary" onClick={this.toggle}>{gettext('Cancel')}</Button>
|
|
</ModalFooter>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
UploadRemindDialog.propTypes = propTypes;
|
|
|
|
export default UploadRemindDialog;
|