diff options
Diffstat (limited to 'app/javascript/themes/glitch/reducers/custom_emojis.js')
-rw-r--r-- | app/javascript/themes/glitch/reducers/custom_emojis.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/app/javascript/themes/glitch/reducers/custom_emojis.js b/app/javascript/themes/glitch/reducers/custom_emojis.js deleted file mode 100644 index e3f1e0018..000000000 --- a/app/javascript/themes/glitch/reducers/custom_emojis.js +++ /dev/null @@ -1,16 +0,0 @@ -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; - } -}; |