Close #1820 Squashed commit of the following: commit 5aadec2e6e126588313ff006d6f95223ba19a526 Merge: a4db6b4295f41285
Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Jul 15 11:15:31 2020 +0300 Merge branch 'master' into fix/1820 commit a4db6b42ab9cbf43d96c783a72a99e0a2c594108 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Jul 14 19:08:09 2020 +0300 Remove textarea comma splitting commit bb34797aac6602b405941dbd90fe6a81b663bb92 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Jul 14 18:21:18 2020 +0300 Fix client Access settings normalization commit ac4fb536514f54c5722077d78dbbd981c4e906a8 Merge: 0c758ddcb9fca8d0
Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Jul 14 18:14:38 2020 +0300 Merge branch 'master' into fix/1820 commit 0c758ddcd738136b92e6f947a8068ecc59f7ec25 Merge: 15650db3f5a1f311
Author: ArtemBaskal <a.baskal@adguard.com> Date: Fri Jul 3 11:22:00 2020 +0300 Merge branch 'master' into fix/1820 commit 15650db35323009001fd427a74a312705b54ac86 Author: ArtemBaskal <a.baskal@adguard.com> Date: Mon Jun 29 12:01:51 2020 +0300 '- client: Don't normalise disallowed domains'
153 lines
5.3 KiB
JavaScript
153 lines
5.3 KiB
JavaScript
import React from 'react';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import { Field, reduxForm } from 'redux-form';
|
|
import { Trans, useTranslation } from 'react-i18next';
|
|
import classnames from 'classnames';
|
|
|
|
import Examples from './Examples';
|
|
import { renderRadioField, renderTextareaField } from '../../../../helpers/form';
|
|
import { DNS_REQUEST_OPTIONS, FORM_NAME } from '../../../../helpers/constants';
|
|
import { testUpstream } from '../../../../actions';
|
|
import { removeEmptyLines } from '../../../../helpers/helpers';
|
|
|
|
const getInputFields = () => [{
|
|
// eslint-disable-next-line react/display-name
|
|
getTitle: () => <label className="form__label" htmlFor="upstream_dns">
|
|
<Trans>upstream_dns</Trans>
|
|
</label>,
|
|
name: 'upstream_dns',
|
|
type: 'text',
|
|
component: renderTextareaField,
|
|
className: 'form-control form-control--textarea font-monospace',
|
|
placeholder: 'upstream_dns',
|
|
normalizeOnBlur: removeEmptyLines,
|
|
},
|
|
{
|
|
name: 'upstream_mode',
|
|
type: 'radio',
|
|
value: DNS_REQUEST_OPTIONS.LOAD_BALANCING,
|
|
component: renderRadioField,
|
|
subtitle: 'load_balancing_desc',
|
|
placeholder: 'load_balancing',
|
|
},
|
|
{
|
|
name: 'upstream_mode',
|
|
type: 'radio',
|
|
value: DNS_REQUEST_OPTIONS.PARALLEL,
|
|
component: renderRadioField,
|
|
subtitle: 'upstream_parallel',
|
|
placeholder: 'parallel_requests',
|
|
},
|
|
{
|
|
name: 'upstream_mode',
|
|
type: 'radio',
|
|
value: DNS_REQUEST_OPTIONS.FASTEST_ADDR,
|
|
component: renderRadioField,
|
|
subtitle: 'fastest_addr_desc',
|
|
placeholder: 'fastest_addr',
|
|
}];
|
|
|
|
const Form = ({
|
|
submitting, invalid, processingSetConfig, processingTestUpstream, handleSubmit,
|
|
}) => {
|
|
const dispatch = useDispatch();
|
|
const [t] = useTranslation();
|
|
const upstream_dns = useSelector((store) => store.form[FORM_NAME.UPSTREAM].values.upstream_dns);
|
|
const bootstrap_dns = useSelector((store) => store.form[FORM_NAME.UPSTREAM]
|
|
.values.bootstrap_dns);
|
|
|
|
const handleUpstreamTest = () => dispatch(testUpstream({
|
|
upstream_dns,
|
|
bootstrap_dns,
|
|
}));
|
|
|
|
const testButtonClass = classnames('btn btn-primary btn-standard mr-2', {
|
|
'btn-loading': processingTestUpstream,
|
|
});
|
|
|
|
const INPUT_FIELDS = getInputFields();
|
|
|
|
return <form onSubmit={handleSubmit}>
|
|
<div className="row">
|
|
{INPUT_FIELDS.map(({
|
|
name, component, type, className, placeholder,
|
|
getTitle, subtitle, disabled, value, normalizeOnBlur,
|
|
}) => <div className="col-12 mb-4" key={placeholder}>
|
|
{typeof getTitle === 'function' && getTitle()}
|
|
<Field
|
|
id={name}
|
|
value={value}
|
|
name={name}
|
|
component={component}
|
|
type={type}
|
|
className={className}
|
|
placeholder={t(placeholder)}
|
|
subtitle={t(subtitle)}
|
|
disabled={processingSetConfig || processingTestUpstream || disabled}
|
|
normalizeOnBlur={normalizeOnBlur}
|
|
/>
|
|
</div>)}
|
|
<div className="col-12">
|
|
<Examples />
|
|
<hr />
|
|
</div>
|
|
<div className="col-12 mb-4">
|
|
<label
|
|
className="form__label form__label--with-desc"
|
|
htmlFor="bootstrap_dns"
|
|
>
|
|
<Trans>bootstrap_dns</Trans>
|
|
</label>
|
|
<div className="form__desc form__desc--top">
|
|
<Trans>bootstrap_dns_desc</Trans>
|
|
</div>
|
|
<Field
|
|
id="bootstrap_dns"
|
|
name="bootstrap_dns"
|
|
component={renderTextareaField}
|
|
type="text"
|
|
className="form-control form-control--textarea form-control--textarea-small font-monospace"
|
|
placeholder={t('bootstrap_dns')}
|
|
disabled={processingSetConfig}
|
|
normalizeOnBlur={removeEmptyLines}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="card-actions">
|
|
<div className="btn-list">
|
|
<button
|
|
type="button"
|
|
className={testButtonClass}
|
|
onClick={handleUpstreamTest}
|
|
disabled={!upstream_dns || processingTestUpstream}
|
|
>
|
|
<Trans>test_upstream_btn</Trans>
|
|
</button>
|
|
<button
|
|
type="submit"
|
|
className="btn btn-success btn-standard"
|
|
disabled={
|
|
submitting || invalid || processingSetConfig || processingTestUpstream
|
|
}
|
|
>
|
|
<Trans>apply_btn</Trans>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>;
|
|
};
|
|
|
|
Form.propTypes = {
|
|
handleSubmit: PropTypes.func,
|
|
submitting: PropTypes.bool,
|
|
invalid: PropTypes.bool,
|
|
initialValues: PropTypes.object,
|
|
upstream_dns: PropTypes.string,
|
|
bootstrap_dns: PropTypes.string,
|
|
processingTestUpstream: PropTypes.bool,
|
|
processingSetConfig: PropTypes.bool,
|
|
};
|
|
|
|
export default reduxForm({ form: FORM_NAME.UPSTREAM })(Form);
|