soapbox/app/gabsocial/reducers/group_relationships.js

27 wiersze
857 B
JavaScript
Czysty Zwykły widok Historia

2020-03-27 20:59:38 +00:00
import { GROUP_RELATIONSHIPS_FETCH_SUCCESS, GROUP_JOIN_SUCCESS, GROUP_LEAVE_SUCCESS } from '../actions/groups';
import { Map as ImmutableMap, fromJS } from 'immutable';
2020-04-14 18:44:40 +00:00
2020-03-27 20:59:38 +00:00
const normalizeRelationship = (state, relationship) => state.set(relationship.id, fromJS(relationship));
2020-04-14 18:44:40 +00:00
2020-03-27 20:59:38 +00:00
const normalizeRelationships = (state, relationships) => {
2020-04-14 18:44:40 +00:00
relationships.forEach(relationship => {
state = normalizeRelationship(state, relationship);
});
return state;
2020-03-27 20:59:38 +00:00
};
2020-04-14 18:44:40 +00:00
2020-03-27 20:59:38 +00:00
const initialState = ImmutableMap();
2020-04-14 18:44:40 +00:00
2020-03-27 20:59:38 +00:00
export default function group_relationships(state = initialState, action) {
2020-04-14 18:44:40 +00:00
switch(action.type) {
case GROUP_JOIN_SUCCESS:
case GROUP_LEAVE_SUCCESS:
return normalizeRelationship(state, action.relationship);
case GROUP_RELATIONSHIPS_FETCH_SUCCESS:
return normalizeRelationships(state, action.relationships);
default:
return state;
}
2020-03-27 20:59:38 +00:00
};