about summary refs log tree commit diff
path: root/app/javascript/mastodon/reducers/custom_emojis.js
blob: f2a8ca5d2e07043cec34893aec74b58903a9c92a (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 '../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;
  }
};