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