about summary refs log blame commit diff
path: root/app/javascript/flavours/glitch/reducers/accounts.js
blob: 530ed8e6077ebc50d9cf2329733cf4a0c778ed49 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                                                      
                                                        
 
                                    
 





                                              
                                                
  







                                                
                                                                
                      
                                                   
                                                     
                 
   
import { ACCOUNT_IMPORT, ACCOUNTS_IMPORT } from '../actions/importer';
import { Map as ImmutableMap, fromJS } from 'immutable';

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) {
  switch(action.type) {
  case ACCOUNT_IMPORT:
    return normalizeAccount(state, action.account);
  case ACCOUNTS_IMPORT:
    return normalizeAccounts(state, action.accounts);
  default:
    return state;
  }
};