mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-11 02:37:22 +03:00
Separated param definition and unpacking for readibility
This commit is contained in:
parent
4b2c3d2db7
commit
6103f6a89b
1 changed files with 2 additions and 6 deletions
|
@ -99,15 +99,11 @@ export const lastVisitLoaderForLoader = (
|
||||||
|
|
||||||
export const createVisitsReducer = <State extends VisitsInfo, AT extends ReturnType<typeof createVisitsAsyncThunk>>(
|
export const createVisitsReducer = <State extends VisitsInfo, AT extends ReturnType<typeof createVisitsAsyncThunk>>(
|
||||||
name: string,
|
name: string,
|
||||||
{
|
asyncThunkCreator: AT,
|
||||||
asyncThunk,
|
|
||||||
largeAction,
|
|
||||||
fallbackToIntervalAction,
|
|
||||||
progressChangedAction,
|
|
||||||
}: AT,
|
|
||||||
initialState: State,
|
initialState: State,
|
||||||
filterCreatedVisits: (state: State, createdVisits: CreateVisit[]) => CreateVisit[],
|
filterCreatedVisits: (state: State, createdVisits: CreateVisit[]) => CreateVisit[],
|
||||||
) => {
|
) => {
|
||||||
|
const { asyncThunk, largeAction, fallbackToIntervalAction, progressChangedAction } = asyncThunkCreator;
|
||||||
const { reducer, actions } = createSlice({
|
const { reducer, actions } = createSlice({
|
||||||
name,
|
name,
|
||||||
initialState,
|
initialState,
|
||||||
|
|
Loading…
Reference in a new issue