Updated how groups are fetched, loaded

• Updated:
- how groups are fetched, loaded by setting flags for isLoading, isFetched per tab (new, admin, member, featured)

• Todo:
- Reload on group added, group removal
This commit is contained in:
mgabdev
2020-06-04 18:48:24 -04:00
parent acbc717c59
commit 4f7728b2fa
4 changed files with 75 additions and 23 deletions

View File

@@ -1,22 +1,55 @@
import { Map as ImmutableMap, List as ImmutableList } from 'immutable'
import { GROUPS_FETCH_SUCCESS } from '../actions/groups'
import {
GROUPS_FETCH_REQUEST,
GROUPS_FETCH_SUCCESS,
GROUPS_FETCH_FAIL,
} from '../actions/groups'
const tabs = ['new', 'featured', 'member', 'admin']
const initialState = ImmutableMap({
new: ImmutableList(),
featured: ImmutableList(),
member: ImmutableList(),
admin: ImmutableList(),
new: ImmutableMap({
fetched: false,
loading: false,
items: ImmutableList(),
}),
featured: ImmutableMap({
fetched: false,
loading: false,
items: ImmutableList(),
}),
member: ImmutableMap({
fetched: false,
loading: false,
items: ImmutableList(),
}),
admin: ImmutableMap({
fetched: false,
loading: false,
items: ImmutableList(),
}),
})
const normalizeList = (state, type, id, groups) => {
return state.set(type, ImmutableList(groups.map(item => item.id)))
}
export default function groupLists(state = initialState, action) {
if (tabs.indexOf(action.tab) === -1) return state
switch(action.type) {
case GROUPS_FETCH_REQUEST:
return state.withMutations((mutable) => {
mutable.setIn([action.tab, 'loading'], true)
});
case GROUPS_FETCH_SUCCESS:
if (!action.tab) return state
return normalizeList(state, action.tab, action.id, action.groups)
return state.withMutations((mutable) => {
mutable.setIn([action.tab, 'items'], ImmutableList(action.groups.map(item => item.id)))
mutable.setIn([action.tab, 'loading'], false)
mutable.setIn([action.tab, 'fetched'], true)
})
case GROUPS_FETCH_FAIL:
return state.withMutations((mutable) => {
mutable.setIn([action.tab, 'items'], ImmutableList())
mutable.setIn([action.tab, 'loading'], false)
mutable.setIn([action.tab, 'fetched'], true)
})
default:
return state
}