2022-05-10 03:44:35 -04:00
|
|
|
import { ACCOUNT_IMPORT, ACCOUNTS_IMPORT } from 'mastodon/actions/importer';
|
|
|
|
import { ACCOUNT_REVEAL } from 'mastodon/actions/accounts';
|
2017-07-10 19:00:14 -04:00
|
|
|
import { Map as ImmutableMap, fromJS } from 'immutable';
|
2018-03-24 08:06:27 -04:00
|
|
|
|
|
|
|
const initialState = ImmutableMap();
|
2016-10-30 10:06:43 -04:00
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
const normalizeAccount = (state, account) => {
|
|
|
|
account = { ...account };
|
|
|
|
|
|
|
|
delete account.followers_count;
|
|
|
|
delete account.following_count;
|
|
|
|
delete account.statuses_count;
|
|
|
|
|
2022-05-10 03:44:35 -04:00
|
|
|
account.hidden = state.getIn([account.id, 'hidden']) === false ? false : account.limited;
|
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.set(account.id, fromJS(account));
|
2017-05-02 20:04:16 -04:00
|
|
|
};
|
2016-10-30 10:06:43 -04:00
|
|
|
|
|
|
|
const normalizeAccounts = (state, accounts) => {
|
|
|
|
accounts.forEach(account => {
|
|
|
|
state = normalizeAccount(state, account);
|
|
|
|
});
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function accounts(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2018-03-24 08:06:27 -04:00
|
|
|
case ACCOUNT_IMPORT:
|
2017-01-09 06:37:15 -05:00
|
|
|
return normalizeAccount(state, action.account);
|
2018-03-24 08:06:27 -04:00
|
|
|
case ACCOUNTS_IMPORT:
|
|
|
|
return normalizeAccounts(state, action.accounts);
|
2022-05-10 03:44:35 -04:00
|
|
|
case ACCOUNT_REVEAL:
|
|
|
|
return state.setIn([action.id, 'hidden'], false);
|
2017-01-09 06:37:15 -05:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-30 10:06:43 -04:00
|
|
|
}
|
|
|
|
};
|