2021-09-26 13:46:13 +10:00
|
|
|
import { Map as ImmutableMap } from 'immutable';
|
|
|
|
|
2023-05-24 01:15:17 +10:00
|
|
|
import { ACCOUNT_LOOKUP_FAIL } from '../actions/accounts';
|
2023-11-04 02:00:03 +11:00
|
|
|
import { importAccounts } from '../actions/accounts_typed';
|
2024-01-03 02:02:25 +11:00
|
|
|
import { domain } from '../initial_state';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2024-01-03 02:02:25 +11:00
|
|
|
export const normalizeForLookup = str => {
|
|
|
|
str = str.toLowerCase();
|
|
|
|
const trailingIndex = str.indexOf(`@${domain.toLowerCase()}`);
|
|
|
|
return (trailingIndex > 0) ? str.slice(0, trailingIndex) : str;
|
|
|
|
};
|
2022-10-21 19:06:03 +11:00
|
|
|
|
2021-09-26 13:46:13 +10:00
|
|
|
const initialState = ImmutableMap();
|
|
|
|
|
|
|
|
export default function accountsMap(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2022-11-28 06:48:12 +11:00
|
|
|
case ACCOUNT_LOOKUP_FAIL:
|
|
|
|
return action.error?.response?.status === 404 ? state.set(normalizeForLookup(action.acct), null) : state;
|
2023-11-04 02:00:03 +11:00
|
|
|
case importAccounts.type:
|
|
|
|
return state.withMutations(map => action.payload.accounts.forEach(account => map.set(normalizeForLookup(account.acct), account.id)));
|
2021-09-26 13:46:13 +10:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
2022-12-19 02:51:37 +11:00
|
|
|
}
|