mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-31 12:10:19 -07:00
Initial Commit Rework
This commit is contained in:
parent
74a4cc048c
commit
95051cbd63
2483 changed files with 101351 additions and 111396 deletions
35
frontend/src/Store/Actions/wantedActions.js
Normal file
35
frontend/src/Store/Actions/wantedActions.js
Normal file
|
@ -0,0 +1,35 @@
|
|||
import { createAction } from 'redux-actions';
|
||||
import * as types from './actionTypes';
|
||||
import wantedActionHandlers from './wantedActionHandlers';
|
||||
|
||||
//
|
||||
// Missing
|
||||
|
||||
export const fetchMissing = wantedActionHandlers[types.FETCH_MISSING];
|
||||
export const gotoMissingFirstPage = wantedActionHandlers[types.GOTO_FIRST_MISSING_PAGE];
|
||||
export const gotoMissingPreviousPage = wantedActionHandlers[types.GOTO_PREVIOUS_MISSING_PAGE];
|
||||
export const gotoMissingNextPage = wantedActionHandlers[types.GOTO_NEXT_MISSING_PAGE];
|
||||
export const gotoMissingLastPage = wantedActionHandlers[types.GOTO_LAST_MISSING_PAGE];
|
||||
export const gotoMissingPage = wantedActionHandlers[types.GOTO_MISSING_PAGE];
|
||||
export const setMissingSort = wantedActionHandlers[types.SET_MISSING_SORT];
|
||||
export const setMissingFilter = wantedActionHandlers[types.SET_MISSING_FILTER];
|
||||
export const setMissingTableOption = createAction(types.SET_MISSING_TABLE_OPTION);
|
||||
export const clearMissing = createAction(types.CLEAR_MISSING);
|
||||
|
||||
export const batchToggleMissingEpisodes = wantedActionHandlers[types.BATCH_TOGGLE_MISSING_EPISODES];
|
||||
|
||||
//
|
||||
// Cutoff Unmet
|
||||
|
||||
export const fetchCutoffUnmet = wantedActionHandlers[types.FETCH_CUTOFF_UNMET];
|
||||
export const gotoCutoffUnmetFirstPage = wantedActionHandlers[types.GOTO_FIRST_CUTOFF_UNMET_PAGE];
|
||||
export const gotoCutoffUnmetPreviousPage = wantedActionHandlers[types.GOTO_PREVIOUS_CUTOFF_UNMET_PAGE];
|
||||
export const gotoCutoffUnmetNextPage = wantedActionHandlers[types.GOTO_NEXT_CUTOFF_UNMET_PAGE];
|
||||
export const gotoCutoffUnmetLastPage = wantedActionHandlers[types.GOTO_LAST_CUTOFF_UNMET_PAGE];
|
||||
export const gotoCutoffUnmetPage = wantedActionHandlers[types.GOTO_CUTOFF_UNMET_PAGE];
|
||||
export const setCutoffUnmetSort = wantedActionHandlers[types.SET_CUTOFF_UNMET_SORT];
|
||||
export const setCutoffUnmetFilter = wantedActionHandlers[types.SET_CUTOFF_UNMET_FILTER];
|
||||
export const setCutoffUnmetTableOption= createAction(types.SET_CUTOFF_UNMET_TABLE_OPTION);
|
||||
export const clearCutoffUnmet= createAction(types.CLEAR_CUTOFF_UNMET);
|
||||
|
||||
export const batchToggleCutoffUnmetEpisodes = wantedActionHandlers[types.BATCH_TOGGLE_CUTOFF_UNMET_EPISODES];
|
Loading…
Add table
Add a link
Reference in a new issue