You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
628 B
17 lines
628 B
import { List as ImmutableList } from 'immutable';
|
|
import { STORE_HYDRATE } from '../actions/store';
|
|
import { search as emojiSearch } from '../features/emoji/emoji_mart_search_light';
|
|
import { buildCustomEmojis } from '../features/emoji/emoji';
|
|
|
|
const initialState = ImmutableList();
|
|
|
|
export default function custom_emojis(state = initialState, action) {
|
|
switch(action.type) {
|
|
case STORE_HYDRATE:
|
|
emojiSearch('', { custom: buildCustomEmojis(action.state.get('custom_emojis', []), action.state.getIn(['meta', 'auto_play_gif'], false)) });
|
|
return action.state.get('custom_emojis');
|
|
default:
|
|
return state;
|
|
}
|
|
};
|