import React, { PureComponent } from 'react'; import classnames from 'classnames'; import stringToRGB from 'utils/color'; export default class Message extends PureComponent { handleNickClick = () => this.props.onNickClick(this.props.message.from); render() { const { message, coloredNick } = this.props; const className = classnames('message', { [`message-${message.type}`]: message.type }); const style = { paddingLeft: `${window.messageIndent + 15}px`, textIndent: `-${window.messageIndent}px`, ...this.props.style }; const senderStyle = {}; if (message.from && coloredNick) { senderStyle.color = stringToRGB(message.from); } return (

{message.time} {message.from && ( {' '} {message.from} )}{' '} {message.content}

); } }