import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { defineMessages, injectIntl } from 'react-intl'; import { findDOMNode } from 'react-dom'; import cx from 'classnames'; import styles from './styles'; import MessageFormActions from './message-form-actions/component'; import TextareaAutosize from 'react-autosize-textarea'; import Button from '../../button/component'; const propTypes = { }; const defaultProps = { }; const messages = defineMessages({ submitLabel: { id: 'app.chat.submitLabel', description: 'Chat submit button label', }, inputLabel: { id: 'app.chat.inputLabel', description: 'Chat message input label', }, inputPlaceholder: { id: 'app.chat.inputPlaceholder', description: 'Chat message input placeholder', }, errorMinMessageLength: { id: 'app.chat.errorMinMessageLength', }, errorMaxMessageLength: { id: 'app.chat.errorMaxMessageLength', }, }); class MessageForm extends Component { constructor(props) { super(props); this.state = { message: '', error: '', hasErrors: false, }; this.handleMessageChange = this.handleMessageChange.bind(this); this.handleMessageKeyDown = this.handleMessageKeyDown.bind(this); this.handleSubmit = this.handleSubmit.bind(this); } componentDidMount() { this.textarea.focus(); } componentDidUpdate(prevProps) { if (prevProps.chatName !== this.props.chatName) { this.textarea.focus(); } } handleMessageKeyDown(e) { // TODO Prevent send message pressing enter on mobile and/or virtual keyboard if (e.keyCode === 13 && !e.shiftKey) { e.preventDefault(); const event = new Event('submit', { bubbles: true, cancelable: true, }); this.form.dispatchEvent(event); } } handleMessageChange(e) { const { intl } = this.props; const message = e.target.value; let error = ''; const { minMessageLength, maxMessageLength } = this.props; if (message.length < minMessageLength) { error = intl.formatMessage(messages.errorMinMessageLength, { 0: minMessageLength - message.length }); } if (message.length > maxMessageLength) { error = intl.formatMessage(messages.errorMaxMessageLength, { 0: message.length - maxMessageLength }); } this.setState({ message, error, }); } handleSubmit(e) { e.preventDefault(); const { disabled, minMessageLength, maxMessageLength } = this.props; let message = this.state.message.trim(); if (disabled || message.length === 0 || message.length < minMessageLength || message.length > maxMessageLength) { this.setState({ hasErrors: true }); return false; } // Sanitize. See: http://shebang.brandonmintern.com/foolproof-html-escaping-in-javascript/ const div = document.createElement('div'); div.appendChild(document.createTextNode(message)); message = div.innerHTML; return this.props.handleSendMessage(message) .then(() => this.setState({ message: '', hasErrors: false, })); } render() { const { intl, chatTitle, chatName, disabled, minMessageLength, maxMessageLength } = this.props; const { hasErrors, error } = this.state; return (
); } } MessageForm.propTypes = propTypes; MessageForm.defaultProps = defaultProps; export default injectIntl(MessageForm);