about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/accounts_map.js
blob: e0d42e9cd44303c9eed502ca4cd668f494e43794 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { ACCOUNT_IMPORT, ACCOUNTS_IMPORT } from '../actions/importer';
import { Map as ImmutableMap } from 'immutable';

const initialState = ImmutableMap();

export default function accountsMap(state = initialState, action) {
  switch(action.type) {
  case ACCOUNT_IMPORT:
    return state.set(action.account.acct, action.account.id);
  case ACCOUNTS_IMPORT:
    return state.withMutations(map => action.accounts.forEach(account => map.set(account.acct, account.id)));
  default:
    return state;
  }
};