mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
f9f0949bd3
Port 5e908c5a95
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
18 lines
607 B
JavaScript
18 lines
607 B
JavaScript
import { ACCOUNT_IMPORT, ACCOUNTS_IMPORT } from '../actions/importer';
|
|
import { Map as ImmutableMap } from 'immutable';
|
|
|
|
export const normalizeForLookup = str => str.toLowerCase();
|
|
|
|
const initialState = ImmutableMap();
|
|
|
|
export default function accountsMap(state = initialState, action) {
|
|
switch(action.type) {
|
|
case ACCOUNT_IMPORT:
|
|
return state.set(normalizeForLookup(action.account.acct), action.account.id);
|
|
case ACCOUNTS_IMPORT:
|
|
return state.withMutations(map => action.accounts.forEach(account => map.set(normalizeForLookup(account.acct), account.id)));
|
|
default:
|
|
return state;
|
|
}
|
|
};
|