1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/client-react/src/containers/components/StateSynchronizer/StateSynchronizer.ts
2019-03-03 11:39:40 +01:00

31 lines
1.1 KiB
TypeScript

import { connect } from 'react-redux';
import StateSynchronizer, { OnLoaded, OnError } from '../../../components/StateSynchronizer/StateSynchronizer';
import { RootState } from '../../../reducers';
import { fetchStateSuccess, fetchState, fetchStateFailure } from '../../../reducers/Portal/actions';
import RemoteState from '../../../reducers/Portal/RemoteState';
import { Dispatch } from 'redux';
const mapStateToProps = (state: RootState) => ({
state: state.remoteState,
stateError: state.remoteStateError,
stateLoading: state.remoteStateLoading,
});
const mapDispatchToProps = (dispatch: Dispatch) => {
return {
fetch: (onloaded: OnLoaded, onerror: OnError) => {
dispatch(fetchState());
fetch('/api/state').then(async (res) => {
const body = await res.json() as RemoteState;
await dispatch(fetchStateSuccess(body));
await onloaded(body);
})
.catch(async (err) => {
await dispatch(fetchStateFailure(err));
await onerror(err);
})
}
}
}
export default connect(mapStateToProps, mapDispatchToProps)(StateSynchronizer);