import type { PayloadAction } from '@reduxjs/toolkit'; import { createSlice } from '@reduxjs/toolkit'; import type { ShlinkApiClient } from '../../../api/services/ShlinkApiClient'; import type { ProblemDetailsError } from '../../../api/types/errors'; import { parseApiError } from '../../../api/utils'; import { createAsyncThunk } from '../../../utils/helpers/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; const initialState: ShortUrlEdition = { saving: false, saved: false, error: false, }; export const editShortUrl = (apiClient: ShlinkApiClient) => createAsyncThunk( `${REDUCER_PREFIX}/editShortUrl`, ({ shortCode, domain, data }: EditShortUrl): Promise => apiClient.updateShortUrl(shortCode, domain, data as any) // FIXME parse dates , ); export const shortUrlEditionReducerCreator = (editShortUrlThunk: ReturnType) => 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 }), ); }, });