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