import React, { PureComponent } from 'react'; export default class MessageInput extends PureComponent { state = { value: '' }; handleKey = e => { const { tab, runCommand, sendMessage, addInputHistory, incrementInputHistory, decrementInputHistory, resetInputHistory } = this.props; if (e.which === 13 && e.target.value) { if (e.target.value[0] === '/') { runCommand(e.target.value, tab.name, tab.server); } else if (tab.name) { sendMessage(e.target.value, tab.name, tab.server); } addInputHistory(e.target.value); resetInputHistory(); this.setState({ value: '' }); } else if (e.which === 38) { e.preventDefault(); incrementInputHistory(); } else if (e.which === 40) { decrementInputHistory(); } else if (e.key === 'Backspace' || e.key === 'Delete') { resetInputHistory(); } else if (e.key === 'Unidentified') { this.setState({ value: e.target.value }); resetInputHistory(); } }; handleChange = e => { this.setState({ value: e.target.value }); }; render() { const { nick } = this.props; return (
{nick}
); } }