mastodon/app/assets/javascripts/components/features/compose/components/reply_indicator.jsx

70 lines
2.1 KiB
React
Raw Normal View History

2016-08-31 22:58:10 +02:00
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';
2016-11-18 15:36:16 +01:00
import { defineMessages, injectIntl } from 'react-intl';
const messages = defineMessages({
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' }
});
2016-08-31 22:58:10 +02:00
class ReplyIndicator extends React.PureComponent {
2016-08-31 22:58:10 +02:00
constructor (props, context) {
super(props, context);
this.handleClick = this.handleClick.bind(this);
this.handleAccountClick = this.handleAccountClick.bind(this);
}
2016-08-31 22:58:10 +02:00
handleClick () {
this.props.onCancel();
}
2016-08-31 22:58:10 +02:00
handleAccountClick (e) {
if (e.button === 0) {
e.preventDefault();
this.context.router.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
}
}
2016-08-31 22:58:10 +02:00
render () {
2017-02-22 15:43:07 +01:00
const { status, intl } = this.props;
if (!status) {
return null;
}
const content = { __html: emojify(status.get('content')) };
2016-08-31 22:58:10 +02:00
return (
<div className='reply-indicator'>
<div className='reply-indicator__header'>
<div className='reply-indicator__cancel'><IconButton title={intl.formatMessage(messages.cancel)} icon='times' onClick={this.handleClick} /></div>
2016-08-31 22:58:10 +02:00
<a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='reply-indicator__display-name'>
<div className='reply-indicator__display-avatar'><Avatar size={24} src={status.getIn(['account', 'avatar'])} staticSrc={status.getIn(['account', 'avatar_static'])} /></div>
2017-02-22 15:43:07 +01:00
<DisplayName account={status.get('account')} />
2016-08-31 22:58:10 +02:00
</a>
</div>
<div className='reply-indicator__content' dangerouslySetInnerHTML={content} />
</div>
);
}
}
ReplyIndicator.contextTypes = {
router: PropTypes.object
};
ReplyIndicator.propTypes = {
status: ImmutablePropTypes.map,
onCancel: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired
};
2016-08-31 22:58:10 +02:00
export default injectIntl(ReplyIndicator);