mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1) Add server mode validation in the binary path. 2) Updated preferences tree rendering to avoid using the ReactDOM render. 3) Updated CSS for keyboard shortcuts checkbox border makes it consistent with input box border. 4) Fixed jasmine test case and improved code coverage. 5) Fixed SonarQube issues. 6) Added validation to disable "Maximum column with" option if "Column sized by" option is set to "Column name" in Query Tool -> Result grid. 7) Updated documentation with the latest screenshots. 8) Correct typo in the documentation. Fixes #7261 refs #7149
89 lines
2.4 KiB
JavaScript
89 lines
2.4 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2022, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import gettext from 'sources/gettext';
|
|
import _ from 'lodash';
|
|
import { FormGroup, makeStyles, Grid, Typography } from '@material-ui/core';
|
|
import React from 'react';
|
|
import { InputText } from './FormComponents';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const useStyles = makeStyles(() => ({
|
|
formControlLabel: {
|
|
padding: '3px',
|
|
},
|
|
formInput: {
|
|
marginLeft: '5px'
|
|
},
|
|
formCheckboxControl: {
|
|
padding: '3px',
|
|
border: '1px solid',
|
|
borderRadius: '0.25rem',
|
|
},
|
|
formGroup: {
|
|
padding: '5px'
|
|
},
|
|
contentTextAlign: {
|
|
textAlign: 'center'
|
|
},
|
|
contentStyle: {
|
|
paddingLeft: 10,
|
|
}
|
|
}));
|
|
|
|
export default function QueryThresholds({ value, onChange }) {
|
|
const classes = useStyles();
|
|
const warningCid = _.uniqueId('c');
|
|
const warninghelpid = `h${warningCid}`;
|
|
const alertCid = _.uniqueId('c');
|
|
const alerthelpid = `h${alertCid}`;
|
|
|
|
const onWarningChange = (val) => {
|
|
let new_val = { ...value };
|
|
new_val['warning'] = val;
|
|
onChange(new_val);
|
|
};
|
|
|
|
const onAlertChange = (val) => {
|
|
let new_val = { ...value };
|
|
new_val['alert'] = val;
|
|
onChange(new_val);
|
|
};
|
|
|
|
return (
|
|
<FormGroup>
|
|
<Grid
|
|
container
|
|
direction="row"
|
|
alignItems="center"
|
|
>
|
|
<Grid item lg={2} md={2} sm={2} xs={12}>
|
|
<Typography>{gettext('Warning')}</Typography>
|
|
</Grid>
|
|
<Grid item lg={2} md={2} sm={2} xs={12}>
|
|
<InputText cid={warningCid} helpid={warninghelpid} type='numeric' value={value?.warning} onChange={onWarningChange} />
|
|
</Grid>
|
|
<Grid item lg={2} md={2} sm={2} xs={12} className={classes.contentTextAlign}>
|
|
<Typography>{gettext('Alert')}</Typography>
|
|
</Grid>
|
|
<Grid item lg={2} md={2} sm={2} xs={12}>
|
|
<InputText cid={alertCid} helpid={alerthelpid} type='numeric' value={value?.alert} onChange={onAlertChange} />
|
|
</Grid>
|
|
<Grid item lg={4} md={4} sm={4} xs={12} className={classes.contentStyle}>
|
|
<Typography>{gettext('(in minuts)')}</Typography>
|
|
</Grid>
|
|
</Grid>
|
|
</FormGroup >
|
|
);
|
|
}
|
|
|
|
QueryThresholds.propTypes = {
|
|
value: PropTypes.object,
|
|
onChange: PropTypes.func,
|
|
}; |