From 0c449ba5c98b4200ac255e2e6b70b754452a861e Mon Sep 17 00:00:00 2001 From: hmhealey Date: Tue, 1 Dec 2015 10:54:53 -0500 Subject: Replaced CommandList with the new suggestion components --- web/react/components/textbox.jsx | 45 +++------------------------------------- 1 file changed, 3 insertions(+), 42 deletions(-) (limited to 'web/react/components/textbox.jsx') diff --git a/web/react/components/textbox.jsx b/web/react/components/textbox.jsx index fde8f64d3..b50575fc1 100644 --- a/web/react/components/textbox.jsx +++ b/web/react/components/textbox.jsx @@ -1,8 +1,8 @@ // Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. -import CommandList from './command_list.jsx'; import AtMentionProvider from './at_mention_provider.jsx'; +import CommandProvider from './command_provider.jsx'; import SuggestionList from './suggestion_list.jsx'; import SuggestionBox from './suggestion_box.jsx'; import ErrorStore from '../stores/error_store.jsx'; @@ -10,7 +10,6 @@ import ErrorStore from '../stores/error_store.jsx'; import * as TextFormatting from '../utils/text_formatting.jsx'; import * as Utils from '../utils/utils.jsx'; import Constants from '../utils/constants.jsx'; -const KeyCodes = Constants.KeyCodes; const PreReleaseFeatures = Constants.PRE_RELEASE_FEATURES; export default class Textbox extends React.Component { @@ -21,8 +20,6 @@ export default class Textbox extends React.Component { this.onRecievedError = this.onRecievedError.bind(this); this.handleKeyPress = this.handleKeyPress.bind(this); this.handleKeyDown = this.handleKeyDown.bind(this); - this.handleBackspace = this.handleBackspace.bind(this); - this.addCommand = this.addCommand.bind(this); this.resize = this.resize.bind(this); this.handleFocus = this.handleFocus.bind(this); this.handleBlur = this.handleBlur.bind(this); @@ -32,9 +29,7 @@ export default class Textbox extends React.Component { connection: '' }; - this.caret = -1; - - this.suggestionProviders = [new AtMentionProvider()]; + this.suggestionProviders = [new AtMentionProvider(), new CommandProvider()]; } getStateFromStores() { @@ -68,48 +63,19 @@ export default class Textbox extends React.Component { } componentDidUpdate() { - if (this.caret >= 0) { - Utils.setCaretPosition(this.refs.message.getTextbox(), this.caret); - this.caret = -1; - } this.resize(); } - componentWillReceiveProps(nextProps) { - this.refs.commands.getSuggestedCommands(nextProps.messageText); - } - handleKeyPress(e) { - const text = this.refs.message.getTextbox().value; - - if (!this.refs.commands.isEmpty() && text.indexOf('/') === 0 && e.which === KeyCodes.ENTER) { - this.refs.commands.addFirstCommand(); - e.preventDefault(); - return; - } - this.props.onKeyPress(e); } handleKeyDown(e) { - if (e.keyCode === KeyCodes.BACKSPACE) { - this.handleBackspace(e); - } else if (this.props.onKeyDown) { + if (this.props.onKeyDown) { this.props.onKeyDown(e); } } - handleBackspace() { - const text = this.refs.message.getTextbox().value; - if (text.indexOf('/') === 0) { - this.refs.commands.getSuggestedCommands(text.substring(0, text.length - 1)); - } - } - - addCommand(cmd) { - this.props.onUserInput(cmd); - } - resize() { const e = this.refs.message.getTextbox(); const w = ReactDOM.findDOMNode(this.refs.wrapper); @@ -193,11 +159,6 @@ export default class Textbox extends React.Component { ref='wrapper' className='textarea-wrapper' > -