1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 15:09:14 +00:00

sysadmin recontruct devices page (#3925)

This commit is contained in:
Leo
2019-08-27 21:48:01 +08:00
committed by Daniel Pan
parent a36922ce5d
commit 298880cf89
13 changed files with 668 additions and 11 deletions

View File

@@ -0,0 +1,55 @@
import React from 'react';
import PropTypes from 'prop-types';
import { gettext } from '../../../utils/constants';
import { Button, Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap';
const propTypes = {
unlinkDevice: PropTypes.func.isRequired,
toggleDialog: PropTypes.func.isRequired
};
class SysAdminUnlinkDevice extends React.Component {
constructor(props) {
super(props);
this.state = {
inputChecked: false
};
}
handleInputChange = (e) => {
this.setState({
inputChecked: e.target.checked
});
}
unlinkDevice = () => {
this.props.toggleDialog();
this.props.unlinkDevice(this.state.inputChecked);
}
render() {
const { inputChecked } = this.state;
const toggle = this.props.toggleDialog;
return (
<Modal isOpen={true} toggle={toggle}>
<ModalHeader toggle={toggle}>{gettext('Unlink device')}</ModalHeader>
<ModalBody>
<p>{gettext('Are you sure you want to unlink this device?')}</p>
<div className="d-flex align-items-center">
<input id="delete-files" className="mr-1" type="checkbox" checked={inputChecked} onChange={this.handleInputChange} />
<label htmlFor="delete-files" className="m-0">{gettext('Delete files from this device the next time it comes online.')}</label>
</div>
</ModalBody>
<ModalFooter>
<Button color="secondary" onClick={toggle}>{gettext('Cancel')}</Button>
<Button color="primary" onClick={this.unlinkDevice}>{gettext('Unlink')}</Button>
</ModalFooter>
</Modal>
);
}
}
SysAdminUnlinkDevice.propTypes = propTypes;
export default SysAdminUnlinkDevice;