2017-05-03 09:04:16 +09:00
|
|
|
import React from 'react';
|
2016-08-25 00:56:44 +09:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-22 03:05:35 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-17 01:20:52 +09:00
|
|
|
import Avatar from './avatar';
|
2017-05-03 18:43:37 +09:00
|
|
|
import AvatarOverlay from './avatar_overlay';
|
2016-11-17 01:20:52 +09: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 09:04:16 +09:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-09-14 10:39:10 +09:00
|
|
|
import { MediaGallery, Video } from '../features/ui/util/async-components';
|
2017-07-08 07:06:02 +09:00
|
|
|
|
|
|
|
// 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-25 00:56:44 +09:00
|
|
|
|
2017-06-24 02:36:54 +09:00
|
|
|
export default class Status extends ImmutablePureComponent {
|
2017-04-22 03:05:35 +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,
|
|
|
|
account: ImmutablePropTypes.map,
|
|
|
|
onReply: PropTypes.func,
|
|
|
|
onFavourite: PropTypes.func,
|
|
|
|
onReblog: PropTypes.func,
|
|
|
|
onDelete: PropTypes.func,
|
2017-08-25 08:41:18 +09:00
|
|
|
onPin: PropTypes.func,
|
2017-05-12 21:44:10 +09:00
|
|
|
onOpenMedia: PropTypes.func,
|
|
|
|
onOpenVideo: PropTypes.func,
|
|
|
|
onBlock: PropTypes.func,
|
2017-09-02 04:30:13 +09:00
|
|
|
onEmbed: PropTypes.func,
|
2017-08-08 03:32:03 +09:00
|
|
|
onHeightChange: PropTypes.func,
|
2017-05-12 21:44:10 +09:00
|
|
|
me: PropTypes.number,
|
|
|
|
boostModal: PropTypes.bool,
|
|
|
|
autoPlayGif: PropTypes.bool,
|
2017-05-21 00:31:47 +09:00
|
|
|
muted: PropTypes.bool,
|
2017-08-29 05:23:44 +09:00
|
|
|
hidden: PropTypes.bool,
|
2017-05-12 21:44:10 +09:00
|
|
|
};
|
|
|
|
|
2017-05-25 00:55:00 +09:00
|
|
|
state = {
|
2017-06-14 03:46:21 +09:00
|
|
|
isExpanded: false,
|
2017-05-25 00:55:00 +09:00
|
|
|
}
|
|
|
|
|
2017-05-26 21:05:52 +09: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-29 05:23:44 +09:00
|
|
|
'hidden',
|
2017-05-26 21:05:52 +09:00
|
|
|
]
|
|
|
|
|
2017-06-14 03:46:21 +09:00
|
|
|
updateOnStates = ['isExpanded']
|
2017-05-26 21:05:52 +09:00
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
handleClick = () => {
|
2017-07-11 22:27:59 +09:00
|
|
|
if (!this.context.router) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-16 07:21:51 +09:00
|
|
|
const { status } = this.props;
|
2017-06-21 03:40:03 +09:00
|
|
|
this.context.router.history.push(`/statuses/${status.getIn(['reblog', 'id'], status.get('id'))}`);
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2016-09-16 07:21:51 +09:00
|
|
|
|
2017-05-20 03:58:12 +09:00
|
|
|
handleAccountClick = (e) => {
|
2017-07-11 22:27:59 +09:00
|
|
|
if (this.context.router && e.button === 0) {
|
2017-05-20 03:58:12 +09:00
|
|
|
const id = Number(e.currentTarget.getAttribute('data-id'));
|
2016-09-16 07:21:51 +09:00
|
|
|
e.preventDefault();
|
2017-06-21 03:40:03 +09:00
|
|
|
this.context.router.history.push(`/accounts/${id}`);
|
2016-09-16 07:21:51 +09:00
|
|
|
}
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2016-09-13 09:24:40 +09:00
|
|
|
|
2017-06-14 03:46:21 +09:00
|
|
|
handleExpandedToggle = () => {
|
|
|
|
this.setState({ isExpanded: !this.state.isExpanded });
|
|
|
|
};
|
|
|
|
|
2017-07-08 07:06:02 +09:00
|
|
|
renderLoadingMediaGallery () {
|
|
|
|
return <div className='media_gallery' style={{ height: '110px' }} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
renderLoadingVideoPlayer () {
|
|
|
|
return <div className='media-spoiler-video' style={{ height: '110px' }} />;
|
|
|
|
}
|
|
|
|
|
2017-09-14 10:39:10 +09:00
|
|
|
handleOpenVideo = startTime => {
|
|
|
|
this.props.onOpenVideo(this.props.status.getIn(['media_attachments', 0]), startTime);
|
|
|
|
}
|
|
|
|
|
2016-08-25 04:08:00 +09:00
|
|
|
render () {
|
2017-05-25 00:55:00 +09:00
|
|
|
let media = null;
|
2017-05-03 18:43:37 +09:00
|
|
|
let statusAvatar;
|
2017-06-21 13:47:36 +09:00
|
|
|
|
2017-08-29 05:23:44 +09:00
|
|
|
const { status, account, hidden, ...other } = this.props;
|
|
|
|
const { isExpanded } = this.state;
|
2016-09-06 03:38:31 +09:00
|
|
|
|
2016-10-25 18:13:16 +09:00
|
|
|
if (status === null) {
|
2017-05-26 21:07:48 +09:00
|
|
|
return null;
|
2017-05-25 00:55:00 +09:00
|
|
|
}
|
|
|
|
|
2017-08-29 05:23:44 +09:00
|
|
|
if (hidden) {
|
2017-05-25 00:55:00 +09:00
|
|
|
return (
|
2017-08-29 05:23:44 +09:00
|
|
|
<div>
|
2017-05-25 00:55:00 +09:00
|
|
|
{status.getIn(['account', 'display_name']) || status.getIn(['account', 'username'])}
|
|
|
|
{status.get('content')}
|
2017-08-29 05:23:44 +09:00
|
|
|
</div>
|
2017-05-25 00:55:00 +09:00
|
|
|
);
|
2016-10-25 18:13:16 +09:00
|
|
|
}
|
|
|
|
|
2016-10-18 08:44:26 +09:00
|
|
|
if (status.get('reblog', null) !== null && typeof status.get('reblog') === 'object') {
|
2017-08-08 03:32:03 +09:00
|
|
|
const display_name_html = { __html: status.getIn(['account', 'display_name_html']) };
|
2016-11-19 08:28:42 +09:00
|
|
|
|
2016-09-01 21:12:11 +09:00
|
|
|
return (
|
2017-08-29 05:23:44 +09:00
|
|
|
<div className='status__wrapper' data-id={status.get('id')} >
|
2017-02-09 09:20:09 +09:00
|
|
|
<div className='status__prepend'>
|
2017-04-23 11:26:55 +09:00
|
|
|
<div className='status__prepend-icon-wrapper'><i className='fa fa-fw fa-retweet status__prepend-icon' /></div>
|
2017-08-08 03:32:03 +09: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 21:12:11 +09:00
|
|
|
</div>
|
|
|
|
|
2017-08-29 05:23:44 +09:00
|
|
|
<Status {...other} status={status.get('reblog')} account={status.get('account')} />
|
|
|
|
</div>
|
2016-09-01 21:12:11 +09:00
|
|
|
);
|
|
|
|
}
|
2016-08-25 00:56:44 +09:00
|
|
|
|
2016-11-25 07:09:53 +09:00
|
|
|
if (status.get('media_attachments').size > 0 && !this.props.muted) {
|
2017-04-19 22:37:18 +09:00
|
|
|
if (status.get('media_attachments').some(item => item.get('type') === 'unknown')) {
|
|
|
|
|
|
|
|
} else if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
|
2017-09-14 10:39:10 +09:00
|
|
|
const video = status.getIn(['media_attachments', 0]);
|
|
|
|
|
2017-07-08 07:06:02 +09:00
|
|
|
media = (
|
2017-09-14 10:39:10 +09:00
|
|
|
<Bundle fetchComponent={Video} loading={this.renderLoadingVideoPlayer} >
|
|
|
|
{Component => <Component
|
|
|
|
preview={video.get('preview_url')}
|
|
|
|
src={video.get('url')}
|
|
|
|
width={239}
|
|
|
|
height={110}
|
|
|
|
sensitive={status.get('sensitive')}
|
|
|
|
onOpenVideo={this.handleOpenVideo}
|
|
|
|
/>}
|
2017-07-08 07:06:02 +09:00
|
|
|
</Bundle>
|
|
|
|
);
|
2016-09-18 01:05:02 +09:00
|
|
|
} else {
|
2017-07-08 07:06:02 +09:00
|
|
|
media = (
|
2017-07-08 08:57:22 +09:00
|
|
|
<Bundle fetchComponent={MediaGallery} loading={this.renderLoadingMediaGallery} >
|
2017-07-08 07:06:02 +09: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-18 01:05:02 +09:00
|
|
|
}
|
2016-09-06 03:38:31 +09:00
|
|
|
}
|
|
|
|
|
2017-05-03 18:43:37 +09:00
|
|
|
if (account === undefined || account === null) {
|
2017-08-08 02:44:55 +09:00
|
|
|
statusAvatar = <Avatar account={status.get('account')} size={48} />;
|
2017-05-03 18:43:37 +09:00
|
|
|
}else{
|
2017-08-08 02:44:55 +09:00
|
|
|
statusAvatar = <AvatarOverlay account={status.get('account')} friend={account} />;
|
2017-05-03 18:43:37 +09:00
|
|
|
}
|
|
|
|
|
2016-08-25 00:56:44 +09:00
|
|
|
return (
|
2017-08-29 05:23:44 +09:00
|
|
|
<div className={`status ${this.props.muted ? 'muted' : ''} status-${status.get('visibility')}`} data-id={status.get('id')}>
|
2017-04-23 11:26:55 +09:00
|
|
|
<div className='status__info'>
|
2017-05-20 23:48:49 +09:00
|
|
|
<a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
|
2016-08-25 04:08:00 +09:00
|
|
|
|
2017-07-11 22:27:59 +09: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 11:26:55 +09:00
|
|
|
<div className='status__avatar'>
|
2017-05-03 18:43:37 +09:00
|
|
|
{statusAvatar}
|
2016-08-25 04:08:00 +09:00
|
|
|
</div>
|
|
|
|
|
2016-09-01 21:12:11 +09:00
|
|
|
<DisplayName account={status.get('account')} />
|
2016-09-01 05:58:10 +09:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2017-07-08 08:57:22 +09:00
|
|
|
<StatusContent status={status} onClick={this.handleClick} expanded={isExpanded} onExpandedToggle={this.handleExpandedToggle} />
|
2016-08-25 04:08:00 +09:00
|
|
|
|
2016-09-06 03:38:31 +09:00
|
|
|
{media}
|
|
|
|
|
2016-09-30 07:00:45 +09:00
|
|
|
<StatusActionBar {...this.props} />
|
2017-08-29 05:23:44 +09:00
|
|
|
</div>
|
2016-08-25 00:56:44 +09:00
|
|
|
);
|
|
|
|
}
|
2016-08-31 23:15:12 +09:00
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|