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-31 21:58:07 +00:00
|
|
|
emojiSearch('', { custom: buildCustomEmojis(action.state.get('custom_emojis', [])) });
|
2017-09-23 03:40:28 +00:00
|
|
|
return action.state.get('custom_emojis');
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|