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 StatusContent from './status_content';
|
|
|
|
import StatusActionBar from './status_action_bar';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-05-03 01:04:16 +01:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-07-07 23:06:02 +01:00
|
|
|
import { MediaGallery, VideoPlayer } from '../features/ui/util/async-components';
|
|
|
|
|
|
|
|
// We use the component (and not the container) since we do not want
|
|
|
|
// to use the progress bar to show download progress
|
|
|
|
import Bundle from '../features/ui/components/bundle';
|
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,
|
|
|
|
onReply: PropTypes.func,
|
|
|
|
onFavourite: PropTypes.func,
|
|
|
|
onReblog: PropTypes.func,
|
|
|
|
onDelete: PropTypes.func,
|
2017-08-25 00:41:18 +01:00
|
|
|
onPin: PropTypes.func,
|
2017-05-12 13:44:10 +01:00
|
|
|
onOpenMedia: PropTypes.func,
|
|
|
|
onOpenVideo: PropTypes.func,
|
|
|
|
onBlock: PropTypes.func,
|
2017-09-01 20:30:13 +01:00
|
|
|
onEmbed: PropTypes.func,
|
2017-08-07 19:32:03 +01:00
|
|
|
onHeightChange: PropTypes.func,
|
2017-05-12 13:44:10 +01:00
|
|
|
me: PropTypes.number,
|
|
|
|
boostModal: PropTypes.bool,
|
|
|
|
autoPlayGif: PropTypes.bool,
|
2017-05-20 16:31:47 +01:00
|
|
|
muted: PropTypes.bool,
|
2017-08-28 21:23:44 +01:00
|
|
|
hidden: PropTypes.bool,
|
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-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',
|
|
|
|
'me',
|
|
|
|
'boostModal',
|
|
|
|
'autoPlayGif',
|
|
|
|
'muted',
|
2017-08-28 21:23:44 +01:00
|
|
|
'hidden',
|
2017-05-26 13:05:52 +01:00
|
|
|
]
|
|
|
|
|
2017-06-13 19:46:21 +01:00
|
|
|
updateOnStates = ['isExpanded']
|
2017-05-26 13:05:52 +01:00
|
|
|
|
2017-05-12 13:44:10 +01:00
|
|
|
handleClick = () => {
|
2017-07-11 14:27:59 +01:00
|
|
|
if (!this.context.router) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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) => {
|
2017-07-11 14:27:59 +01:00
|
|
|
if (this.context.router && 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 });
|
|
|
|
};
|
|
|
|
|
2017-07-07 23:06:02 +01:00
|
|
|
renderLoadingMediaGallery () {
|
|
|
|
return <div className='media_gallery' style={{ height: '110px' }} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
renderLoadingVideoPlayer () {
|
|
|
|
return <div className='media-spoiler-video' style={{ height: '110px' }} />;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-08-28 21:23:44 +01:00
|
|
|
const { status, account, hidden, ...other } = this.props;
|
|
|
|
const { isExpanded } = 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-08-28 21:23:44 +01:00
|
|
|
if (hidden) {
|
2017-05-24 16:55:00 +01:00
|
|
|
return (
|
2017-08-28 21:23:44 +01:00
|
|
|
<div>
|
2017-05-24 16:55:00 +01:00
|
|
|
{status.getIn(['account', 'display_name']) || status.getIn(['account', 'username'])}
|
|
|
|
{status.get('content')}
|
2017-08-28 21:23:44 +01:00
|
|
|
</div>
|
2017-05-24 16:55:00 +01:00
|
|
|
);
|
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') {
|
2017-08-07 19:32:03 +01:00
|
|
|
const display_name_html = { __html: status.getIn(['account', 'display_name_html']) };
|
2016-11-18 23:28:42 +00:00
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
return (
|
2017-08-28 21:23:44 +01:00
|
|
|
<div className='status__wrapper' 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-08-07 19:32:03 +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={display_name_html} /></a> }} />
|
2016-09-01 13:12:11 +01:00
|
|
|
</div>
|
|
|
|
|
2017-08-28 21:23:44 +01:00
|
|
|
<Status {...other} status={status.get('reblog')} account={status.get('account')} />
|
|
|
|
</div>
|
2016-09-01 13:12:11 +01:00
|
|
|
);
|
|
|
|
}
|
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-07-07 23:06:02 +01:00
|
|
|
media = (
|
2017-07-08 00:57:22 +01:00
|
|
|
<Bundle fetchComponent={VideoPlayer} loading={this.renderLoadingVideoPlayer} >
|
2017-07-07 23:06:02 +01:00
|
|
|
{Component => <Component media={status.getIn(['media_attachments', 0])} sensitive={status.get('sensitive')} onOpenVideo={this.props.onOpenVideo} />}
|
|
|
|
</Bundle>
|
|
|
|
);
|
2016-09-17 17:05:02 +01:00
|
|
|
} else {
|
2017-07-07 23:06:02 +01:00
|
|
|
media = (
|
2017-07-08 00:57:22 +01:00
|
|
|
<Bundle fetchComponent={MediaGallery} loading={this.renderLoadingMediaGallery} >
|
2017-07-07 23:06:02 +01:00
|
|
|
{Component => <Component media={status.get('media_attachments')} sensitive={status.get('sensitive')} height={110} onOpenMedia={this.props.onOpenMedia} autoPlayGif={this.props.autoPlayGif} />}
|
|
|
|
</Bundle>
|
|
|
|
);
|
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-08-07 18:44:55 +01:00
|
|
|
statusAvatar = <Avatar account={status.get('account')} size={48} />;
|
2017-05-03 10:43:37 +01:00
|
|
|
}else{
|
2017-08-07 18:44:55 +01:00
|
|
|
statusAvatar = <AvatarOverlay account={status.get('account')} friend={account} />;
|
2017-05-03 10:43:37 +01:00
|
|
|
}
|
|
|
|
|
2016-08-24 16:56:44 +01:00
|
|
|
return (
|
2017-08-28 21:23:44 +01:00
|
|
|
<div className={`status ${this.props.muted ? 'muted' : ''} status-${status.get('visibility')}`} data-id={status.get('id')}>
|
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-07-11 14:27:59 +01:00
|
|
|
<a onClick={this.handleAccountClick} target='_blank' 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-07-08 00:57:22 +01:00
|
|
|
<StatusContent status={status} onClick={this.handleClick} expanded={isExpanded} onExpandedToggle={this.handleExpandedToggle} />
|
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} />
|
2017-08-28 21:23:44 +01:00
|
|
|
</div>
|
2016-08-24 16:56:44 +01:00
|
|
|
);
|
|
|
|
}
|
2016-08-31 15:15:12 +01:00
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
}
|