mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-26 19:56:41 +00:00
Separated param definition and unpacking for readibility
This commit is contained in:
@@ -99,15 +99,11 @@ export const lastVisitLoaderForLoader = (
|
||||
|
||||
export const createVisitsReducer = <State extends VisitsInfo, AT extends ReturnType<typeof createVisitsAsyncThunk>>(
|
||||
name: string,
|
||||
{
|
||||
asyncThunk,
|
||||
largeAction,
|
||||
fallbackToIntervalAction,
|
||||
progressChangedAction,
|
||||
}: AT,
|
||||
asyncThunkCreator: AT,
|
||||
initialState: State,
|
||||
filterCreatedVisits: (state: State, createdVisits: CreateVisit[]) => CreateVisit[],
|
||||
) => {
|
||||
const { asyncThunk, largeAction, fallbackToIntervalAction, progressChangedAction } = asyncThunkCreator;
|
||||
const { reducer, actions } = createSlice({
|
||||
name,
|
||||
initialState,
|
||||
|
||||
Reference in New Issue
Block a user