From 6c4c706313eb765eb00c639f381646be74f27b69 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Tue, 25 Apr 2017 11:46:02 -0400 Subject: Start moving webapp to Redux (#6140) * Start moving webapp to Redux * Fix localforage import * Updates per feedback * Feedback udpates and a few fixes * Minor updates * Fix statuses, config not loading properly, getMe sanitizing too much * Fix preferences * Fix user autocomplete * Fix sessions and audits * Fix error handling for all redux actions * Use new directory structure for components and containers * Refresh immediately on logout instead of after timeout * Add fetch polyfill --- webapp/actions/emoji_actions.jsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'webapp/actions/emoji_actions.jsx') diff --git a/webapp/actions/emoji_actions.jsx b/webapp/actions/emoji_actions.jsx index feb6bd76b..ed8bc84f7 100644 --- a/webapp/actions/emoji_actions.jsx +++ b/webapp/actions/emoji_actions.jsx @@ -10,6 +10,12 @@ import Client from 'client/web_client.jsx'; import {ActionTypes} from 'utils/constants.jsx'; +// Redux actions +import store from 'stores/redux_store.jsx'; +const dispatch = store.dispatch; +const getState = store.getState; +import {getProfilesByIds} from 'mattermost-redux/actions/users'; + export function loadEmoji(getProfiles = true) { Client.listEmoji( (data) => { @@ -42,5 +48,5 @@ function loadProfilesForEmoji(emojiList) { return; } - AsyncClient.getProfilesByIds(list); + getProfilesByIds(list)(dispatch, getState); } -- cgit v1.2.3-1-g7c22