2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-08-31 20:58:10 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-10 22:30:42 +00:00
|
|
|
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';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-12-13 11:17:37 +00:00
|
|
|
import { isRtl } from '../../../rtl';
|
2019-06-13 15:04:52 +00:00
|
|
|
import AttachmentList from 'mastodon/components/attachment_list';
|
2016-11-18 14:36:16 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-20 15:31:47 +00:00
|
|
|
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
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static contextTypes = {
|
2017-05-20 15:31:47 +00:00
|
|
|
router: PropTypes.object,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
status: ImmutablePropTypes.map,
|
|
|
|
onCancel: PropTypes.func.isRequired,
|
2017-05-20 15:31:47 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
2016-08-31 20:58:10 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleClick = () => {
|
2016-08-31 20:58:10 +00:00
|
|
|
this.props.onCancel();
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-08-31 20:58:10 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleAccountClick = (e) => {
|
2018-08-18 10:50:32 +00:00
|
|
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
2016-11-10 22:30:42 +00:00
|
|
|
e.preventDefault();
|
2017-06-20 18:40:03 +00:00
|
|
|
this.context.router.history.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
|
2016-11-10 22:30:42 +00:00
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-10 22:30:42 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:17:37 +00:00
|
|
|
const content = { __html: status.get('contentHtml') };
|
|
|
|
const style = {
|
|
|
|
direction: isRtl(status.get('search_index')) ? 'rtl' : 'ltr',
|
|
|
|
};
|
2016-08-31 20:58:10 +00:00
|
|
|
|
|
|
|
return (
|
2017-02-09 00:20:09 +00:00
|
|
|
<div className='reply-indicator'>
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='reply-indicator__header'>
|
2018-05-01 12:02:04 +00:00
|
|
|
<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
|
|
|
|
2017-04-23 02:26:55 +00:00
|
|
|
<a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='reply-indicator__display-name'>
|
2017-08-07 17:44:55 +00:00
|
|
|
<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>
|
|
|
|
|
2017-12-13 11:17:37 +00:00
|
|
|
<div className='reply-indicator__content' style={style} dangerouslySetInnerHTML={content} />
|
2019-06-13 15:04:52 +00:00
|
|
|
|
|
|
|
{status.get('media_attachments').size > 0 && (
|
|
|
|
<AttachmentList
|
|
|
|
compact
|
|
|
|
media={status.get('media_attachments')}
|
|
|
|
/>
|
|
|
|
)}
|
2016-08-31 20:58:10 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|