summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-06-20 12:18:10 -0400
committerGitHub <noreply@github.com>2016-06-20 12:18:10 -0400
commit86d3c32a249c9b233691186c1b8b808ee956aa00 (patch)
tree2e6c16c0c1717ffaad774b0dcecfbc8e30e19f1e /webapp/components
parent0485c5f64e295c718139f027037b02ccc7cec28e (diff)
downloadchat-86d3c32a249c9b233691186c1b8b808ee956aa00.tar.gz
chat-86d3c32a249c9b233691186c1b8b808ee956aa00.tar.bz2
chat-86d3c32a249c9b233691186c1b8b808ee956aa00.zip
Revert "PLT-3220 Fixed create channel modal not saving upon enter" (#3378)
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/new_channel_modal.jsx30
1 files changed, 0 insertions, 30 deletions
diff --git a/webapp/components/new_channel_modal.jsx b/webapp/components/new_channel_modal.jsx
index 138bee661..45d7169db 100644
--- a/webapp/components/new_channel_modal.jsx
+++ b/webapp/components/new_channel_modal.jsx
@@ -4,8 +4,6 @@
import $ from 'jquery';
import ReactDOM from 'react-dom';
import * as Utils from 'utils/utils.jsx';
-import Constants from 'utils/constants.jsx';
-import PreferenceStore from 'stores/preference_store.jsx';
import {intlShape, injectIntl, defineMessages, FormattedMessage} from 'react-intl';
@@ -26,16 +24,11 @@ class NewChannelModal extends React.Component {
this.handleSubmit = this.handleSubmit.bind(this);
this.handleChange = this.handleChange.bind(this);
- this.onEnterKeyDown = this.onEnterKeyDown.bind(this);
- this.onPreferenceChange = this.onPreferenceChange.bind(this);
-
- this.ctrlSend = PreferenceStore.getBool(Constants.Preferences.CATEGORY_ADVANCED_SETTINGS, 'send_on_ctrl_enter');
this.state = {
displayNameError: ''
};
}
-
componentWillReceiveProps(nextProps) {
if (nextProps.show === true && this.props.show === false) {
this.setState({
@@ -43,32 +36,11 @@ class NewChannelModal extends React.Component {
});
}
}
-
componentDidMount() {
if (Utils.isBrowserIE()) {
$('body').addClass('browser--ie');
}
- document.addEventListener('keydown', this.onEnterKeyDown);
- PreferenceStore.addChangeListener(this.onPreferenceChange);
- }
-
- componentWillUnmount() {
- document.removeEventListener('keydown', this.onEnterKeyDown);
- PreferenceStore.removeChangeListener(this.onPreferenceChange);
- }
-
- onPreferenceChange() {
- this.ctrlSend = PreferenceStore.getBool(Constants.Preferences.CATEGORY_ADVANCED_SETTINGS, 'send_on_ctrl_enter');
}
-
- onEnterKeyDown(e) {
- if (this.ctrlSend && e.keyCode === Constants.KeyCodes.ENTER && e.ctrlKey) {
- this.handleSubmit(e);
- } else if (!this.ctrlSend && e.keyCode === Constants.KeyCodes.ENTER && !e.shiftKey && !e.altKey) {
- this.handleSubmit(e);
- }
- }
-
handleSubmit(e) {
e.preventDefault();
@@ -80,7 +52,6 @@ class NewChannelModal extends React.Component {
this.props.onSubmitChannel();
}
-
handleChange() {
const newData = {
displayName: ReactDOM.findDOMNode(this.refs.display_name).value,
@@ -88,7 +59,6 @@ class NewChannelModal extends React.Component {
};
this.props.onDataChanged(newData);
}
-
render() {
var displayNameError = null;
var serverError = null;