about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/reducers/custom_emojis.js
blob: e3f1e001809e5b0ee7ba38ca9e05d6515759f6c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { List as ImmutableList } from 'immutable';
import { STORE_HYDRATE } from 'themes/glitch/actions/store';
import { search as emojiSearch } from 'themes/glitch/util/emoji/emoji_mart_search_light';
import { buildCustomEmojis } from 'themes/glitch/util/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', [])) });
    return action.state.get('custom_emojis');
  default:
    return state;
  }
};