+ client: submit retention form after confirm

This commit is contained in:
Ildar Kamalov 2019-09-26 13:16:05 +03:00
parent 6a65c79a03
commit ef1d4f5e9f
6 changed files with 107 additions and 95 deletions

View File

@ -174,7 +174,7 @@
"rule_added_to_custom_filtering_toast": "Rule added to the custom filtering rules", "rule_added_to_custom_filtering_toast": "Rule added to the custom filtering rules",
"query_log_response_status": "Status: {{value}}", "query_log_response_status": "Status: {{value}}",
"query_log_filtered": "Filtered by {{filter}}", "query_log_filtered": "Filtered by {{filter}}",
"query_log_confirm_clear": "Are you sure you want to clear the entire query log? This will also clear statistics on the dashboard.", "query_log_confirm_clear": "Are you sure you want to clear the entire query log?",
"query_log_cleared": "The query log has been successfully cleared", "query_log_cleared": "The query log has been successfully cleared",
"query_log_clear": "Clear query logs", "query_log_clear": "Clear query logs",
"query_log_retention": "Query logs retention", "query_log_retention": "Query logs retention",
@ -182,6 +182,7 @@
"query_log_configuration": "Logs configuration", "query_log_configuration": "Logs configuration",
"query_log_disabled": "The query log is disabled and can be configured in the <0>settings</0>", "query_log_disabled": "The query log is disabled and can be configured in the <0>settings</0>",
"query_log_strict_search": "Use double quotes for strict search", "query_log_strict_search": "Use double quotes for strict search",
"query_log_retention_confirm": "Are you sure you want to change query log retention? If you decrease the interval value, some data will be lost",
"source_label": "Source", "source_label": "Source",
"found_in_known_domain_db": "Found in the known domains database.", "found_in_known_domain_db": "Found in the known domains database.",
"category_label": "Category", "category_label": "Category",
@ -378,6 +379,7 @@
"statistics_retention_desc": "If you decrease the interval value, some data will be lost", "statistics_retention_desc": "If you decrease the interval value, some data will be lost",
"statistics_clear": " Clear statistics", "statistics_clear": " Clear statistics",
"statistics_clear_confirm": "Are you sure you want to clear statistics?", "statistics_clear_confirm": "Are you sure you want to clear statistics?",
"statistics_retention_confirm": "Are you sure you want to change statistics retention? If you decrease the interval value, some data will be lost",
"statistics_cleared": "Statistics successfully cleared", "statistics_cleared": "Statistics successfully cleared",
"interval_hours": "{{count}} hour", "interval_hours": "{{count}} hour",
"interval_hours_plural": "{{count}} hours", "interval_hours_plural": "{{count}} hours",

View File

