mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
a7f6524c6b
Port 52e5c07948
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
16 lines
506 B
JavaScript
16 lines
506 B
JavaScript
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;
|
|
}
|
|
};
|