// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import $ from 'jquery'; import AtMentionProvider from './suggestion/at_mention_provider.jsx'; import CommandProvider from './suggestion/command_provider.jsx'; import EmoticonProvider from './suggestion/emoticon_provider.jsx'; import SuggestionList from './suggestion/suggestion_list.jsx'; import SuggestionBox from './suggestion/suggestion_box.jsx'; 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'; import {FormattedMessage} from 'react-intl'; const PreReleaseFeatures = Constants.PRE_RELEASE_FEATURES; import React from 'react'; export default class Textbox extends React.Component { constructor(props) { super(props); this.focus = this.focus.bind(this); this.getStateFromStores = this.getStateFromStores.bind(this); this.onRecievedError = this.onRecievedError.bind(this); this.handleKeyPress = this.handleKeyPress.bind(this); this.handleKeyDown = this.handleKeyDown.bind(this); this.handleHeightChange = this.handleHeightChange.bind(this); this.showPreview = this.showPreview.bind(this); this.state = { connection: '' }; this.suggestionProviders = [new AtMentionProvider(), new EmoticonProvider()]; if (props.supportsCommands) { this.suggestionProviders.push(new CommandProvider()); } } getStateFromStores() { const error = ErrorStore.getLastError(); if (error) { return {message: error.message}; } return {message: null}; } componentDidMount() { ErrorStore.addChangeListener(this.onRecievedError); } componentWillUnmount() { ErrorStore.removeChangeListener(this.onRecievedError); } onRecievedError() { const errorCount = ErrorStore.getConnectionErrorCount(); if (errorCount > 1) { this.setState({connection: 'bad-connection'}); } else { this.setState({connection: ''}); } } handleKeyPress(e) { this.props.onKeyPress(e); } handleKeyDown(e) { if (this.props.onKeyDown) { this.props.onKeyDown(e); } } handleHeightChange(height) { const textbox = $(this.refs.message.getTextbox()); const wrapper = $(this.refs.wrapper); const maxHeight = parseInt(textbox.css('max-height'), 10); // move over attachment icon to compensate for the scrollbar if (height > maxHeight) { wrapper.closest('.post-body__cell').addClass('scroll'); } else { wrapper.closest('.post-body__cell').removeClass('scroll'); } } focus() { this.refs.message.getTextbox().focus(); } showPreview(e) { e.preventDefault(); e.target.blur(); this.setState({preview: !this.state.preview}); } render() { const hasText = this.props.messageText.length > 0; let previewLink = null; if (Utils.isFeatureEnabled(PreReleaseFeatures.MARKDOWN_PREVIEW)) { previewLink = ( {this.state.preview ? ( ) : ( )} ); } const helpText = (
{'~~'} {'~~ '}
); return (
{helpText} {previewLink}
); } } Textbox.defaultProps = { supportsCommands: true }; Textbox.propTypes = { id: React.PropTypes.string.isRequired, channelId: React.PropTypes.string, messageText: React.PropTypes.string.isRequired, onInput: React.PropTypes.func.isRequired, onKeyPress: React.PropTypes.func.isRequired, createMessage: React.PropTypes.string.isRequired, onKeyDown: React.PropTypes.func, supportsCommands: React.PropTypes.bool.isRequired };