mastodon/app/javascript/mastodon/reducers/accounts.js

34 lines
831 B
JavaScript
Raw Normal View History

2018-03-24 13:06:27 +01:00
import { ACCOUNT_IMPORT, ACCOUNTS_IMPORT } from '../actions/importer';
2020-01-06 20:50:36 +01:00
import { fromJS, Map as ImmutableMap } from 'immutable';
2018-03-24 13:06:27 +01:00
const initialState = ImmutableMap();
const normalizeAccount = (state, account) => {
account = { ...account };
delete account.followers_count;
delete account.following_count;
delete account.statuses_count;
return state.set(account.id, fromJS(account));
};
const normalizeAccounts = (state, accounts) => {
accounts.forEach(account => {
state = normalizeAccount(state, account);
});
return state;
};
export default function accounts(state = initialState, action) {
2020-01-06 20:50:36 +01:00
switch (action.type) {
2018-03-24 13:06:27 +01:00
case ACCOUNT_IMPORT:
2017-01-09 12:37:15 +01:00
return normalizeAccount(state, action.account);
2018-03-24 13:06:27 +01:00
case ACCOUNTS_IMPORT:
return normalizeAccounts(state, action.accounts);
2017-01-09 12:37:15 +01:00
default:
return state;
}
};