mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-15 12:03:46 +00:00
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
import { handleActions } from 'redux-actions';
|
|
import PropTypes from 'prop-types';
|
|
|
|
/* eslint-disable padding-line-between-statements */
|
|
export const GET_MERCURE_INFO_START = 'shlink/mercure/GET_MERCURE_INFO_START';
|
|
export const GET_MERCURE_INFO_ERROR = 'shlink/mercure/GET_MERCURE_INFO_ERROR';
|
|
export const GET_MERCURE_INFO = 'shlink/mercure/GET_MERCURE_INFO';
|
|
/* eslint-enable padding-line-between-statements */
|
|
|
|
export const MercureInfoType = PropTypes.shape({
|
|
token: PropTypes.string,
|
|
mercureHubUrl: PropTypes.string,
|
|
loading: PropTypes.bool,
|
|
error: PropTypes.bool,
|
|
});
|
|
|
|
const initialState = {
|
|
token: undefined,
|
|
mercureHubUrl: undefined,
|
|
loading: false,
|
|
error: false,
|
|
};
|
|
|
|
export default handleActions({
|
|
[GET_MERCURE_INFO_START]: (state) => ({ ...state, loading: true, error: false }),
|
|
[GET_MERCURE_INFO_ERROR]: (state) => ({ ...state, loading: false, error: true }),
|
|
[GET_MERCURE_INFO]: (state, { token, mercureHubUrl }) => ({ token, mercureHubUrl, loading: false, error: false }),
|
|
}, initialState);
|
|
|
|
export const loadMercureInfo = (buildShlinkApiClient) => () => async (dispatch, getState) => {
|
|
dispatch({ type: GET_MERCURE_INFO_START });
|
|
const { mercureInfo } = buildShlinkApiClient(getState);
|
|
|
|
try {
|
|
const result = await mercureInfo();
|
|
|
|
dispatch({ type: GET_MERCURE_INFO, ...result });
|
|
} catch (e) {
|
|
dispatch({ type: GET_MERCURE_INFO_ERROR });
|
|
}
|
|
};
|