2017-07-12 04:02:51 -04:00
|
|
|
// Package imports //
|
2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-09-21 18:32:27 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-02-25 19:34:56 -05:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-24 18:49:08 -05:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-07-12 04:02:51 -04:00
|
|
|
|
|
|
|
// Mastodon imports //
|
|
|
|
import emojify from '../../../mastodon/emoji';
|
|
|
|
import { isRtl } from '../../../mastodon/rtl';
|
|
|
|
import Permalink from '../../../mastodon/components/permalink';
|
2016-09-21 18:32:27 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class StatusContent extends React.PureComponent {
|
2016-09-21 18:32:27 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static contextTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
router: PropTypes.object,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
2017-07-05 21:51:03 -04:00
|
|
|
expanded: PropTypes.oneOf([true, false, null]),
|
|
|
|
setExpansion: PropTypes.func,
|
2017-06-13 14:46:21 -04:00
|
|
|
onHeightUpdate: PropTypes.func,
|
2017-07-05 21:51:03 -04:00
|
|
|
media: PropTypes.element,
|
2017-06-29 02:20:47 -04:00
|
|
|
mediaIcon: PropTypes.string,
|
2017-07-05 21:51:03 -04:00
|
|
|
parseClick: PropTypes.func,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2017-05-20 11:31:47 -04:00
|
|
|
hidden: true,
|
2017-04-21 14:05:35 -04:00
|
|
|
};
|
2016-09-21 18:32:27 -04:00
|
|
|
|
|
|
|
componentDidMount () {
|
2017-05-02 20:04:16 -04:00
|
|
|
const node = this.node;
|
2016-09-23 14:23:26 -04:00
|
|
|
const links = node.querySelectorAll('a');
|
|
|
|
|
|
|
|
for (var i = 0; i < links.length; ++i) {
|
|
|
|
let link = links[i];
|
|
|
|
let mention = this.props.status.get('mentions').find(item => link.href === item.get('url'));
|
|
|
|
|
|
|
|
if (mention) {
|
2016-10-13 19:03:12 -04:00
|
|
|
link.addEventListener('click', this.onMentionClick.bind(this, mention), false);
|
2017-04-10 18:35:35 -04:00
|
|
|
link.setAttribute('title', mention.get('acct'));
|
2016-11-05 12:54:19 -04:00
|
|
|
} else if (link.textContent[0] === '#' || (link.previousSibling && link.previousSibling.textContent && link.previousSibling.textContent[link.previousSibling.textContent.length - 1] === '#')) {
|
2016-11-05 10:20:05 -04:00
|
|
|
link.addEventListener('click', this.onHashtagClick.bind(this, link.text), false);
|
2016-09-23 14:23:26 -04:00
|
|
|
} else {
|
2017-06-26 18:22:03 -04:00
|
|
|
link.addEventListener('click', this.onLinkClick.bind(this), false);
|
2016-09-23 14:23:26 -04:00
|
|
|
link.setAttribute('target', '_blank');
|
|
|
|
link.setAttribute('rel', 'noopener');
|
2017-04-14 07:22:56 -04:00
|
|
|
link.setAttribute('title', link.href);
|
2016-09-23 14:23:26 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-09-21 18:32:27 -04:00
|
|
|
|
2017-06-13 14:46:21 -04:00
|
|
|
componentDidUpdate () {
|
|
|
|
if (this.props.onHeightUpdate) {
|
|
|
|
this.props.onHeightUpdate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-26 18:22:03 -04:00
|
|
|
onLinkClick = (e) => {
|
2017-07-05 21:51:03 -04:00
|
|
|
if (this.props.expanded === false) {
|
|
|
|
if (this.props.parseClick) this.props.parseClick(e);
|
2017-06-26 18:22:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
onMentionClick = (mention, e) => {
|
2017-07-05 21:51:03 -04:00
|
|
|
if (this.props.parseClick) {
|
|
|
|
this.props.parseClick(e, `/accounts/${mention.get('id')}`);
|
2016-09-21 18:32:27 -04:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-10-03 12:17:06 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
onHashtagClick = (hashtag, e) => {
|
2016-11-05 10:20:05 -04:00
|
|
|
hashtag = hashtag.replace(/^#/, '').toLowerCase();
|
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
if (this.props.parseClick) {
|
|
|
|
this.props.parseClick(e, `/timelines/tag/${hashtag}`);
|
2016-11-05 10:20:05 -04:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-09-21 18:32:27 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleMouseDown = (e) => {
|
2017-01-24 11:05:44 -05:00
|
|
|
this.startXY = [e.clientX, e.clientY];
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-01-24 11:05:44 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleMouseUp = (e) => {
|
2017-07-05 21:51:03 -04:00
|
|
|
const { parseClick } = this.props;
|
|
|
|
|
2017-05-25 10:27:44 -04:00
|
|
|
if (!this.startXY) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-24 11:05:44 -05:00
|
|
|
const [ startX, startY ] = this.startXY;
|
|
|
|
const [ deltaX, deltaY ] = [Math.abs(e.clientX - startX), Math.abs(e.clientY - startY)];
|
|
|
|
|
2017-06-19 19:34:10 -04:00
|
|
|
if (e.target.localName === 'button' || e.target.localName === 'a' || (e.target.parentNode && (e.target.parentNode.localName === 'button' || e.target.parentNode.localName === 'a'))) {
|
2017-01-24 12:51:09 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
if (deltaX + deltaY < 5 && e.button === 0 && parseClick) {
|
|
|
|
parseClick(e);
|
2017-01-24 11:05:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
this.startXY = null;
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-09-23 14:23:26 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleSpoilerClick = (e) => {
|
2017-02-08 19:20:09 -05:00
|
|
|
e.preventDefault();
|
2017-06-13 14:46:21 -04:00
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
if (this.props.setExpansion) {
|
|
|
|
this.props.setExpansion(this.props.expanded ? null : true);
|
2017-06-13 14:46:21 -04:00
|
|
|
} else {
|
|
|
|
this.setState({ hidden: !this.state.hidden });
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-01-24 18:49:08 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
setRef = (c) => {
|
2017-05-02 20:04:16 -04:00
|
|
|
this.node = c;
|
|
|
|
}
|
|
|
|
|
2016-09-21 18:32:27 -04:00
|
|
|
render () {
|
2017-07-05 21:51:03 -04:00
|
|
|
const { status, media, mediaIcon } = this.props;
|
2017-06-13 14:46:21 -04:00
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
const hidden = (
|
|
|
|
this.props.setExpansion ?
|
|
|
|
!this.props.expanded :
|
|
|
|
this.state.hidden
|
|
|
|
);
|
2016-11-30 10:10:19 -05:00
|
|
|
|
2017-04-13 13:23:36 -04:00
|
|
|
const content = { __html: emojify(status.get('content')) };
|
2017-07-05 21:51:03 -04:00
|
|
|
const spoilerContent = {
|
|
|
|
__html: emojify(escapeTextContentForBrowser(
|
|
|
|
status.get('spoiler_text', '')
|
|
|
|
)),
|
|
|
|
};
|
2017-02-27 19:52:31 -05:00
|
|
|
const directionStyle = { direction: 'ltr' };
|
|
|
|
|
2017-06-10 09:06:50 -04:00
|
|
|
if (isRtl(status.get('search_index'))) {
|
2017-02-27 19:52:31 -05:00
|
|
|
directionStyle.direction = 'rtl';
|
|
|
|
}
|
2017-01-24 18:49:08 -05:00
|
|
|
|
|
|
|
if (status.get('spoiler_text').length > 0) {
|
2017-02-04 22:11:14 -05:00
|
|
|
let mentionsPlaceholder = '';
|
|
|
|
|
2017-02-04 19:19:27 -05:00
|
|
|
const mentionLinks = status.get('mentions').map(item => (
|
2017-07-05 21:51:03 -04:00
|
|
|
<Permalink
|
|
|
|
to={`/accounts/${item.get('id')}`}
|
|
|
|
href={item.get('url')}
|
|
|
|
key={item.get('id')}
|
|
|
|
className='mention'
|
|
|
|
>
|
2017-02-04 19:19:27 -05:00
|
|
|
@<span>{item.get('username')}</span>
|
|
|
|
</Permalink>
|
2017-05-20 11:31:47 -04:00
|
|
|
)).reduce((aggregate, item) => [...aggregate, item, ' '], []);
|
2017-02-04 19:19:27 -05:00
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
const toggleText = hidden ? [
|
|
|
|
<FormattedMessage
|
|
|
|
id='status.show_more'
|
|
|
|
defaultMessage='Show more'
|
|
|
|
key='0'
|
|
|
|
/>,
|
|
|
|
mediaIcon ? (
|
|
|
|
<i
|
|
|
|
className={
|
|
|
|
`fa fa-fw fa-${mediaIcon} status__content__spoiler-icon`
|
|
|
|
}
|
|
|
|
aria-hidden='true'
|
|
|
|
key='1'
|
|
|
|
/>
|
|
|
|
) : null,
|
|
|
|
] : [
|
|
|
|
<FormattedMessage
|
|
|
|
id='status.show_less'
|
|
|
|
defaultMessage='Show less'
|
|
|
|
key='0'
|
|
|
|
/>,
|
|
|
|
];
|
2017-02-04 19:19:27 -05:00
|
|
|
|
2017-02-04 22:11:14 -05:00
|
|
|
if (hidden) {
|
|
|
|
mentionsPlaceholder = <div>{mentionLinks}</div>;
|
|
|
|
}
|
|
|
|
|
2017-01-24 18:49:08 -05:00
|
|
|
return (
|
2017-06-30 02:39:57 -04:00
|
|
|
<div className='status__content status__content--with-action' ref={this.setRef}>
|
|
|
|
<p
|
|
|
|
style={{ marginBottom: hidden && status.get('mentions').isEmpty() ? '0px' : null }}
|
|
|
|
onMouseDown={this.handleMouseDown}
|
|
|
|
onMouseUp={this.handleMouseUp}
|
|
|
|
>
|
2017-05-19 05:42:54 -04:00
|
|
|
<span dangerouslySetInnerHTML={spoilerContent} />
|
|
|
|
{' '}
|
2017-06-29 02:20:47 -04:00
|
|
|
<button tabIndex='0' className='status__content__spoiler-link' onClick={this.handleSpoilerClick}>
|
2017-06-29 04:43:15 -04:00
|
|
|
{toggleText}
|
2017-06-29 02:20:47 -04:00
|
|
|
</button>
|
2017-01-24 18:49:08 -05:00
|
|
|
</p>
|
|
|
|
|
2017-02-04 22:11:14 -05:00
|
|
|
{mentionsPlaceholder}
|
|
|
|
|
2017-06-25 22:15:03 -04:00
|
|
|
<div className={`status__content__spoiler ${!hidden ? 'status__content__spoiler--visible' : ''}`}>
|
2017-06-30 02:39:57 -04:00
|
|
|
<div
|
|
|
|
style={directionStyle}
|
|
|
|
onMouseDown={this.handleMouseDown}
|
|
|
|
onMouseUp={this.handleMouseUp}
|
|
|
|
dangerouslySetInnerHTML={content}
|
|
|
|
/>
|
2017-07-05 21:51:03 -04:00
|
|
|
{media}
|
2017-06-25 22:15:03 -04:00
|
|
|
</div>
|
|
|
|
|
2017-01-24 18:49:08 -05:00
|
|
|
</div>
|
|
|
|
);
|
2017-07-05 21:51:03 -04:00
|
|
|
} else if (this.props.parseClick) {
|
2017-01-24 18:49:08 -05:00
|
|
|
return (
|
|
|
|
<div
|
2017-05-02 20:04:16 -04:00
|
|
|
ref={this.setRef}
|
2017-06-19 12:27:07 -04:00
|
|
|
className='status__content status__content--with-action'
|
2017-05-19 05:42:54 -04:00
|
|
|
style={directionStyle}
|
2017-06-25 22:15:03 -04:00
|
|
|
>
|
2017-06-29 01:57:30 -04:00
|
|
|
<div
|
|
|
|
onMouseDown={this.handleMouseDown}
|
|
|
|
onMouseUp={this.handleMouseUp}
|
|
|
|
dangerouslySetInnerHTML={content}
|
|
|
|
/>
|
2017-07-05 21:51:03 -04:00
|
|
|
{media}
|
2017-06-25 22:15:03 -04:00
|
|
|
</div>
|
2017-01-24 18:49:08 -05:00
|
|
|
);
|
2017-04-10 15:31:26 -04:00
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
<div
|
2017-05-02 20:04:16 -04:00
|
|
|
ref={this.setRef}
|
2017-06-19 12:27:07 -04:00
|
|
|
className='status__content'
|
2017-05-19 05:42:54 -04:00
|
|
|
style={directionStyle}
|
2017-06-25 22:15:03 -04:00
|
|
|
>
|
|
|
|
<div dangerouslySetInnerHTML={content} />
|
2017-07-05 21:51:03 -04:00
|
|
|
{media}
|
2017-06-25 22:15:03 -04:00
|
|
|
</div>
|
2017-04-10 15:31:26 -04:00
|
|
|
);
|
2017-01-24 18:49:08 -05:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|