import ImmutablePropTypes from 'react-immutable-proptypes'; import PropTypes from 'prop-types'; import Avatar from '../../../components/avatar'; import IconButton from '../../../components/icon_button'; import DisplayName from '../../../components/display_name'; import emojify from '../../../emoji'; import { defineMessages, injectIntl } from 'react-intl'; const messages = defineMessages({ cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' } }); class ReplyIndicator extends React.PureComponent { constructor (props, context) { super(props, context); this.handleClick = this.handleClick.bind(this); this.handleAccountClick = this.handleAccountClick.bind(this); } handleClick () { this.props.onCancel(); } handleAccountClick (e) { if (e.button === 0) { e.preventDefault(); this.context.router.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`); } } render () { const { status, intl } = this.props; if (!status) { return null; } const content = { __html: emojify(status.get('content')) }; return (
); } } ReplyIndicator.contextTypes = { router: PropTypes.object }; ReplyIndicator.propTypes = { status: ImmutablePropTypes.map, onCancel: PropTypes.func.isRequired, intl: PropTypes.object.isRequired }; export default injectIntl(ReplyIndicator);