summaryrefslogtreecommitdiffstats
path: root/webapp/components/leave_team_modal.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/leave_team_modal.jsx')
-rw-r--r--webapp/components/leave_team_modal.jsx16
1 files changed, 11 insertions, 5 deletions
diff --git a/webapp/components/leave_team_modal.jsx b/webapp/components/leave_team_modal.jsx
index 7263f23d4..f8f5675c7 100644
--- a/webapp/components/leave_team_modal.jsx
+++ b/webapp/components/leave_team_modal.jsx
@@ -1,11 +1,11 @@
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
-import Constants from 'utils/constants.jsx';
-const ActionTypes = Constants.ActionTypes;
+import {ActionTypes, WebrtcActionTypes} from 'utils/constants.jsx';
import * as GlobalActions from 'actions/global_actions.jsx';
import ModalStore from 'stores/modal_store.jsx';
import UserStore from 'stores/user_store.jsx';
+import WebrtcStore from 'stores/webrtc_store.jsx';
import {intlShape, injectIntl, FormattedMessage} from 'react-intl';
@@ -40,12 +40,18 @@ class LeaveTeamModal extends React.Component {
});
}
- handleSubmit() {
- GlobalActions.emitLeaveTeam();
-
+ handleSubmit(e) {
this.setState({
show: false
});
+
+ if (WebrtcStore.isBusy()) {
+ WebrtcStore.emitChanged({action: WebrtcActionTypes.IN_PROGRESS});
+ e.preventDefault();
+ return;
+ }
+
+ GlobalActions.emitLeaveTeam();
}
handleHide() {