2023-05-28 14:38:10 +00:00
|
|
|
import { Map as ImmutableMap, fromJS } from 'immutable';
|
|
|
|
|
2022-12-15 17:50:11 +00:00
|
|
|
import {
|
2023-05-28 14:38:10 +00:00
|
|
|
ACCOUNT_NOTE_SUBMIT_SUCCESS,
|
|
|
|
} from 'flavours/glitch/actions/account_notes';
|
2016-10-30 14:06:43 +00:00
|
|
|
import {
|
|
|
|
ACCOUNT_FOLLOW_SUCCESS,
|
2018-11-08 20:05:42 +00:00
|
|
|
ACCOUNT_FOLLOW_REQUEST,
|
|
|
|
ACCOUNT_FOLLOW_FAIL,
|
2016-10-30 14:06:43 +00:00
|
|
|
ACCOUNT_UNFOLLOW_SUCCESS,
|
2018-11-08 20:05:42 +00:00
|
|
|
ACCOUNT_UNFOLLOW_REQUEST,
|
|
|
|
ACCOUNT_UNFOLLOW_FAIL,
|
2016-10-30 14:06:43 +00:00
|
|
|
ACCOUNT_BLOCK_SUCCESS,
|
|
|
|
ACCOUNT_UNBLOCK_SUCCESS,
|
2017-02-06 01:51:56 +00:00
|
|
|
ACCOUNT_MUTE_SUCCESS,
|
|
|
|
ACCOUNT_UNMUTE_SUCCESS,
|
2018-08-10 14:25:46 +00:00
|
|
|
ACCOUNT_PIN_SUCCESS,
|
|
|
|
ACCOUNT_UNPIN_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
RELATIONSHIPS_FETCH_SUCCESS,
|
2022-12-15 17:50:11 +00:00
|
|
|
FOLLOW_REQUEST_AUTHORIZE_SUCCESS,
|
|
|
|
FOLLOW_REQUEST_REJECT_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/accounts';
|
2017-05-19 19:05:32 +00:00
|
|
|
import {
|
|
|
|
DOMAIN_BLOCK_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
DOMAIN_UNBLOCK_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/domain_blocks';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2020-06-30 17:19:50 +00:00
|
|
|
import {
|
2023-05-28 14:38:10 +00:00
|
|
|
NOTIFICATIONS_UPDATE,
|
|
|
|
} from '../actions/notifications';
|
|
|
|
|
2016-10-30 14:06:43 +00:00
|
|
|
|
2017-07-10 23:00:14 +00:00
|
|
|
const normalizeRelationship = (state, relationship) => state.set(relationship.id, fromJS(relationship));
|
2016-10-30 14:06:43 +00:00
|
|
|
|
|
|
|
const normalizeRelationships = (state, relationships) => {
|
|
|
|
relationships.forEach(relationship => {
|
|
|
|
state = normalizeRelationship(state, relationship);
|
|
|
|
});
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2018-03-04 22:38:00 +00:00
|
|
|
const setDomainBlocking = (state, accounts, blocking) => {
|
|
|
|
return state.withMutations(map => {
|
|
|
|
accounts.forEach(id => {
|
|
|
|
map.setIn([id, 'domain_blocking'], blocking);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-07-10 23:00:14 +00:00
|
|
|
const initialState = ImmutableMap();
|
2016-10-30 14:06:43 +00:00
|
|
|
|
|
|
|
export default function relationships(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2022-12-15 17:50:11 +00:00
|
|
|
case FOLLOW_REQUEST_AUTHORIZE_SUCCESS:
|
|
|
|
return state.setIn([action.id, 'followed_by'], true).setIn([action.id, 'requested_by'], false);
|
|
|
|
case FOLLOW_REQUEST_REJECT_SUCCESS:
|
|
|
|
return state.setIn([action.id, 'followed_by'], false).setIn([action.id, 'requested_by'], false);
|
|
|
|
case NOTIFICATIONS_UPDATE:
|
|
|
|
return action.notification.type === 'follow_request' ? state.setIn([action.notification.account.id, 'requested_by'], true) : state;
|
2018-11-08 20:05:42 +00:00
|
|
|
case ACCOUNT_FOLLOW_REQUEST:
|
2020-09-28 19:44:29 +00:00
|
|
|
return state.getIn([action.id, 'following']) ? state : state.setIn([action.id, action.locked ? 'requested' : 'following'], true);
|
2018-11-08 20:05:42 +00: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 20:44:12 +00: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-10 14:25:46 +00:00
|
|
|
case ACCOUNT_PIN_SUCCESS:
|
|
|
|
case ACCOUNT_UNPIN_SUCCESS:
|
2020-06-30 17:19:50 +00:00
|
|
|
case ACCOUNT_NOTE_SUBMIT_SUCCESS:
|
2017-03-31 20:44:12 +00:00
|
|
|
return normalizeRelationship(state, action.relationship);
|
|
|
|
case RELATIONSHIPS_FETCH_SUCCESS:
|
|
|
|
return normalizeRelationships(state, action.relationships);
|
2017-05-19 19:05:32 +00:00
|
|
|
case DOMAIN_BLOCK_SUCCESS:
|
2018-03-04 22:38:00 +00:00
|
|
|
return setDomainBlocking(state, action.accounts, true);
|
2017-05-19 19:05:32 +00:00
|
|
|
case DOMAIN_UNBLOCK_SUCCESS:
|
2018-03-04 22:38:00 +00:00
|
|
|
return setDomainBlocking(state, action.accounts, false);
|
2017-03-31 20:44:12 +00:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-30 14:06:43 +00:00
|
|
|
}
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|