1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
2017-07-04 12:37:16 +02:00

36 lines
991 B
JavaScript

import axios from 'axios';
import {apiError} from 'components/errors/actions'
import {loadRejectReasonsSuccess,
loadNoExportReasonsSuccess}
from 'components/routeservers/large-communities/actions';
export const LOAD_CONFIG_SUCCESS = "@birdseye/LOAD_CONFIG_SUCCESS";
function loadConfigSuccess(config) {
return {
type: LOAD_CONFIG_SUCCESS,
payload: config
};
}
export function loadConfig() {
return (dispatch) => {
axios.get(`/api/config`)
.then(({data}) => {
dispatch(
loadRejectReasonsSuccess(data.rejection.asn,
data.rejection.reject_id,
data.reject_reasons)
);
dispatch(
loadNoExportReasonsSuccess(
data.noexport.asn,
data.noexport.noexport_id,
data.noexport_reasons)
);
dispatch(loadConfigSuccess(data));
})
.catch(error => dispatch(apiError(error)));
}
}