25 lines
		
	
	
		
			887 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			887 B
		
	
	
	
		
			JavaScript
		
	
	
	
import { Map as ImmutableMap } from 'immutable';
 | 
						|
 | 
						|
import { ACCOUNT_LOOKUP_FAIL } from '../actions/accounts';
 | 
						|
import { importAccounts } from '../actions/accounts_typed';
 | 
						|
import { domain } from '../initial_state';
 | 
						|
 | 
						|
export const normalizeForLookup = str => {
 | 
						|
  str = str.toLowerCase();
 | 
						|
  const trailingIndex = str.indexOf(`@${domain.toLowerCase()}`);
 | 
						|
  return (trailingIndex > 0) ? str.slice(0, trailingIndex) : str;
 | 
						|
};
 | 
						|
 | 
						|
const initialState = ImmutableMap();
 | 
						|
 | 
						|
export default function accountsMap(state = initialState, action) {
 | 
						|
  switch(action.type) {
 | 
						|
  case ACCOUNT_LOOKUP_FAIL:
 | 
						|
    return action.error?.response?.status === 404 ? state.set(normalizeForLookup(action.acct), null) : state;
 | 
						|
  case importAccounts.type:
 | 
						|
    return state.withMutations(map => action.payload.accounts.forEach(account => map.set(normalizeForLookup(account.acct), account.id)));
 | 
						|
  default:
 | 
						|
    return state;
 | 
						|
  }
 | 
						|
}
 |