2016-10-30 10:06:43 -04:00
|
|
|
import {
|
|
|
|
ACCOUNT_FOLLOW_SUCCESS,
|
|
|
|
ACCOUNT_UNFOLLOW_SUCCESS,
|
|
|
|
ACCOUNT_BLOCK_SUCCESS,
|
|
|
|
ACCOUNT_UNBLOCK_SUCCESS,
|
2017-02-05 20:51:56 -05:00
|
|
|
ACCOUNT_MUTE_SUCCESS,
|
|
|
|
ACCOUNT_UNMUTE_SUCCESS,
|
2017-05-20 11:31:47 -04:00
|
|
|
RELATIONSHIPS_FETCH_SUCCESS,
|
2017-12-04 02:26:40 -05:00
|
|
|
} from 'flavours/glitch/actions/accounts';
|
2017-05-19 15:05:32 -04:00
|
|
|
import {
|
|
|
|
DOMAIN_BLOCK_SUCCESS,
|
2017-05-20 11:31:47 -04:00
|
|
|
DOMAIN_UNBLOCK_SUCCESS,
|
2017-12-04 02:26:40 -05:00
|
|
|
} from 'flavours/glitch/actions/domain_blocks';
|
2017-07-10 19:00:14 -04:00
|
|
|
import { Map as ImmutableMap, fromJS } from 'immutable';
|
2016-10-30 10:06:43 -04:00
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const normalizeRelationship = (state, relationship) => state.set(relationship.id, fromJS(relationship));
|
2016-10-30 10:06:43 -04:00
|
|
|
|
|
|
|
const normalizeRelationships = (state, relationships) => {
|
|
|
|
relationships.forEach(relationship => {
|
|
|
|
state = normalizeRelationship(state, relationship);
|
|
|
|
});
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const initialState = ImmutableMap();
|
2016-10-30 10:06:43 -04:00
|
|
|
|
|
|
|
export default function relationships(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-03-31 16:44:12 -04:00
|
|
|
case ACCOUNT_FOLLOW_SUCCESS:
|
|
|
|
case ACCOUNT_UNFOLLOW_SUCCESS:
|
|
|
|
case ACCOUNT_BLOCK_SUCCESS:
|
|
|
|
case ACCOUNT_UNBLOCK_SUCCESS:
|
|
|
|
case ACCOUNT_MUTE_SUCCESS:
|
|
|
|
case ACCOUNT_UNMUTE_SUCCESS:
|
|
|
|
return normalizeRelationship(state, action.relationship);
|
|
|
|
case RELATIONSHIPS_FETCH_SUCCESS:
|
|
|
|
return normalizeRelationships(state, action.relationships);
|
2017-05-19 15:05:32 -04:00
|
|
|
case DOMAIN_BLOCK_SUCCESS:
|
|
|
|
return state.setIn([action.accountId, 'domain_blocking'], true);
|
|
|
|
case DOMAIN_UNBLOCK_SUCCESS:
|
|
|
|
return state.setIn([action.accountId, 'domain_blocking'], false);
|
2017-03-31 16:44:12 -04:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-30 10:06:43 -04:00
|
|
|
}
|
|
|
|
};
|