1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-09 19:01:42 +00:00
Files
seahub/frontend/src/components/dialog/sysadmin-dialog/sysadmin-lib-history-setting-dialog.js
llj a4e2e4aba4 [keypress] replaced 'onKeyPress' with 'onKeyDown' as 'keypress' is de… (#5764)
* [keypress] replaced 'onKeyPress' with 'onKeyDown' as 'keypress' is deprecated

* cleaned up code
2023-11-14 20:25:25 +08:00

154 lines
4.7 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import { Button, Modal, ModalHeader, ModalBody, ModalFooter, Form, FormGroup, Label, Input, Alert } from 'reactstrap';
import { gettext } from '../../../utils/constants';
import { seafileAPI } from '../../../utils/seafile-api';
import { Utils } from '../../../utils/utils';
import toaster from '../../toast';
const propTypes = {
itemName: PropTypes.string.isRequired,
toggleDialog: PropTypes.func.isRequired,
repoID: PropTypes.string.isRequired,
};
class SysAdminLibHistorySettingDialog extends React.Component {
constructor(props) {
super(props);
this.state = {
keepDays: -1,
expireDays: 30,
disabled: true,
allHistory: true,
noHistory: false,
autoHistory: false,
errorInfo: ''
};
}
componentDidMount() {
seafileAPI.sysAdminGetRepoHistorySetting(this.props.repoID).then(res => {
this.setState({
keepDays: res.data.keep_days,
allHistory: res.data.keep_days < 0 ? true : false,
noHistory: res.data.keep_days === 0 ? true : false,
autoHistory: res.data.keep_days > 0 ? true : false,
disabled: res.data.keep_days > 0 ? false : true,
expireDays: res.data.keep_days > 0 ? res.data.keep_days : 30,
});
}).catch(error => {
let errMessage = Utils.getErrorMsg(error);
toaster.danger(errMessage);
});
}
submit = () => {
let days = this.state.keepDays;
if (this.state.autoHistory) {
days = this.state.expireDays;
}
let repoID = this.props.repoID;
let reg = /^-?\d+$/;
let flag = reg.test(days);
if (flag) {
let message = gettext('Successfully set library history.');
seafileAPI.sysAdminUpdateRepoHistorySetting(repoID, days).then(res => {
toaster.success(message);
this.setState({keepDays: res.data.keep_days});
this.props.toggleDialog();
}).catch(error => {
let errMessage = Utils.getErrorMsg(error);
toaster.danger(errMessage);
});
} else {
this.setState({
errorInfo: gettext('Please enter a non-negative integer'),
});
}
};
handleKeyDown = (e) => {
if (e.key === 'Enter') {
this.submit();
e.preventDefault();
}
};
onChange = (e) => {
let num = e.target.value;
this.setState({
keepDays: num,
expireDays: num,
});
};
setLimitDays = (type) => {
if (type === 'allHistory') {
this.setState({
keepDays: -1,
});
} else if (type === 'noHistory') {
this.setState({
keepDays: 0,
});
} else {
this.setState({
disabled: false
});
}
this.setState({
allHistory: type === 'allHistory' ? true : false,
noHistory: type === 'noHistory' ? true : false,
autoHistory: type === 'autoHistory' ? true : false,
});
};
render() {
const itemName = this.props.itemName;
return (
<Modal isOpen={true}>
<ModalHeader toggle={this.props.toggleDialog}>
<span className="op-target" title={itemName}>{itemName}</span>{' '}
{gettext('History Setting')}
</ModalHeader>
<ModalBody>
<Form>
<FormGroup check>
<Input type="radio" name="radio1" checked={this.state.allHistory} onChange={() => {this.setLimitDays('allHistory');}}/>{' '}
<Label>{gettext('Keep full history')}</Label>
</FormGroup>
<FormGroup check>
<Input type="radio" name="radio1" checked={this.state.noHistory} onChange={() =>{this.setLimitDays('noHistory');}}/>{' '}
<Label>{gettext('Don\'t keep history')}</Label>
</FormGroup>
<FormGroup check>
<Input type="radio" name="radio1" checked={this.state.autoHistory} onChange={() =>{this.setLimitDays('autoHistory');}}/>{' '}
<Label>{gettext('Only keep a period of history:')}</Label>
<Input
type="text"
className="expire-input"
value={this.state.expireDays}
onChange={this.onChange}
disabled={this.state.disabled}
onKeyDown={this.handleKeyDown}
/>{' '}
<Label><span>{gettext('days')}</span></Label>
</FormGroup>
{this.state.errorInfo && <Alert color="danger">{this.state.errorInfo}</Alert>}
</Form>
</ModalBody>
<ModalFooter>
<Button color="secondary" onClick={this.props.toggleDialog}>{gettext('Cancel')}</Button>
<Button color="primary" onClick={this.submit}>{gettext('Submit')}</Button>
</ModalFooter>
</Modal>
);
}
}
SysAdminLibHistorySettingDialog.propTypes = propTypes;
export default SysAdminLibHistorySettingDialog;