Closes #4026. Squashed commit of the following: commit bcd1315a10e819daee3aee323427d90a27860b4a Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jan 18 14:57:49 2022 +0300 openapi: fix example commit b56e27c5ac1fc7c3f595057d77607479d72ec50a Author: Ildar Kamalov <ik@adguard.com> Date: Tue Jan 18 14:55:51 2022 +0300 client: show version on install page commit 95dfbfaa1235deef7b55e51457d11c677f6ef6b5 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jan 18 14:29:08 2022 +0300 home: show version in install api
81 lines
2.5 KiB
JavaScript
81 lines
2.5 KiB
JavaScript
import { combineReducers } from 'redux';
|
|
import { handleActions } from 'redux-actions';
|
|
import { reducer as formReducer } from 'redux-form';
|
|
|
|
import * as actions from '../actions/install';
|
|
import toasts from './toasts';
|
|
import {
|
|
ALL_INTERFACES_IP, INSTALL_FIRST_STEP, STANDARD_DNS_PORT, STANDARD_WEB_PORT,
|
|
} from '../helpers/constants';
|
|
|
|
const install = handleActions({
|
|
[actions.getDefaultAddressesRequest]: (state) => ({ ...state, processingDefault: true }),
|
|
[actions.getDefaultAddressesFailure]: (state) => ({ ...state, processingDefault: false }),
|
|
[actions.getDefaultAddressesSuccess]: (state, { payload }) => {
|
|
const { interfaces, version } = payload;
|
|
const web = { ...state.web, port: payload.web_port };
|
|
const dns = { ...state.dns, port: payload.dns_port };
|
|
|
|
const newState = {
|
|
...state,
|
|
web,
|
|
dns,
|
|
interfaces,
|
|
processingDefault: false,
|
|
dnsVersion: version,
|
|
};
|
|
|
|
return newState;
|
|
},
|
|
|
|
[actions.nextStep]: (state) => ({ ...state, step: state.step + 1 }),
|
|
[actions.prevStep]: (state) => ({ ...state, step: state.step - 1 }),
|
|
|
|
[actions.setAllSettingsRequest]: (state) => ({ ...state, processingSubmit: true }),
|
|
[actions.setAllSettingsFailure]: (state) => ({ ...state, processingSubmit: false }),
|
|
[actions.setAllSettingsSuccess]: (state) => ({ ...state, processingSubmit: false }),
|
|
|
|
[actions.checkConfigRequest]: (state) => ({ ...state, processingCheck: true }),
|
|
[actions.checkConfigFailure]: (state) => ({ ...state, processingCheck: false }),
|
|
[actions.checkConfigSuccess]: (state, { payload }) => {
|
|
const web = { ...state.web, ...payload.web };
|
|
const dns = { ...state.dns, ...payload.dns };
|
|
const staticIp = { ...state.staticIp, ...payload.static_ip };
|
|
|
|
const newState = {
|
|
...state, web, dns, staticIp, processingCheck: false,
|
|
};
|
|
return newState;
|
|
},
|
|
}, {
|
|
step: INSTALL_FIRST_STEP,
|
|
processingDefault: true,
|
|
processingSubmit: false,
|
|
processingCheck: false,
|
|
web: {
|
|
ip: ALL_INTERFACES_IP,
|
|
port: STANDARD_WEB_PORT,
|
|
status: '',
|
|
can_autofix: false,
|
|
},
|
|
dns: {
|
|
ip: ALL_INTERFACES_IP,
|
|
port: STANDARD_DNS_PORT,
|
|
status: '',
|
|
can_autofix: false,
|
|
},
|
|
staticIp: {
|
|
static: '',
|
|
ip: '',
|
|
error: '',
|
|
},
|
|
interfaces: {},
|
|
dnsVersion: '',
|
|
});
|
|
|
|
export default combineReducers({
|
|
install,
|
|
toasts,
|
|
form: formReducer,
|
|
});
|