mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
ce58e6ecdb
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com> (cherry picked from commit a9792973eef960e8310a611cf1da2d2cada57532)
102 lines
2.2 KiB
JavaScript
102 lines
2.2 KiB
JavaScript
import { createAction } from 'redux-actions';
|
|
import { batchActions } from 'redux-batched-actions';
|
|
import { createThunk, handleThunks } from 'Store/thunks';
|
|
import createAjaxRequest from 'Utilities/createAjaxRequest';
|
|
import { set, update } from './baseActions';
|
|
import createHandleActions from './Creators/createHandleActions';
|
|
|
|
//
|
|
// Variables
|
|
|
|
export const section = 'authorHistory';
|
|
|
|
//
|
|
// State
|
|
|
|
export const defaultState = {
|
|
isFetching: false,
|
|
isPopulated: false,
|
|
error: null,
|
|
items: []
|
|
};
|
|
|
|
//
|
|
// Actions Types
|
|
|
|
export const FETCH_AUTHOR_HISTORY = 'authorHistory/fetchAuthorHistory';
|
|
export const CLEAR_AUTHOR_HISTORY = 'authorHistory/clearAuthorHistory';
|
|
export const AUTHOR_HISTORY_MARK_AS_FAILED = 'authorHistory/authorHistoryMarkAsFailed';
|
|
|
|
//
|
|
// Action Creators
|
|
|
|
export const fetchAuthorHistory = createThunk(FETCH_AUTHOR_HISTORY);
|
|
export const clearAuthorHistory = createAction(CLEAR_AUTHOR_HISTORY);
|
|
export const authorHistoryMarkAsFailed = createThunk(AUTHOR_HISTORY_MARK_AS_FAILED);
|
|
|
|
//
|
|
// Action Handlers
|
|
|
|
export const actionHandlers = handleThunks({
|
|
|
|
[FETCH_AUTHOR_HISTORY]: function(getState, payload, dispatch) {
|
|
dispatch(set({ section, isFetching: true }));
|
|
|
|
const promise = createAjaxRequest({
|
|
url: '/history/author',
|
|
data: payload
|
|
}).request;
|
|
|
|
promise.done((data) => {
|
|
dispatch(batchActions([
|
|
update({ section, data }),
|
|
|
|
set({
|
|
section,
|
|
isFetching: false,
|
|
isPopulated: true,
|
|
error: null
|
|
})
|
|
]));
|
|
});
|
|
|
|
promise.fail((xhr) => {
|
|
dispatch(set({
|
|
section,
|
|
isFetching: false,
|
|
isPopulated: false,
|
|
error: xhr
|
|
}));
|
|
});
|
|
},
|
|
|
|
[AUTHOR_HISTORY_MARK_AS_FAILED]: function(getState, payload, dispatch) {
|
|
const {
|
|
historyId,
|
|
authorId,
|
|
bookId
|
|
} = payload;
|
|
|
|
const promise = createAjaxRequest({
|
|
url: `/history/failed/${historyId}`,
|
|
method: 'POST'
|
|
}).request;
|
|
|
|
promise.done(() => {
|
|
dispatch(fetchAuthorHistory({ authorId, bookId }));
|
|
});
|
|
}
|
|
});
|
|
|
|
//
|
|
// Reducers
|
|
|
|
export const reducers = createHandleActions({
|
|
|
|
[CLEAR_AUTHOR_HISTORY]: (state) => {
|
|
return Object.assign({}, state, defaultState);
|
|
}
|
|
|
|
}, defaultState, section);
|
|
|