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