mastodon/app/javascript/mastodon/features/compose/components/reply_indicator.js

72 lines
2.2 KiB
JavaScript
Raw Normal View History

import React from 'react';
2016-08-31 20:58:10 +00: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';
2016-11-18 14:36:16 +00:00
import { defineMessages, injectIntl } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component';
import AttachmentList from 'mastodon/components/attachment_list';
2016-11-18 14:36:16 +00:00
const messages = defineMessages({
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' },
2016-11-18 14:36:16 +00:00
});
2016-08-31 20:58:10 +00:00
2018-09-14 15:59:48 +00:00
export default @injectIntl
class ReplyIndicator extends ImmutablePureComponent {
2016-08-31 20:58:10 +00:00
static contextTypes = {
router: PropTypes.object,
};
static propTypes = {
status: ImmutablePropTypes.map,
onCancel: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
};
2016-08-31 20:58:10 +00:00
handleClick = () => {
2016-08-31 20:58:10 +00:00
this.props.onCancel();
}
2016-08-31 20:58:10 +00:00
handleAccountClick = (e) => {
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
e.preventDefault();
this.context.router.history.push(`/@${this.props.status.getIn(['account', 'acct'])}`);
}
}
2016-08-31 20:58:10 +00:00
render () {
2017-02-22 14:43:07 +00:00
const { status, intl } = this.props;
if (!status) {
return null;
}
const content = { __html: status.get('contentHtml') };
2016-08-31 20:58:10 +00: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} inverted /></div>
2016-08-31 20:58:10 +00:00
<a href={`/@${status.getIn(['account', 'acct'])}`} onClick={this.handleAccountClick} className='reply-indicator__display-name'>
<div className='reply-indicator__display-avatar'><Avatar account={status.get('account')} size={24} /></div>
2017-02-22 14:43:07 +00:00
<DisplayName account={status.get('account')} />
2016-08-31 20:58:10 +00:00
</a>
</div>
<div className='reply-indicator__content translate' dangerouslySetInnerHTML={content} />
{status.get('media_attachments').size > 0 && (
<AttachmentList
compact
media={status.get('media_attachments')}
/>
)}
2016-08-31 20:58:10 +00:00
</div>
);
}
}