mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-10 09:33:51 +00:00
53 lines
1.9 KiB
JavaScript
53 lines
1.9 KiB
JavaScript
import { createAction, handleActions } from 'redux-actions';
|
|
import PropTypes from 'prop-types';
|
|
|
|
/* eslint-disable padding-line-between-statements */
|
|
export const EDIT_SHORT_URL_META_START = 'shlink/shortUrlMeta/EDIT_SHORT_URL_META_START';
|
|
export const EDIT_SHORT_URL_META_ERROR = 'shlink/shortUrlMeta/EDIT_SHORT_URL_META_ERROR';
|
|
export const SHORT_URL_META_EDITED = 'shlink/shortUrlMeta/SHORT_URL_META_EDITED';
|
|
export const RESET_EDIT_SHORT_URL_META = 'shlink/shortUrlMeta/RESET_EDIT_SHORT_URL_META';
|
|
/* eslint-enable padding-line-between-statements */
|
|
|
|
export const shortUrlMetaType = PropTypes.shape({
|
|
validSince: PropTypes.string,
|
|
validUntil: PropTypes.string,
|
|
maxVisits: PropTypes.number,
|
|
});
|
|
|
|
export const shortUrlEditMetaType = PropTypes.shape({
|
|
shortCode: PropTypes.string,
|
|
meta: shortUrlMetaType.isRequired,
|
|
saving: PropTypes.bool.isRequired,
|
|
error: PropTypes.bool.isRequired,
|
|
});
|
|
|
|
const initialState = {
|
|
shortCode: null,
|
|
meta: {},
|
|
saving: false,
|
|
error: false,
|
|
};
|
|
|
|
export default handleActions({
|
|
[EDIT_SHORT_URL_META_START]: (state) => ({ ...state, saving: true, error: false }),
|
|
[EDIT_SHORT_URL_META_ERROR]: (state) => ({ ...state, saving: false, error: true }),
|
|
[SHORT_URL_META_EDITED]: (state, { shortCode, meta }) => ({ shortCode, meta, saving: false, error: false }),
|
|
[RESET_EDIT_SHORT_URL_META]: () => initialState,
|
|
}, initialState);
|
|
|
|
export const editShortUrlMeta = (buildShlinkApiClient) => (shortCode, domain, meta) => async (dispatch, getState) => {
|
|
dispatch({ type: EDIT_SHORT_URL_META_START });
|
|
const { updateShortUrlMeta } = buildShlinkApiClient(getState);
|
|
|
|
try {
|
|
await updateShortUrlMeta(shortCode, domain, meta);
|
|
dispatch({ shortCode, meta, domain, type: SHORT_URL_META_EDITED });
|
|
} catch (e) {
|
|
dispatch({ type: EDIT_SHORT_URL_META_ERROR });
|
|
|
|
throw e;
|
|
}
|
|
};
|
|
|
|
export const resetShortUrlMeta = createAction(RESET_EDIT_SHORT_URL_META);
|