From 39154d22aeda926e2af7707352cc65ead0f8d469 Mon Sep 17 00:00:00 2001 From: Saturnino Abril Date: Tue, 11 Jul 2017 05:37:08 +0800 Subject: make sidebar right menu Global actions and toggle that on leaving team (#6900) --- webapp/components/leave_team_modal.jsx | 1 + webapp/components/sidebar_right_menu.jsx | 17 +---------------- 2 files changed, 2 insertions(+), 16 deletions(-) (limited to 'webapp/components') diff --git a/webapp/components/leave_team_modal.jsx b/webapp/components/leave_team_modal.jsx index 379ece4c3..a38dd2da1 100644 --- a/webapp/components/leave_team_modal.jsx +++ b/webapp/components/leave_team_modal.jsx @@ -61,6 +61,7 @@ class LeaveTeamModal extends React.Component { } GlobalActions.emitLeaveTeam(); + GlobalActions.toggleSideBarRightMenuAction(); } handleHide() { diff --git a/webapp/components/sidebar_right_menu.jsx b/webapp/components/sidebar_right_menu.jsx index d40e90279..f0e6f10a1 100644 --- a/webapp/components/sidebar_right_menu.jsx +++ b/webapp/components/sidebar_right_menu.jsx @@ -1,7 +1,6 @@ // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. -import AppDispatcher from 'dispatcher/app_dispatcher.jsx'; import TeamMembersModal from './team_members_modal.jsx'; import ToggleModalButton from './toggle_modal_button.jsx'; import AboutBuildModal from './about_build_modal.jsx'; @@ -19,7 +18,6 @@ import * as UserAgent from 'utils/user_agent.jsx'; import * as Utils from 'utils/utils.jsx'; import {Constants, WebrtcActionTypes} from 'utils/constants.jsx'; -const ActionTypes = Constants.ActionTypes; const Preferences = Constants.Preferences; const TutorialSteps = Constants.TutorialSteps; @@ -143,20 +141,7 @@ export default class SidebarRightMenu extends React.Component { hideSidebars() { if (Utils.isMobile()) { - AppDispatcher.handleServerAction({ - type: ActionTypes.RECEIVED_SEARCH, - results: null - }); - - AppDispatcher.handleServerAction({ - type: ActionTypes.RECEIVED_POST_SELECTED, - postId: null - }); - - document.querySelector('.app__body .inner-wrap').classList.remove('move--right', 'move--left', 'move--left-small'); - document.querySelector('.app__body .sidebar--left').classList.remove('move--right'); - document.querySelector('.app__body .sidebar--right').classList.remove('move--left'); - document.querySelector('.app__body .sidebar--menu').classList.remove('move--left'); + GlobalActions.toggleSideBarRightMenuAction(); } } -- cgit v1.2.3-1-g7c22