2016-10-30 10:06:43 -04:00
|
|
|
import {
|
|
|
|
ACCOUNT_FOLLOW_SUCCESS,
|
2018-11-08 15:05:42 -05:00
|
|
|
ACCOUNT_FOLLOW_REQUEST,
|
|
|
|
ACCOUNT_FOLLOW_FAIL,
|
2016-10-30 10:06:43 -04:00
|
|
|
ACCOUNT_UNFOLLOW_SUCCESS,
|
2018-11-08 15:05:42 -05:00
|
|
|
ACCOUNT_UNFOLLOW_REQUEST,
|
|
|
|
ACCOUNT_UNFOLLOW_FAIL,
|
2016-10-30 10:06:43 -04:00
|
|
|
ACCOUNT_BLOCK_SUCCESS,
|
|
|
|
ACCOUNT_UNBLOCK_SUCCESS,
|
2017-02-05 20:51:56 -05:00
|
|
|
ACCOUNT_MUTE_SUCCESS,
|
|
|
|
ACCOUNT_UNMUTE_SUCCESS,
|
2018-08-09 03:56:53 -04:00
|
|
|
ACCOUNT_PIN_SUCCESS,
|
|
|
|
ACCOUNT_UNPIN_SUCCESS,
|
2017-05-20 11:31:47 -04:00
|
|
|
RELATIONSHIPS_FETCH_SUCCESS,
|
2016-10-30 10:06:43 -04:00
|
|
|
} from '../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-05-19 15:05:32 -04:00
|
|
|
} from '../actions/domain_blocks';
|
2020-06-30 13:19:50 -04:00
|
|
|
import {
|
|
|
|
ACCOUNT_NOTE_SUBMIT_SUCCESS,
|
|
|
|
} from '../actions/account_notes';
|
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;
|
|
|
|
};
|
|
|
|
|
2018-03-30 06:38:00 -04:00
|
|
|
const setDomainBlocking = (state, accounts, blocking) => {
|
|
|
|
return state.withMutations(map => {
|
|
|
|
accounts.forEach(id => {
|
|
|
|
map.setIn([id, 'domain_blocking'], blocking);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
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) {
|
2018-11-08 15:05:42 -05:00
|
|
|
case ACCOUNT_FOLLOW_REQUEST:
|
2020-09-28 15:44:29 -04:00
|
|
|
return state.getIn([action.id, 'following']) ? state : state.setIn([action.id, action.locked ? 'requested' : 'following'], true);
|
2018-11-08 15:05:42 -05:00
|
|
|
case ACCOUNT_FOLLOW_FAIL:
|
|
|
|
return state.setIn([action.id, action.locked ? 'requested' : 'following'], false);
|
|
|
|
case ACCOUNT_UNFOLLOW_REQUEST:
|
|
|
|
return state.setIn([action.id, 'following'], false);
|
|
|
|
case ACCOUNT_UNFOLLOW_FAIL:
|
|
|
|
return state.setIn([action.id, 'following'], true);
|
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:
|
2018-08-09 03:56:53 -04:00
|
|
|
case ACCOUNT_PIN_SUCCESS:
|
|
|
|
case ACCOUNT_UNPIN_SUCCESS:
|
2020-06-30 13:19:50 -04:00
|
|
|
case ACCOUNT_NOTE_SUBMIT_SUCCESS:
|
2017-03-31 16:44:12 -04:00
|
|
|
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:
|
2018-03-30 06:38:00 -04:00
|
|
|
return setDomainBlocking(state, action.accounts, true);
|
2017-05-19 15:05:32 -04:00
|
|
|
case DOMAIN_UNBLOCK_SUCCESS:
|
2018-03-30 06:38:00 -04:00
|
|
|
return setDomainBlocking(state, action.accounts, false);
|
2017-03-31 16:44:12 -04:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-30 10:06:43 -04:00
|
|
|
}
|
|
|
|
};
|