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/integration_actions.jsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'webapp/actions/integration_actions.jsx') diff --git a/webapp/actions/integration_actions.jsx b/webapp/actions/integration_actions.jsx index 43a4c75f4..c1bbf3432 100644 --- a/webapp/actions/integration_actions.jsx +++ b/webapp/actions/integration_actions.jsx @@ -11,6 +11,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 loadIncomingHooks() { Client.listIncomingHooks( (data) => { @@ -42,7 +48,7 @@ function loadProfilesForIncomingHooks(hooks) { return; } - AsyncClient.getProfilesByIds(list); + getProfilesByIds(list)(dispatch, getState); } export function loadOutgoingHooks() { @@ -76,7 +82,7 @@ function loadProfilesForOutgoingHooks(hooks) { return; } - AsyncClient.getProfilesByIds(list); + getProfilesByIds(list)(dispatch, getState); } export function loadTeamCommands() { @@ -110,5 +116,5 @@ function loadProfilesForCommands(commands) { return; } - AsyncClient.getProfilesByIds(list); + getProfilesByIds(list)(dispatch, getState); } -- cgit v1.2.3-1-g7c22