2017-05-03 10:04:16 +10:00
|
|
|
import React from 'react';
|
2016-09-01 06:58:10 +10:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-11 09:30:42 +11:00
|
|
|
import Avatar from '../../../components/avatar';
|
|
|
|
import IconButton from '../../../components/icon_button';
|
|
|
|
import DisplayName from '../../../components/display_name';
|
2016-11-19 01:36:16 +11:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-05-03 10:04:16 +10:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2019-06-14 01:04:52 +10:00
|
|
|
import AttachmentList from 'mastodon/components/attachment_list';
|
2016-11-19 01:36:16 +11:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-21 01:31:47 +10:00
|
|
|
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' },
|
2016-11-19 01:36:16 +11:00
|
|
|
});
|
2016-09-01 06:58:10 +10:00
|
|
|
|
2018-09-15 01:59:48 +10:00
|
|
|
export default @injectIntl
|
|
|
|
class ReplyIndicator extends ImmutablePureComponent {
|
2016-09-01 06:58:10 +10:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
static contextTypes = {
|
2017-05-21 01:31:47 +10:00
|
|
|
router: PropTypes.object,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
status: ImmutablePropTypes.map,
|
|
|
|
onCancel: PropTypes.func.isRequired,
|
2017-05-21 01:31:47 +10:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
2016-09-01 06:58:10 +10:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
handleClick = () => {
|
2016-09-01 06:58:10 +10:00
|
|
|
this.props.onCancel();
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2016-09-01 06:58:10 +10:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
handleAccountClick = (e) => {
|
2018-08-18 20:50:32 +10:00
|
|
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
2016-11-11 09:30:42 +11:00
|
|
|
e.preventDefault();
|
2021-09-26 13:46:13 +10:00
|
|
|
this.context.router.history.push(`/@${this.props.status.getIn(['account', 'acct'])}`);
|
2016-11-11 09:30:42 +11:00
|
|
|
}
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2016-11-11 09:30:42 +11:00
|
|
|
|
2016-09-01 06:58:10 +10:00
|
|
|
render () {
|
2017-02-23 01:43:07 +11:00
|
|
|
const { status, intl } = this.props;
|
|
|
|
|
|
|
|
if (!status) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-12-13 22:17:37 +11:00
|
|
|
const content = { __html: status.get('contentHtml') };
|
2016-09-01 06:58:10 +10:00
|
|
|
|
|
|
|
return (
|
2017-02-09 11:20:09 +11:00
|
|
|
<div className='reply-indicator'>
|
2017-04-23 12:26:55 +10:00
|
|
|
<div className='reply-indicator__header'>
|
2018-05-01 22:02:04 +10:00
|
|
|
<div className='reply-indicator__cancel'><IconButton title={intl.formatMessage(messages.cancel)} icon='times' onClick={this.handleClick} inverted /></div>
|
2016-09-01 06:58:10 +10:00
|
|
|
|
2022-11-14 07:10:20 +11:00
|
|
|
<a href={`/@${status.getIn(['account', 'acct'])}`} onClick={this.handleAccountClick} className='reply-indicator__display-name'>
|
2017-08-08 03:44:55 +10:00
|
|
|
<div className='reply-indicator__display-avatar'><Avatar account={status.get('account')} size={24} /></div>
|
2017-02-23 01:43:07 +11:00
|
|
|
<DisplayName account={status.get('account')} />
|
2016-09-01 06:58:10 +10:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2021-01-22 20:09:23 +11:00
|
|
|
<div className='reply-indicator__content translate' dangerouslySetInnerHTML={content} />
|
2019-06-14 01:04:52 +10:00
|
|
|
|
|
|
|
{status.get('media_attachments').size > 0 && (
|
|
|
|
<AttachmentList
|
|
|
|
compact
|
|
|
|
media={status.get('media_attachments')}
|
|
|
|
/>
|
|
|
|
)}
|
2016-09-01 06:58:10 +10:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|