2021-09-26 05:46:13 +02:00
|
|
|
import { Map as ImmutableMap } from 'immutable';
|
|
|
|
|
2023-05-28 16:38:10 +02:00
|
|
|
import { ACCOUNT_LOOKUP_FAIL } from '../actions/accounts';
|
2023-11-03 16:00:03 +01:00
|
|
|
import { importAccounts } from '../actions/accounts_typed';
|
2024-01-02 16:02:25 +01:00
|
|
|
import { domain } from '../initial_state';
|
2023-05-28 16:38:10 +02:00
|
|
|
|
2024-01-02 16:02:25 +01: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 10:06:03 +02:00
|
|
|
|
2021-09-26 05:46:13 +02:00
|
|
|
const initialState = ImmutableMap();
|
|
|
|
|
|
|
|
export default function accountsMap(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2022-11-27 20:48:12 +01:00
|
|
|
case ACCOUNT_LOOKUP_FAIL:
|
|
|
|
return action.error?.response?.status === 404 ? state.set(normalizeForLookup(action.acct), null) : state;
|
2023-11-03 16:00:03 +01:00
|
|
|
case importAccounts.type:
|
|
|
|
return state.withMutations(map => action.payload.accounts.forEach(account => map.set(normalizeForLookup(account.acct), account.id)));
|
2021-09-26 05:46:13 +02:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
2023-02-03 20:52:07 +01:00
|
|
|
}
|