2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2016-09-25 08:20:29 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-16 11:20:52 -05:00
|
|
|
import Avatar from '../../../components/avatar';
|
|
|
|
import DisplayName from '../../../components/display_name';
|
|
|
|
import StatusContent from '../../../components/status_content';
|
|
|
|
import MediaGallery from '../../../components/media_gallery';
|
2017-10-07 20:55:58 -04:00
|
|
|
import { Link } from 'react-router-dom';
|
2016-11-16 11:20:52 -05:00
|
|
|
import { FormattedDate, FormattedNumber } from 'react-intl';
|
2018-10-28 23:42:07 -04:00
|
|
|
import Card from './card';
|
2017-05-02 20:04:16 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-09-13 21:39:10 -04:00
|
|
|
import Video from '../../video';
|
2019-08-23 16:38:02 -04:00
|
|
|
import Audio from '../../audio';
|
2019-01-16 13:47:46 -05:00
|
|
|
import scheduleIdleTask from '../../ui/util/schedule_idle_task';
|
2019-01-17 08:06:08 -05:00
|
|
|
import classNames from 'classnames';
|
2019-01-31 18:14:05 -05:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2016-09-25 08:20:29 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class DetailedStatus extends ImmutablePureComponent {
|
2016-09-25 08:20:29 -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 = {
|
2019-03-12 12:34:00 -04:00
|
|
|
status: ImmutablePropTypes.map,
|
2017-05-12 08:44:10 -04:00
|
|
|
onOpenMedia: PropTypes.func.isRequired,
|
|
|
|
onOpenVideo: PropTypes.func.isRequired,
|
2018-03-11 04:52:59 -04:00
|
|
|
onToggleHidden: PropTypes.func.isRequired,
|
2019-01-16 13:47:46 -05:00
|
|
|
measureHeight: PropTypes.bool,
|
|
|
|
onHeightChange: PropTypes.func,
|
|
|
|
domain: PropTypes.string.isRequired,
|
2019-01-17 08:06:08 -05:00
|
|
|
compact: PropTypes.bool,
|
2019-05-25 17:20:51 -04:00
|
|
|
showMedia: PropTypes.bool,
|
|
|
|
onToggleMediaVisibility: PropTypes.func,
|
2019-01-16 13:47:46 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
height: null,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
handleAccountClick = (e) => {
|
2019-01-16 13:47:46 -05:00
|
|
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey) && this.context.router) {
|
2016-09-25 08:20:29 -04:00
|
|
|
e.preventDefault();
|
2017-06-20 14:40:03 -04:00
|
|
|
this.context.router.history.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
|
2016-09-25 08:20:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
e.stopPropagation();
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-09-25 08:20:29 -04:00
|
|
|
|
2018-05-13 07:48:14 -04:00
|
|
|
handleOpenVideo = (media, startTime) => {
|
|
|
|
this.props.onOpenVideo(media, startTime);
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
|
|
|
|
2018-03-11 04:52:59 -04:00
|
|
|
handleExpandedToggle = () => {
|
|
|
|
this.props.onToggleHidden(this.props.status);
|
|
|
|
}
|
|
|
|
|
2019-01-16 13:47:46 -05:00
|
|
|
_measureHeight (heightJustChanged) {
|
|
|
|
if (this.props.measureHeight && this.node) {
|
2019-01-18 14:58:11 -05:00
|
|
|
scheduleIdleTask(() => this.node && this.setState({ height: Math.ceil(this.node.scrollHeight) + 1 }));
|
2019-01-16 13:47:46 -05:00
|
|
|
|
|
|
|
if (this.props.onHeightChange && heightJustChanged) {
|
|
|
|
this.props.onHeightChange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.node = c;
|
|
|
|
this._measureHeight();
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate (prevProps, prevState) {
|
|
|
|
this._measureHeight(prevState.height !== this.state.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModalLink = e => {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
let href;
|
|
|
|
|
|
|
|
if (e.target.nodeName !== 'A') {
|
|
|
|
href = e.target.parentNode.href;
|
|
|
|
} else {
|
|
|
|
href = e.target.href;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.open(href, 'mastodon-intent', 'width=445,height=600,resizable=no,menubar=no,status=no,scrollbars=yes');
|
|
|
|
}
|
|
|
|
|
2016-09-25 08:20:29 -04:00
|
|
|
render () {
|
2019-02-16 08:53:27 -05:00
|
|
|
const status = (this.props.status && this.props.status.get('reblog')) ? this.props.status.get('reblog') : this.props.status;
|
2019-01-16 13:47:46 -05:00
|
|
|
const outerStyle = { boxSizing: 'border-box' };
|
2019-01-17 08:06:08 -05:00
|
|
|
const { compact } = this.props;
|
2019-01-16 13:47:46 -05:00
|
|
|
|
|
|
|
if (!status) {
|
|
|
|
return null;
|
|
|
|
}
|
2017-01-15 08:01:33 -05:00
|
|
|
|
|
|
|
let media = '';
|
|
|
|
let applicationLink = '';
|
2017-10-16 08:10:12 -04:00
|
|
|
let reblogLink = '';
|
|
|
|
let reblogIcon = 'retweet';
|
2019-01-16 13:47:46 -05:00
|
|
|
let favouriteLink = '';
|
|
|
|
|
|
|
|
if (this.props.measureHeight) {
|
|
|
|
outerStyle.height = `${this.state.height}px`;
|
|
|
|
}
|
2016-09-25 08:58:07 -04:00
|
|
|
|
2019-06-08 11:40:59 -04:00
|
|
|
if (status.get('media_attachments').size > 0) {
|
2019-08-23 16:38:02 -04:00
|
|
|
if (status.getIn(['media_attachments', 0, 'type']) === 'audio') {
|
|
|
|
const attachment = status.getIn(['media_attachments', 0]);
|
|
|
|
|
|
|
|
media = (
|
|
|
|
<Audio
|
|
|
|
src={attachment.get('url')}
|
|
|
|
alt={attachment.get('description')}
|
|
|
|
duration={attachment.getIn(['meta', 'original', 'duration'], 0)}
|
2019-08-25 09:09:19 -04:00
|
|
|
height={110}
|
2019-08-23 16:38:02 -04:00
|
|
|
preload
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
} else if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
|
2019-06-19 17:42:38 -04:00
|
|
|
const attachment = status.getIn(['media_attachments', 0]);
|
2017-09-13 21:39:10 -04:00
|
|
|
|
|
|
|
media = (
|
|
|
|
<Video
|
2019-06-19 17:42:38 -04:00
|
|
|
preview={attachment.get('preview_url')}
|
|
|
|
blurhash={attachment.get('blurhash')}
|
|
|
|
src={attachment.get('url')}
|
|
|
|
alt={attachment.get('description')}
|
2017-09-13 21:39:10 -04:00
|
|
|
width={300}
|
|
|
|
height={150}
|
2018-03-02 01:00:04 -05:00
|
|
|
inline
|
2017-09-13 21:39:10 -04:00
|
|
|
onOpenVideo={this.handleOpenVideo}
|
|
|
|
sensitive={status.get('sensitive')}
|
2019-05-25 17:20:51 -04:00
|
|
|
visible={this.props.showMedia}
|
|
|
|
onToggleVisibility={this.props.onToggleMediaVisibility}
|
2017-09-13 21:39:10 -04:00
|
|
|
/>
|
|
|
|
);
|
2016-09-25 08:58:07 -04:00
|
|
|
} else {
|
2017-09-23 23:58:30 -04:00
|
|
|
media = (
|
|
|
|
<MediaGallery
|
|
|
|
standalone
|
|
|
|
sensitive={status.get('sensitive')}
|
|
|
|
media={status.get('media_attachments')}
|
|
|
|
height={300}
|
|
|
|
onOpenMedia={this.props.onOpenMedia}
|
2019-05-25 17:20:51 -04:00
|
|
|
visible={this.props.showMedia}
|
|
|
|
onToggleVisibility={this.props.onToggleMediaVisibility}
|
2017-09-23 23:58:30 -04:00
|
|
|
/>
|
|
|
|
);
|
2016-09-25 08:58:07 -04:00
|
|
|
}
|
2017-04-19 08:28:00 -04:00
|
|
|
} else if (status.get('spoiler_text').length === 0) {
|
2018-10-28 23:42:07 -04:00
|
|
|
media = <Card onOpenMedia={this.props.onOpenMedia} card={status.get('card', null)} />;
|
2016-09-25 08:58:07 -04:00
|
|
|
}
|
2016-09-25 08:20:29 -04:00
|
|
|
|
2017-01-15 08:01:33 -05:00
|
|
|
if (status.get('application')) {
|
2017-04-25 21:55:51 -04:00
|
|
|
applicationLink = <span> · <a className='detailed-status__application' href={status.getIn(['application', 'website'])} target='_blank' rel='noopener'>{status.getIn(['application', 'name'])}</a></span>;
|
2017-01-15 08:01:33 -05:00
|
|
|
}
|
|
|
|
|
2017-10-16 08:10:12 -04:00
|
|
|
if (status.get('visibility') === 'direct') {
|
|
|
|
reblogIcon = 'envelope';
|
|
|
|
} else if (status.get('visibility') === 'private') {
|
|
|
|
reblogIcon = 'lock';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status.get('visibility') === 'private') {
|
2019-01-31 18:14:05 -05:00
|
|
|
reblogLink = <Icon id={reblogIcon} />;
|
2019-01-16 13:47:46 -05:00
|
|
|
} else if (this.context.router) {
|
|
|
|
reblogLink = (
|
|
|
|
<Link to={`/statuses/${status.get('id')}/reblogs`} className='detailed-status__link'>
|
2019-01-31 18:14:05 -05:00
|
|
|
<Icon id={reblogIcon} />
|
2019-01-16 13:47:46 -05:00
|
|
|
<span className='detailed-status__reblogs'>
|
|
|
|
<FormattedNumber value={status.get('reblogs_count')} />
|
|
|
|
</span>
|
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
reblogLink = (
|
|
|
|
<a href={`/interact/${status.get('id')}?type=reblog`} className='detailed-status__link' onClick={this.handleModalLink}>
|
2019-01-31 18:14:05 -05:00
|
|
|
<Icon id={reblogIcon} />
|
2019-01-16 13:47:46 -05:00
|
|
|
<span className='detailed-status__reblogs'>
|
|
|
|
<FormattedNumber value={status.get('reblogs_count')} />
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.context.router) {
|
|
|
|
favouriteLink = (
|
|
|
|
<Link to={`/statuses/${status.get('id')}/favourites`} className='detailed-status__link'>
|
2019-01-31 18:14:05 -05:00
|
|
|
<Icon id='star' />
|
2019-01-16 13:47:46 -05:00
|
|
|
<span className='detailed-status__favorites'>
|
|
|
|
<FormattedNumber value={status.get('favourites_count')} />
|
|
|
|
</span>
|
|
|
|
</Link>
|
|
|
|
);
|
2017-10-16 08:10:12 -04:00
|
|
|
} else {
|
2019-01-16 13:47:46 -05:00
|
|
|
favouriteLink = (
|
|
|
|
<a href={`/interact/${status.get('id')}?type=favourite`} className='detailed-status__link' onClick={this.handleModalLink}>
|
2019-01-31 18:14:05 -05:00
|
|
|
<Icon id='star' />
|
2019-01-16 13:47:46 -05:00
|
|
|
<span className='detailed-status__favorites'>
|
|
|
|
<FormattedNumber value={status.get('favourites_count')} />
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
);
|
2017-10-16 08:10:12 -04:00
|
|
|
}
|
|
|
|
|
2016-09-25 08:20:29 -04:00
|
|
|
return (
|
2019-01-17 08:06:08 -05:00
|
|
|
<div style={outerStyle}>
|
|
|
|
<div ref={this.setRef} className={classNames('detailed-status', { compact })}>
|
|
|
|
<a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='detailed-status__display-name'>
|
|
|
|
<div className='detailed-status__display-avatar'><Avatar account={status.get('account')} size={48} /></div>
|
|
|
|
<DisplayName account={status.get('account')} localDomain={this.props.domain} />
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<StatusContent status={status} expanded={!status.get('hidden')} onExpandedToggle={this.handleExpandedToggle} />
|
|
|
|
|
|
|
|
{media}
|
|
|
|
|
|
|
|
<div className='detailed-status__meta'>
|
|
|
|
<a className='detailed-status__datetime' href={status.get('url')} target='_blank' rel='noopener'>
|
|
|
|
<FormattedDate value={new Date(status.get('created_at'))} hour12={false} year='numeric' month='short' day='2-digit' hour='2-digit' minute='2-digit' />
|
|
|
|
</a>{applicationLink} · {reblogLink} · {favouriteLink}
|
|
|
|
</div>
|
2016-09-25 08:20:29 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|