1e02ba111a
* Add emoji autosuggest Some credit goes to glitch-soc/mastodon#149 * Remove server-side shortcode->unicode conversion * Insert shortcode when suggestion is custom emoji * Remove remnant of server-side emojis * Update style of autosuggestions * Fix wrong emoji filenames generated in autosuggest item * Do not lazy load emoji picker, as that no longer works * Fix custom emoji autosuggest * Fix multiple "Custom" categories getting added to emoji index, only add once
17 lines
523 B
JavaScript
17 lines
523 B
JavaScript
import { List as ImmutableList } from 'immutable';
|
|
import { STORE_HYDRATE } from '../actions/store';
|
|
import { emojiIndex } from 'emoji-mart';
|
|
import { buildCustomEmojis } from '../emoji';
|
|
|
|
const initialState = ImmutableList();
|
|
|
|
export default function custom_emojis(state = initialState, action) {
|
|
switch(action.type) {
|
|
case STORE_HYDRATE:
|
|
emojiIndex.search('', { custom: buildCustomEmojis(action.state.get('custom_emojis', [])) });
|
|
return action.state.get('custom_emojis');
|
|
default:
|
|
return state;
|
|
}
|
|
};
|