2018-04-04 16:25:34 -04:00
|
|
|
import { List as ImmutableList, fromJS as ConvertToImmutable } from 'immutable';
|
|
|
|
import { CUSTOM_EMOJIS_FETCH_SUCCESS } from '../actions/custom_emojis';
|
2017-10-05 21:42:34 -04:00
|
|
|
import { search as emojiSearch } from '../features/emoji/emoji_mart_search_light';
|
|
|
|
import { buildCustomEmojis } from '../features/emoji/emoji';
|
2017-09-22 23:40:28 -04:00
|
|
|
|
2018-04-04 16:25:34 -04:00
|
|
|
const initialState = ImmutableList([]);
|
2017-09-22 23:40:28 -04:00
|
|
|
|
2017-09-23 08:47:32 -04:00
|
|
|
export default function custom_emojis(state = initialState, action) {
|
2018-04-04 16:25:34 -04:00
|
|
|
if(action.type === CUSTOM_EMOJIS_FETCH_SUCCESS) {
|
|
|
|
state = ConvertToImmutable(action.custom_emojis);
|
|
|
|
emojiSearch('', { custom: buildCustomEmojis(state) });
|
2017-09-22 23:40:28 -04:00
|
|
|
}
|
2018-04-04 16:25:34 -04:00
|
|
|
|
|
|
|
return state;
|
2017-09-22 23:40:28 -04:00
|
|
|
};
|