* Remove mattermost-redux * Move mm-redux files into app/redux * Add @redux path to tsconfig.json * Fix imports * Install missing dependencies * Fix tsc errors * Fix i18n_utils test * Fix more imports * Remove redux websocket * Fix tests * Rename @redux * Apply changes from mattermost-redux PR 1103 * Remove mattermost-redux mention in template * Add missing imports * Rename app/redux/ to app/mm-redux/ * Remove test file * Fix fetching Sidebar GM profiles Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {IntegrationTypes} from '@mm-redux/action_types';
|
|
import {executeCommand as executeCommandService} from '@mm-redux/actions/integrations';
|
|
import {getCurrentTeamId} from '@mm-redux/selectors/entities/teams';
|
|
|
|
export function executeCommand(message, channelId, rootId) {
|
|
return async (dispatch, getState) => {
|
|
const state = getState();
|
|
|
|
const teamId = getCurrentTeamId(state);
|
|
|
|
const args = {
|
|
channel_id: channelId,
|
|
team_id: teamId,
|
|
root_id: rootId,
|
|
parent_id: rootId,
|
|
};
|
|
|
|
let msg = message;
|
|
|
|
let cmdLength = msg.indexOf(' ');
|
|
if (cmdLength < 0) {
|
|
cmdLength = msg.length;
|
|
}
|
|
|
|
const cmd = msg.substring(0, cmdLength).toLowerCase();
|
|
msg = cmd + msg.substring(cmdLength, msg.length);
|
|
|
|
const {data, error} = await dispatch(executeCommandService(msg, args));
|
|
|
|
if (data?.trigger_id) { //eslint-disable-line camelcase
|
|
dispatch({type: IntegrationTypes.RECEIVED_DIALOG_TRIGGER_ID, data: data.trigger_id});
|
|
}
|
|
|
|
return {data, error};
|
|
};
|
|
}
|