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';
|
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
|
|
|
|
2017-06-24 03:36:54 +10:00
|
|
|
@injectIntl
|
|
|
|
export default 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) => {
|
2016-11-11 09:30:42 +11:00
|
|
|
if (e.button === 0) {
|
|
|
|
e.preventDefault();
|
2017-06-21 04:40:03 +10:00
|
|
|
this.context.router.history.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
|
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-08-08 04:32:03 +10: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'>
|
|
|
|
<div className='reply-indicator__cancel'><IconButton title={intl.formatMessage(messages.cancel)} icon='times' onClick={this.handleClick} /></div>
|
2016-09-01 06:58:10 +10:00
|
|
|
|
2017-04-23 12:26:55 +10:00
|
|
|
<a href={status.getIn(['account', 'url'])} 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>
|
|
|
|
|
|
|
|
<div className='reply-indicator__content' dangerouslySetInnerHTML={content} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|