2017-09-23 03:40:28 +00:00
|
|
|
import { List as ImmutableList } from 'immutable';
|
|
|
|
import { STORE_HYDRATE } from '../actions/store';
|
2017-10-06 01:42:34 +00:00
|
|
|
import { search as emojiSearch } from '../features/emoji/emoji_mart_search_light';
|
|
|
|
import { buildCustomEmojis } from '../features/emoji/emoji';
|
2017-09-23 03:40:28 +00:00
|
|
|
|
|
|
|
const initialState = ImmutableList();
|
|
|
|
|
2017-09-23 12:47:32 +00:00
|
|
|
export default function custom_emojis(state = initialState, action) {
|
2017-09-23 03:40:28 +00:00
|
|
|
switch(action.type) {
|
|
|
|
case STORE_HYDRATE:
|
2017-10-07 00:38:52 +00:00
|
|
|
emojiSearch('', { custom: buildCustomEmojis(action.state.get('custom_emojis', []), action.state.getIn(['meta', 'auto_play_gif'], false)) });
|
2017-09-23 03:40:28 +00:00
|
|
|
return action.state.get('custom_emojis');
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|