@ -7,7 +7,7 @@ import flow from 'lodash/flow';
import { renderSelectField, renderRadioField, toNumber } from '../../../helpers/form'; import { renderSelectField, renderRadioField, toNumber } from '../../../helpers/form';
import { QUERY_LOG_INTERVALS_DAYS } from '../../../helpers/constants'; import { QUERY_LOG_INTERVALS_DAYS } from '../../../helpers/constants';
const getIntervalFields = (processing, t, handleChange, toNumber) => const getIntervalFields = (processing, t, toNumber) =>
QUERY_LOG_INTERVALS_DAYS.map((interval) => { QUERY_LOG_INTERVALS_DAYS.map((interval) => {
const title = const title =
interval === 1 ? t('interval_24_hour') : t('interval_days', { count: interval }); interval === 1 ? t('interval_24_hour') : t('interval_days', { count: interval });
@ -20,7 +20,6 @@ const getIntervalFields = (processing, t, handleChange, toNumber) =>
component={renderRadioField} component={renderRadioField}
value={interval} value={interval}
placeholder={title} placeholder={title}
onChange={handleChange}
normalize={toNumber} normalize={toNumber}
disabled={processing} disabled={processing}
/> />
@ -29,48 +28,56 @@ const getIntervalFields = (processing, t, handleChange, toNumber) =>
const Form = (props) => { const Form = (props) => {
const { const {
handleSubmit, handleChange, processing, t, handleSubmit, submitting, invalid, processing, processingClear, handleClear, t,
} = props; } = props;
return ( return (
<form onSubmit={handleSubmit}> <form onSubmit={handleSubmit}>
<div className="row"> <div className="form__group form__group--settings">
<div className="col-12"> <Field
<div className="form__group form__group--settings"> name="enabled"
<Field type="checkbox"
name="enabled" component={renderSelectField}
type="checkbox" placeholder={t('query_log_enable')}
component={renderSelectField} disabled={processing}
placeholder={t('query_log_enable')} />
onChange={handleChange} </div>
disabled={processing} <label className="form__label">
/> <Trans>query_log_retention</Trans>
</div> </label>
</div> <div className="form__group form__group--settings">
<div className="col-12"> <div className="custom-controls-stacked">
<label className="form__label"> {getIntervalFields(processing, t, toNumber)}
<Trans>query_log_retention</Trans>
</label>
</div>
<div className="col-12">
<div className="form__group form__group--settings">
<div className="custom-controls-stacked">
{getIntervalFields(processing, t, handleChange, toNumber)}
</div>
</div>
</div> </div>
</div> </div>
<div className="mt-5">
<button
type="submit"
className="btn btn-success btn-standard btn-large"
disabled={submitting || invalid || processing}
>
<Trans>save_btn</Trans>
</button>
<button
type="button"
className="btn btn-outline-secondary btn-standard ml-5"
onClick={() => handleClear()}
disabled={processingClear}
>
<Trans>query_log_clear</Trans>
</button>
</div>
</form> </form>
); );
}; };
Form.propTypes = { Form.propTypes = {
handleSubmit: PropTypes.func.isRequired, handleSubmit: PropTypes.func.isRequired,
handleChange: PropTypes.func, handleClear: PropTypes.func.isRequired,
change: PropTypes.func.isRequired,
submitting: PropTypes.bool.isRequired, submitting: PropTypes.bool.isRequired,
invalid: PropTypes.bool.isRequired, invalid: PropTypes.bool.isRequired,
processing: PropTypes.bool.isRequired, processing: PropTypes.bool.isRequired,
processingClear: PropTypes.bool.isRequired,
t: PropTypes.func.isRequired, t: PropTypes.func.isRequired,
}; };

View File

@ -1,16 +1,24 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { withNamespaces, Trans } from 'react-i18next'; import { withNamespaces } from 'react-i18next';
import debounce from 'lodash/debounce';
import { DEBOUNCE_TIMEOUT } from '../../../helpers/constants';
import Card from '../../ui/Card'; import Card from '../../ui/Card';
import Form from './Form'; import Form from './Form';
class LogsConfig extends Component { class LogsConfig extends Component {
handleFormChange = debounce((values) => { handleFormSubmit = (values) => {
this.props.setLogsConfig(values); const { t, interval: prevInterval } = this.props;
}, DEBOUNCE_TIMEOUT); const { interval } = values;
if (interval !== prevInterval) {
// eslint-disable-next-line no-alert
if (window.confirm(t('query_log_retention_confirm'))) {
this.props.setLogsConfig(values);
}
} else {
this.props.setLogsConfig(values);
}
};
handleClear = () => { handleClear = () => {
const { t, clearLogs } = this.props; const { t, clearLogs } = this.props;
@ -37,19 +45,11 @@ class LogsConfig extends Component {
enabled, enabled,
interval, interval,
}} }}
onSubmit={this.handleFormChange} onSubmit={this.handleFormSubmit}
onChange={this.handleFormChange}
processing={processing} processing={processing}
processingClear={processingClear}
handleClear={this.handleClear}
/> />
<button
type="button"
className="btn btn-outline-secondary btn-sm"
onClick={this.handleClear}
disabled={processingClear}
>
<Trans>query_log_clear</Trans>
</button>
</div> </div>
</Card> </Card>
); );

View File

@ -7,7 +7,7 @@ import flow from 'lodash/flow';
import { renderRadioField, toNumber } from '../../../helpers/form'; import { renderRadioField, toNumber } from '../../../helpers/form';
import { STATS_INTERVALS_DAYS } from '../../../helpers/constants'; import { STATS_INTERVALS_DAYS } from '../../../helpers/constants';
const getIntervalFields = (processing, t, handleChange, toNumber) => const getIntervalFields = (processing, t, toNumber) =>
STATS_INTERVALS_DAYS.map((interval) => { STATS_INTERVALS_DAYS.map((interval) => {
const title = const title =
interval === 1 ? t('interval_24_hour') : t('interval_days', { count: interval }); interval === 1 ? t('interval_24_hour') : t('interval_days', { count: interval });
@ -20,7 +20,6 @@ const getIntervalFields = (processing, t, handleChange, toNumber) =>
component={renderRadioField} component={renderRadioField}
value={interval} value={interval}
placeholder={title} placeholder={title}
onChange={handleChange}
normalize={toNumber} normalize={toNumber}
disabled={processing} disabled={processing}
/> />
@ -29,39 +28,51 @@ const getIntervalFields = (processing, t, handleChange, toNumber) =>
const Form = (props) => { const Form = (props) => {
const { const {
handleSubmit, handleChange, processing, t, handleSubmit, processing, submitting, invalid, handleReset, processingReset, t,
} = props; } = props;
return ( return (
<form onSubmit={handleSubmit}> <form onSubmit={handleSubmit}>
<div className="row"> <label className="form__label form__label--with-desc">
<div className="col-12"> <Trans>statistics_retention</Trans>
<label className="form__label form__label--with-desc"> </label>
<Trans>statistics_retention</Trans> <div className="form__desc form__desc--top">
</label> <Trans>statistics_retention_desc</Trans>
<div className="form__desc form__desc--top"> </div>
<Trans>statistics_retention_desc</Trans> <div className="form__group form__group--settings mt-2">
</div> <div className="custom-controls-stacked">
</div> {getIntervalFields(processing, t, toNumber)}
<div className="col-12">
<div className="form__group form__group--settings mt-2">
<div className="custom-controls-stacked">
{getIntervalFields(processing, t, handleChange, toNumber)}
</div>
</div>
</div> </div>
</div> </div>
<div className="mt-5">
<button
type="submit"
className="btn btn-success btn-standard btn-large"
disabled={submitting || invalid || processing}
>
<Trans>save_btn</Trans>
</button>
<button
type="button"
className="btn btn-outline-secondary btn-standard ml-5"
onClick={() => handleReset()}
disabled={processingReset}
>
<Trans>statistics_clear</Trans>
</button>
</div>
</form> </form>
); );
}; };
Form.propTypes = { Form.propTypes = {
handleSubmit: PropTypes.func.isRequired, handleSubmit: PropTypes.func.isRequired,
handleChange: PropTypes.func, handleReset: PropTypes.func.isRequired,
change: PropTypes.func.isRequired, change: PropTypes.func.isRequired,
submitting: PropTypes.bool.isRequired, submitting: PropTypes.bool.isRequired,
invalid: PropTypes.bool.isRequired, invalid: PropTypes.bool.isRequired,
processing: PropTypes.bool.isRequired, processing: PropTypes.bool.isRequired,
processingReset: PropTypes.bool.isRequired,
t: PropTypes.func.isRequired, t: PropTypes.func.isRequired,
}; };

View File

@ -1,16 +1,18 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { withNamespaces, Trans } from 'react-i18next'; import { withNamespaces } from 'react-i18next';
import debounce from 'lodash/debounce';
import { DEBOUNCE_TIMEOUT } from '../../../helpers/constants';
import Card from '../../ui/Card'; import Card from '../../ui/Card';
import Form from './Form'; import Form from './Form';
class StatsConfig extends Component { class StatsConfig extends Component {
handleFormChange = debounce((values) => { handleFormSubmit = (values) => {
this.props.setStatsConfig(values); const { t } = this.props;
}, DEBOUNCE_TIMEOUT); // eslint-disable-next-line no-alert
if (window.confirm(t('statistics_retention_confirm'))) {
this.props.setStatsConfig(values);
}
};
handleReset = () => { handleReset = () => {
const { t, resetStats } = this.props; const { t, resetStats } = this.props;
@ -29,22 +31,12 @@ class StatsConfig extends Component {
<Card title={t('statistics_configuration')} bodyType="card-body box-body--settings"> <Card title={t('statistics_configuration')} bodyType="card-body box-body--settings">
<div className="form"> <div className="form">
<Form <Form
initialValues={{ initialValues={{ interval }}
interval, onSubmit={this.handleFormSubmit}
}}
onSubmit={this.handleFormChange}
onChange={this.handleFormChange}
processing={processing} processing={processing}
processingReset={processingReset}
handleReset={this.handleReset}
/> />
<button
type="button"
className="btn btn-outline-secondary btn-sm"
onClick={this.handleReset}
disabled={processingReset}
>
<Trans>statistics_clear</Trans>
</button>
</div> </div>
</Card> </Card>
); );

View File

@ -101,15 +101,6 @@ class Settings extends Component {
</div> </div>
</Card> </Card>
</div> </div>
<div className="col-md-12">
<StatsConfig
interval={stats.interval}
processing={stats.processingSetConfig}
processingReset={stats.processingReset}
setStatsConfig={setStatsConfig}
resetStats={resetStats}
/>
</div>
<div className="col-md-12"> <div className="col-md-12">
<LogsConfig <LogsConfig
enabled={queryLogs.enabled} enabled={queryLogs.enabled}
@ -120,6 +111,15 @@ class Settings extends Component {
clearLogs={clearLogs} clearLogs={clearLogs}
/> />
</div> </div>
<div className="col-md-12">
<StatsConfig
interval={stats.interval}
processing={stats.processingSetConfig}
processingReset={stats.processingReset}
setStatsConfig={setStatsConfig}
resetStats={resetStats}
/>
</div>
<div className="col-md-12"> <div className="col-md-12">
<Services <Services
services={services} services={services}