Fixes #5145 Closes #5125 Co-authored-by: Mark McDowall <mark@mcdowall.ca>pull/5150/head
parent
3a5012655e
commit
bd7d25f963
@ -0,0 +1,86 @@
|
|||||||
|
import moment from 'moment';
|
||||||
|
import { createAction } from 'redux-actions';
|
||||||
|
import { sortDirections } from 'Helpers/Props';
|
||||||
|
import { createThunk, handleThunks } from 'Store/thunks';
|
||||||
|
import updateSectionState from 'Utilities/State/updateSectionState';
|
||||||
|
import createFetchHandler from './Creators/createFetchHandler';
|
||||||
|
import createHandleActions from './Creators/createHandleActions';
|
||||||
|
import createSetClientSideCollectionSortReducer from './Creators/Reducers/createSetClientSideCollectionSortReducer';
|
||||||
|
|
||||||
|
//
|
||||||
|
// Variables
|
||||||
|
|
||||||
|
export const section = 'albumSelection';
|
||||||
|
|
||||||
|
//
|
||||||
|
// State
|
||||||
|
|
||||||
|
export const defaultState = {
|
||||||
|
isFetching: false,
|
||||||
|
isReprocessing: false,
|
||||||
|
isPopulated: false,
|
||||||
|
error: null,
|
||||||
|
sortKey: 'title',
|
||||||
|
sortDirection: sortDirections.ASCENDING,
|
||||||
|
items: [],
|
||||||
|
sortPredicates: {
|
||||||
|
title: ({ title }) => {
|
||||||
|
return title.toLocaleLowerCase();
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseDate: function({ releaseDate }, direction) {
|
||||||
|
if (releaseDate) {
|
||||||
|
return moment(releaseDate).unix();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (direction === sortDirections.DESCENDING) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Number.MAX_VALUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const persistState = [
|
||||||
|
'albumSelection.sortKey',
|
||||||
|
'albumSelection.sortDirection'
|
||||||
|
];
|
||||||
|
|
||||||
|
//
|
||||||
|
// Actions Types
|
||||||
|
|
||||||
|
export const FETCH_ALBUMS = 'albumSelection/fetchAlbums';
|
||||||
|
export const SET_ALBUMS_SORT = 'albumSelection/setAlbumsSort';
|
||||||
|
export const CLEAR_ALBUMS = 'albumSelection/clearAlbums';
|
||||||
|
|
||||||
|
//
|
||||||
|
// Action Creators
|
||||||
|
|
||||||
|
export const fetchAlbums = createThunk(FETCH_ALBUMS);
|
||||||
|
export const setAlbumsSort = createAction(SET_ALBUMS_SORT);
|
||||||
|
export const clearAlbums = createAction(CLEAR_ALBUMS);
|
||||||
|
|
||||||
|
//
|
||||||
|
// Action Handlers
|
||||||
|
|
||||||
|
export const actionHandlers = handleThunks({
|
||||||
|
[FETCH_ALBUMS]: createFetchHandler(section, '/album')
|
||||||
|
});
|
||||||
|
|
||||||
|
//
|
||||||
|
// Reducers
|
||||||
|
|
||||||
|
export const reducers = createHandleActions({
|
||||||
|
|
||||||
|
[SET_ALBUMS_SORT]: createSetClientSideCollectionSortReducer(section),
|
||||||
|
|
||||||
|
[CLEAR_ALBUMS]: (state) => {
|
||||||
|
return updateSectionState(state, section, {
|
||||||
|
...defaultState,
|
||||||
|
sortKey: state.sortKey,
|
||||||
|
sortDirection: state.sortDirection
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}, defaultState, section);
|
Loading…
Reference in new issue