mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-24 01:48:18 +03:00
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import type { PayloadAction } from '@reduxjs/toolkit';
|
|
import { createSlice } from '@reduxjs/toolkit';
|
|
import type { ProblemDetailsError, ShlinkApiClient } from '../../api-contract';
|
|
import { parseApiError } from '../../api-contract/utils';
|
|
import { createAsyncThunk } from '../../utils/redux';
|
|
import type { EditShortUrlData, ShortUrl, ShortUrlIdentifier } from '../data';
|
|
|
|
const REDUCER_PREFIX = 'shlink/shortUrlEdition';
|
|
|
|
export interface ShortUrlEdition {
|
|
shortUrl?: ShortUrl;
|
|
saving: boolean;
|
|
saved: boolean;
|
|
error: boolean;
|
|
errorData?: ProblemDetailsError;
|
|
}
|
|
|
|
export interface EditShortUrl extends ShortUrlIdentifier {
|
|
data: EditShortUrlData;
|
|
}
|
|
|
|
export type ShortUrlEditedAction = PayloadAction<ShortUrl>;
|
|
|
|
const initialState: ShortUrlEdition = {
|
|
saving: false,
|
|
saved: false,
|
|
error: false,
|
|
};
|
|
|
|
export const editShortUrl = (apiClientFactory: () => ShlinkApiClient) => createAsyncThunk(
|
|
`${REDUCER_PREFIX}/editShortUrl`,
|
|
({ shortCode, domain, data }: EditShortUrl): Promise<ShortUrl> =>
|
|
apiClientFactory().updateShortUrl(shortCode, domain, data as any) // TODO parse dates
|
|
,
|
|
);
|
|
|
|
export const shortUrlEditionReducerCreator = (editShortUrlThunk: ReturnType<typeof editShortUrl>) => createSlice({
|
|
name: REDUCER_PREFIX,
|
|
initialState,
|
|
reducers: {},
|
|
extraReducers: (builder) => {
|
|
builder.addCase(editShortUrlThunk.pending, (state) => ({ ...state, saving: true, error: false, saved: false }));
|
|
builder.addCase(
|
|
editShortUrlThunk.rejected,
|
|
(state, { error }) => ({ ...state, saving: false, error: true, saved: false, errorData: parseApiError(error) }),
|
|
);
|
|
builder.addCase(
|
|
editShortUrlThunk.fulfilled,
|
|
(_, { payload: shortUrl }) => ({ shortUrl, saving: false, error: false, saved: true }),
|
|
);
|
|
},
|
|
});
|