2017-05-03 01:04:16 +01:00
|
|
|
import React from 'react';
|
2016-08-24 16:56:44 +01:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 19:05:35 +01:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-16 16:20:52 +00:00
|
|
|
import Avatar from './avatar';
|
2017-05-03 10:43:37 +01:00
|
|
|
import AvatarOverlay from './avatar_overlay';
|
2016-11-16 16:20:52 +00:00
|
|
|
import RelativeTimestamp from './relative_timestamp';
|
|
|
|
import DisplayName from './display_name';
|
|
|
|
import MediaGallery from './media_gallery';
|
|
|
|
import VideoPlayer from './video_player';
|
|
|
|
import StatusContent from './status_content';
|
|
|
|
import StatusActionBar from './status_action_bar';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-11-18 23:28:42 +00:00
|
|
|
import emojify from '../emoji';
|
2017-02-26 00:34:56 +00:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2017-05-03 01:04:16 +01:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-05-31 14:11:33 +01:00
|
|
|
import scheduleIdleTask from '../features/ui/util/schedule_idle_task';
|
2016-08-24 16:56:44 +01:00
|
|
|
|
2017-06-23 18:36:54 +01:00
|
|
|
export default class Status extends ImmutablePureComponent {
|
2017-04-21 19:05:35 +01:00
|
|
|
|
2017-05-12 13:44:10 +01:00
|
|
|
static contextTypes = {
|
2017-05-20 16:31:47 +01:00
|
|
|
router: PropTypes.object,
|
2017-05-12 13:44:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
status: ImmutablePropTypes.map,
|
|
|
|
account: ImmutablePropTypes.map,
|
|
|
|
wrapped: PropTypes.bool,
|
|
|
|
onReply: PropTypes.func,
|
|
|
|
onFavourite: PropTypes.func,
|
|
|
|
onReblog: PropTypes.func,
|
|
|
|
onDelete: PropTypes.func,
|
|
|
|
onOpenMedia: PropTypes.func,
|
|
|
|
onOpenVideo: PropTypes.func,
|
|
|
|
onBlock: PropTypes.func,
|
|
|
|
me: PropTypes.number,
|
|
|
|
boostModal: PropTypes.bool,
|
|
|
|
autoPlayGif: PropTypes.bool,
|
2017-05-20 16:31:47 +01:00
|
|
|
muted: PropTypes.bool,
|
2017-05-29 17:17:51 +01:00
|
|
|
intersectionObserverWrapper: PropTypes.object,
|
2017-05-12 13:44:10 +01:00
|
|
|
};
|
|
|
|
|
2017-05-24 16:55:00 +01:00
|
|
|
state = {
|
2017-06-13 19:46:21 +01:00
|
|
|
isExpanded: false,
|
2017-05-29 17:17:51 +01:00
|
|
|
isIntersecting: true, // assume intersecting until told otherwise
|
|
|
|
isHidden: false, // set to true in requestIdleCallback to trigger un-render
|
2017-05-24 16:55:00 +01:00
|
|
|
}
|
|
|
|
|
2017-05-26 13:05:52 +01:00
|
|
|
// Avoid checking props that are functions (and whose equality will always
|
|
|
|
// evaluate to false. See react-immutable-pure-component for usage.
|
|
|
|
updateOnProps = [
|
|
|
|
'status',
|
|
|
|
'account',
|
|
|
|
'wrapped',
|
|
|
|
'me',
|
|
|
|
'boostModal',
|
|
|
|
'autoPlayGif',
|
|
|
|
'muted',
|
|
|
|
]
|
|
|
|
|
2017-06-13 19:46:21 +01:00
|
|
|
updateOnStates = ['isExpanded']
|
2017-05-26 13:05:52 +01:00
|
|
|
|
|
|
|
shouldComponentUpdate (nextProps, nextState) {
|
2017-05-29 17:17:51 +01:00
|
|
|
if (!nextState.isIntersecting && nextState.isHidden) {
|
2017-05-26 13:05:52 +01:00
|
|
|
// It's only if we're not intersecting (i.e. offscreen) and isHidden is true
|
|
|
|
// that either "isIntersecting" or "isHidden" matter, and then they're
|
|
|
|
// the only things that matter.
|
2017-05-29 17:17:51 +01:00
|
|
|
return this.state.isIntersecting || !this.state.isHidden;
|
|
|
|
} else if (nextState.isIntersecting && !this.state.isIntersecting) {
|
2017-05-26 13:05:52 +01:00
|
|
|
// If we're going from a non-intersecting state to an intersecting state,
|
|
|
|
// (i.e. offscreen to onscreen), then we definitely need to re-render
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Otherwise, diff based on "updateOnProps" and "updateOnStates"
|
|
|
|
return super.shouldComponentUpdate(nextProps, nextState);
|
|
|
|
}
|
|
|
|
|
2017-05-29 17:17:51 +01:00
|
|
|
componentDidMount () {
|
|
|
|
if (!this.props.intersectionObserverWrapper) {
|
|
|
|
// TODO: enable IntersectionObserver optimization for notification statuses.
|
|
|
|
// These are managed in notifications/index.js rather than status_list.js
|
|
|
|
return;
|
2017-05-24 16:55:00 +01:00
|
|
|
}
|
2017-05-29 17:17:51 +01:00
|
|
|
this.props.intersectionObserverWrapper.observe(
|
|
|
|
this.props.id,
|
|
|
|
this.node,
|
|
|
|
this.handleIntersection
|
|
|
|
);
|
2017-06-20 19:37:09 +01:00
|
|
|
|
|
|
|
this.componentMounted = true;
|
2017-05-24 16:55:00 +01:00
|
|
|
}
|
|
|
|
|
2017-06-19 10:29:57 +01:00
|
|
|
componentWillUnmount () {
|
2017-06-20 19:37:09 +01:00
|
|
|
this.componentMounted = false;
|
2017-06-19 10:29:57 +01:00
|
|
|
}
|
|
|
|
|
2017-05-29 17:17:51 +01:00
|
|
|
handleIntersection = (entry) => {
|
2017-06-03 13:43:10 +01:00
|
|
|
// Edge 15 doesn't support isIntersecting, but we can infer it
|
2017-05-29 17:17:51 +01:00
|
|
|
// https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/12156111/
|
2017-06-03 13:43:10 +01:00
|
|
|
// https://github.com/WICG/IntersectionObserver/issues/211
|
|
|
|
const isIntersecting = (typeof entry.isIntersecting === 'boolean') ?
|
|
|
|
entry.isIntersecting : entry.intersectionRect.height > 0;
|
2017-05-29 17:17:51 +01:00
|
|
|
this.setState((prevState) => {
|
|
|
|
if (prevState.isIntersecting && !isIntersecting) {
|
2017-05-31 14:11:33 +01:00
|
|
|
scheduleIdleTask(this.hideIfNotIntersecting);
|
2017-05-24 16:55:00 +01:00
|
|
|
}
|
2017-05-29 17:17:51 +01:00
|
|
|
return {
|
|
|
|
isIntersecting: isIntersecting,
|
|
|
|
isHidden: false,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
hideIfNotIntersecting = () => {
|
2017-06-20 19:37:09 +01:00
|
|
|
if (!this.componentMounted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-29 17:17:51 +01:00
|
|
|
// When the browser gets a chance, test if we're still not intersecting,
|
|
|
|
// and if so, set our isHidden to true to trigger an unrender. The point of
|
|
|
|
// this is to save DOM nodes and avoid using up too much memory.
|
|
|
|
// See: https://github.com/tootsuite/mastodon/issues/2900
|
|
|
|
this.setState((prevState) => ({ isHidden: !prevState.isIntersecting }));
|
|
|
|
}
|
|
|
|
|
2017-06-13 19:46:21 +01:00
|
|
|
saveHeight = () => {
|
|
|
|
if (this.node && this.node.children.length !== 0) {
|
|
|
|
this.height = this.node.clientHeight;
|
|
|
|
}
|
|
|
|
}
|
2017-05-29 17:17:51 +01:00
|
|
|
|
|
|
|
handleRef = (node) => {
|
|
|
|
this.node = node;
|
2017-06-13 19:46:21 +01:00
|
|
|
this.saveHeight();
|
2017-05-24 16:55:00 +01:00
|
|
|
}
|
|
|
|
|
2017-05-12 13:44:10 +01:00
|
|
|
handleClick = () => {
|
2016-09-15 23:21:51 +01:00
|
|
|
const { status } = this.props;
|
2017-06-20 19:40:03 +01:00
|
|
|
this.context.router.history.push(`/statuses/${status.getIn(['reblog', 'id'], status.get('id'))}`);
|
2017-04-21 19:05:35 +01:00
|
|
|
}
|
2016-09-15 23:21:51 +01:00
|
|
|
|
2017-05-19 19:58:12 +01:00
|
|
|
handleAccountClick = (e) => {
|
2016-09-15 23:21:51 +01:00
|
|
|
if (e.button === 0) {
|
2017-05-19 19:58:12 +01:00
|
|
|
const id = Number(e.currentTarget.getAttribute('data-id'));
|
2016-09-15 23:21:51 +01:00
|
|
|
e.preventDefault();
|
2017-06-20 19:40:03 +01:00
|
|
|
this.context.router.history.push(`/accounts/${id}`);
|
2016-09-15 23:21:51 +01:00
|
|
|
}
|
2017-04-21 19:05:35 +01:00
|
|
|
}
|
2016-09-13 01:24:40 +01:00
|
|
|
|
2017-06-13 19:46:21 +01:00
|
|
|
handleExpandedToggle = () => {
|
|
|
|
this.setState({ isExpanded: !this.state.isExpanded });
|
|
|
|
};
|
|
|
|
|
2016-08-24 20:08:00 +01:00
|
|
|
render () {
|
2017-05-24 16:55:00 +01:00
|
|
|
let media = null;
|
2017-05-03 10:43:37 +01:00
|
|
|
let statusAvatar;
|
2017-06-21 05:47:36 +01:00
|
|
|
|
|
|
|
// Exclude intersectionObserverWrapper from `other` variable
|
|
|
|
// because intersection is managed in here.
|
|
|
|
const { status, account, intersectionObserverWrapper, ...other } = this.props;
|
2017-06-13 19:46:21 +01:00
|
|
|
const { isExpanded, isIntersecting, isHidden } = this.state;
|
2016-09-05 19:38:31 +01:00
|
|
|
|
2016-10-25 10:13:16 +01:00
|
|
|
if (status === null) {
|
2017-05-26 13:07:48 +01:00
|
|
|
return null;
|
2017-05-24 16:55:00 +01:00
|
|
|
}
|
|
|
|
|
2017-05-29 17:17:51 +01:00
|
|
|
if (!isIntersecting && isHidden) {
|
2017-05-24 16:55:00 +01:00
|
|
|
return (
|
2017-05-25 01:23:54 +01:00
|
|
|
<div ref={this.handleRef} data-id={status.get('id')} style={{ height: `${this.height}px`, opacity: 0, overflow: 'hidden' }}>
|
2017-05-24 16:55:00 +01:00
|
|
|
{status.getIn(['account', 'display_name']) || status.getIn(['account', 'username'])}
|
|
|
|
{status.get('content')}
|
|
|
|
</div>
|
|
|
|
);
|
2016-10-25 10:13:16 +01:00
|
|
|
}
|
|
|
|
|
2016-10-18 00:44:26 +01:00
|
|
|
if (status.get('reblog', null) !== null && typeof status.get('reblog') === 'object') {
|
2016-10-06 21:07:32 +01:00
|
|
|
let displayName = status.getIn(['account', 'display_name']);
|
|
|
|
|
|
|
|
if (displayName.length === 0) {
|
|
|
|
displayName = status.getIn(['account', 'username']);
|
|
|
|
}
|
|
|
|
|
2016-11-18 23:28:42 +00:00
|
|
|
const displayNameHTML = { __html: emojify(escapeTextContentForBrowser(displayName)) };
|
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
return (
|
2017-05-24 16:55:00 +01:00
|
|
|
<div className='status__wrapper' ref={this.handleRef} data-id={status.get('id')} >
|
2017-02-09 00:20:09 +00:00
|
|
|
<div className='status__prepend'>
|
2017-04-23 03:26:55 +01:00
|
|
|
<div className='status__prepend-icon-wrapper'><i className='fa fa-fw fa-retweet status__prepend-icon' /></div>
|
2017-05-19 19:58:12 +01:00
|
|
|
<FormattedMessage id='status.reblogged_by' defaultMessage='{name} boosted' values={{ name: <a onClick={this.handleAccountClick} data-id={status.getIn(['account', 'id'])} href={status.getIn(['account', 'url'])} className='status__display-name muted'><strong dangerouslySetInnerHTML={displayNameHTML} /></a> }} />
|
2016-09-01 13:12:11 +01:00
|
|
|
</div>
|
|
|
|
|
2017-06-06 12:20:07 +01:00
|
|
|
<Status {...other} wrapped status={status.get('reblog')} account={status.get('account')} />
|
2016-09-01 13:12:11 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-24 16:56:44 +01:00
|
|
|
|
2016-11-24 22:09:53 +00:00
|
|
|
if (status.get('media_attachments').size > 0 && !this.props.muted) {
|
2017-04-19 14:37:18 +01:00
|
|
|
if (status.get('media_attachments').some(item => item.get('type') === 'unknown')) {
|
|
|
|
|
|
|
|
} else if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
|
2017-04-13 14:04:18 +01:00
|
|
|
media = <VideoPlayer media={status.getIn(['media_attachments', 0])} sensitive={status.get('sensitive')} onOpenVideo={this.props.onOpenVideo} />;
|
2016-09-17 17:05:02 +01:00
|
|
|
} else {
|
2017-04-17 11:14:03 +01:00
|
|
|
media = <MediaGallery media={status.get('media_attachments')} sensitive={status.get('sensitive')} height={110} onOpenMedia={this.props.onOpenMedia} autoPlayGif={this.props.autoPlayGif} />;
|
2016-09-17 17:05:02 +01:00
|
|
|
}
|
2016-09-05 19:38:31 +01:00
|
|
|
}
|
|
|
|
|
2017-05-03 10:43:37 +01:00
|
|
|
if (account === undefined || account === null) {
|
2017-06-06 12:20:07 +01:00
|
|
|
statusAvatar = <Avatar src={status.getIn(['account', 'avatar'])} staticSrc={status.getIn(['account', 'avatar_static'])} size={48} />;
|
2017-05-03 10:43:37 +01:00
|
|
|
}else{
|
|
|
|
statusAvatar = <AvatarOverlay staticSrc={status.getIn(['account', 'avatar_static'])} overlaySrc={account.get('avatar_static')} />;
|
|
|
|
}
|
|
|
|
|
2016-08-24 16:56:44 +01:00
|
|
|
return (
|
2017-05-24 16:55:00 +01:00
|
|
|
<div className={`status ${this.props.muted ? 'muted' : ''} status-${status.get('visibility')}`} data-id={status.get('id')} ref={this.handleRef}>
|
2017-04-23 03:26:55 +01:00
|
|
|
<div className='status__info'>
|
2017-05-20 15:48:49 +01:00
|
|
|
<a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
|
2016-08-24 20:08:00 +01:00
|
|
|
|
2017-05-19 19:58:12 +01:00
|
|
|
<a onClick={this.handleAccountClick} data-id={status.getIn(['account', 'id'])} href={status.getIn(['account', 'url'])} className='status__display-name'>
|
2017-04-23 03:26:55 +01:00
|
|
|
<div className='status__avatar'>
|
2017-05-03 10:43:37 +01:00
|
|
|
{statusAvatar}
|
2016-08-24 20:08:00 +01:00
|
|
|
</div>
|
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
<DisplayName account={status.get('account')} />
|
2016-08-31 21:58:10 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2017-06-13 19:46:21 +01:00
|
|
|
<StatusContent status={status} onClick={this.handleClick} expanded={isExpanded} onExpandedToggle={this.handleExpandedToggle} onHeightUpdate={this.saveHeight} />
|
2016-08-24 20:08:00 +01:00
|
|
|
|
2016-09-05 19:38:31 +01:00
|
|
|
{media}
|
|
|
|
|
2016-09-29 23:00:45 +01:00
|
|
|
<StatusActionBar {...this.props} />
|
2016-08-24 16:56:44 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-31 15:15:12 +01:00
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
}
|