2017-02-18 01:37:59 +00:00
|
|
|
import { connect } from 'react-redux';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-02-18 01:37:59 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import { fetchStatus } from '../../actions/statuses';
|
|
|
|
import Immutable from 'immutable';
|
|
|
|
import EmbeddedStatus from '../../components/status';
|
2017-02-26 22:06:27 +00:00
|
|
|
import MissingIndicator from '../../components/missing_indicator';
|
2017-02-18 01:37:59 +00:00
|
|
|
import DetailedStatus from './components/detailed_status';
|
|
|
|
import ActionBar from './components/action_bar';
|
|
|
|
import Column from '../ui/components/column';
|
|
|
|
import {
|
|
|
|
favourite,
|
|
|
|
unfavourite,
|
|
|
|
reblog,
|
|
|
|
unreblog
|
|
|
|
} from '../../actions/interactions';
|
2016-10-24 15:11:02 +00:00
|
|
|
import {
|
|
|
|
replyCompose,
|
|
|
|
mentionCompose
|
2017-02-18 01:37:59 +00:00
|
|
|
} from '../../actions/compose';
|
|
|
|
import { deleteStatus } from '../../actions/statuses';
|
2017-02-14 19:59:26 +00:00
|
|
|
import { initReport } from '../../actions/reports';
|
2016-10-07 22:01:22 +00:00
|
|
|
import {
|
2016-10-24 15:11:02 +00:00
|
|
|
makeGetStatus,
|
2016-10-07 22:01:22 +00:00
|
|
|
getStatusAncestors,
|
|
|
|
getStatusDescendants
|
2017-02-18 01:37:59 +00:00
|
|
|
} from '../../selectors';
|
|
|
|
import { ScrollContainer } from 'react-router-scroll';
|
|
|
|
import ColumnBackButton from '../../components/column_back_button';
|
|
|
|
import StatusContainer from '../../containers/status_container';
|
2017-04-01 20:11:28 +00:00
|
|
|
import { openModal } from '../../actions/modal';
|
2017-01-08 10:04:01 +00:00
|
|
|
import { isMobile } from '../../is_mobile'
|
2017-04-23 02:39:50 +00:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
deleteConfirm: { id: 'confirmations.delete.confirm', defaultMessage: 'Delete' },
|
|
|
|
deleteMessage: { id: 'confirmations.delete.message', defaultMessage: 'Are you sure you want to delete this status?' }
|
|
|
|
});
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2016-10-24 15:11:02 +00:00
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getStatus = makeGetStatus();
|
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
|
|
status: getStatus(state, Number(props.params.statusId)),
|
|
|
|
ancestorsIds: state.getIn(['timelines', 'ancestors', Number(props.params.statusId)]),
|
|
|
|
descendantsIds: state.getIn(['timelines', 'descendants', Number(props.params.statusId)]),
|
2017-04-11 14:10:16 +00:00
|
|
|
me: state.getIn(['meta', 'me']),
|
2017-04-17 10:14:03 +00:00
|
|
|
boostModal: state.getIn(['meta', 'boost_modal']),
|
|
|
|
autoPlayGif: state.getIn(['meta', 'auto_play_gif'])
|
2016-10-24 15:11:02 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class Status extends React.PureComponent {
|
|
|
|
|
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.handleFavouriteClick = this.handleFavouriteClick.bind(this);
|
|
|
|
this.handleReplyClick = this.handleReplyClick.bind(this);
|
|
|
|
this.handleModalReblog = this.handleModalReblog.bind(this);
|
|
|
|
this.handleReblogClick = this.handleReblogClick.bind(this);
|
|
|
|
this.handleDeleteClick = this.handleDeleteClick.bind(this);
|
|
|
|
this.handleMentionClick = this.handleMentionClick.bind(this);
|
|
|
|
this.handleOpenMedia = this.handleOpenMedia.bind(this);
|
|
|
|
this.handleOpenVideo = this.handleOpenVideo.bind(this);
|
|
|
|
this.handleReport = this.handleReport.bind(this);
|
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
|
|
|
componentWillMount () {
|
2016-09-19 21:25:59 +00:00
|
|
|
this.props.dispatch(fetchStatus(Number(this.props.params.statusId)));
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (nextProps.params.statusId !== this.props.params.statusId && nextProps.params.statusId) {
|
2016-09-19 21:25:59 +00:00
|
|
|
this.props.dispatch(fetchStatus(Number(nextProps.params.statusId)));
|
2016-09-15 22:21:51 +00:00
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2016-09-17 15:47:26 +00:00
|
|
|
handleFavouriteClick (status) {
|
2017-02-17 01:33:10 +00:00
|
|
|
if (status.get('favourited')) {
|
|
|
|
this.props.dispatch(unfavourite(status));
|
|
|
|
} else {
|
|
|
|
this.props.dispatch(favourite(status));
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-17 15:47:26 +00:00
|
|
|
|
|
|
|
handleReplyClick (status) {
|
2016-11-21 09:52:11 +00:00
|
|
|
this.props.dispatch(replyCompose(status, this.context.router));
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-17 15:47:26 +00:00
|
|
|
|
2017-04-11 02:28:52 +00:00
|
|
|
handleModalReblog (status) {
|
|
|
|
this.props.dispatch(reblog(status));
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-11 02:28:52 +00:00
|
|
|
|
2017-04-11 12:34:14 +00:00
|
|
|
handleReblogClick (status, e) {
|
2017-02-17 01:33:10 +00:00
|
|
|
if (status.get('reblogged')) {
|
|
|
|
this.props.dispatch(unreblog(status));
|
|
|
|
} else {
|
2017-04-13 00:15:45 +00:00
|
|
|
if (e.shiftKey || !this.props.boostModal) {
|
2017-04-11 12:34:14 +00:00
|
|
|
this.handleModalReblog(status);
|
|
|
|
} else {
|
|
|
|
this.props.dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog }));
|
|
|
|
}
|
2017-02-17 01:33:10 +00:00
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-17 15:47:26 +00:00
|
|
|
|
2016-10-09 20:19:15 +00:00
|
|
|
handleDeleteClick (status) {
|
2017-04-23 02:39:50 +00:00
|
|
|
const { dispatch, intl } = this.props;
|
|
|
|
|
|
|
|
dispatch(openModal('CONFIRM', {
|
|
|
|
message: intl.formatMessage(messages.deleteMessage),
|
|
|
|
confirm: intl.formatMessage(messages.deleteConfirm),
|
|
|
|
onConfirm: () => dispatch(deleteStatus(status.get('id')))
|
|
|
|
}));
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-09 20:19:15 +00:00
|
|
|
|
2017-01-30 20:40:55 +00:00
|
|
|
handleMentionClick (account, router) {
|
|
|
|
this.props.dispatch(mentionCompose(account, router));
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-24 15:11:02 +00:00
|
|
|
|
2017-02-05 01:48:11 +00:00
|
|
|
handleOpenMedia (media, index) {
|
2017-04-01 20:11:28 +00:00
|
|
|
this.props.dispatch(openModal('MEDIA', { media, index }));
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-24 16:07:40 +00:00
|
|
|
|
2017-04-13 15:01:09 +00:00
|
|
|
handleOpenVideo (media, time) {
|
|
|
|
this.props.dispatch(openModal('VIDEO', { media, time }));
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-13 13:04:18 +00:00
|
|
|
|
2017-02-14 19:59:26 +00:00
|
|
|
handleReport (status) {
|
|
|
|
this.props.dispatch(initReport(status.get('account'), status));
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-02-14 19:59:26 +00:00
|
|
|
|
2016-09-15 22:21:51 +00:00
|
|
|
renderChildren (list) {
|
2016-10-24 15:11:02 +00:00
|
|
|
return list.map(id => <StatusContainer key={id} id={id} />);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
|
|
|
render () {
|
2016-10-24 15:11:02 +00:00
|
|
|
let ancestors, descendants;
|
2017-04-17 10:14:03 +00:00
|
|
|
const { status, ancestorsIds, descendantsIds, me, autoPlayGif } = this.props;
|
2016-09-15 22:21:51 +00:00
|
|
|
|
|
|
|
if (status === null) {
|
2016-10-07 14:00:11 +00:00
|
|
|
return (
|
|
|
|
<Column>
|
2017-02-19 07:32:35 +00:00
|
|
|
<ColumnBackButton />
|
2017-02-26 22:06:27 +00:00
|
|
|
<MissingIndicator />
|
2016-10-07 14:00:11 +00:00
|
|
|
</Column>
|
|
|
|
);
|
2016-09-15 22:21:51 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 11:03:37 +00:00
|
|
|
const account = status.get('account');
|
|
|
|
|
2016-10-30 14:06:43 +00:00
|
|
|
if (ancestorsIds && ancestorsIds.size > 0) {
|
2016-10-24 15:11:02 +00:00
|
|
|
ancestors = <div>{this.renderChildren(ancestorsIds)}</div>;
|
|
|
|
}
|
|
|
|
|
2016-10-30 14:06:43 +00:00
|
|
|
if (descendantsIds && descendantsIds.size > 0) {
|
2016-10-24 15:11:02 +00:00
|
|
|
descendants = <div>{this.renderChildren(descendantsIds)}</div>;
|
|
|
|
}
|
|
|
|
|
2016-09-15 22:21:51 +00:00
|
|
|
return (
|
2016-10-07 14:00:11 +00:00
|
|
|
<Column>
|
2016-10-19 16:20:19 +00:00
|
|
|
<ColumnBackButton />
|
2016-09-18 11:03:37 +00:00
|
|
|
|
2016-10-19 16:20:19 +00:00
|
|
|
<ScrollContainer scrollKey='thread'>
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='scrollable detailed-status__wrapper'>
|
2016-10-24 15:11:02 +00:00
|
|
|
{ancestors}
|
2016-09-18 11:03:37 +00:00
|
|
|
|
2017-04-17 10:14:03 +00:00
|
|
|
<DetailedStatus status={status} autoPlayGif={autoPlayGif} me={me} onOpenVideo={this.handleOpenVideo} onOpenMedia={this.handleOpenMedia} />
|
2017-02-14 19:59:26 +00:00
|
|
|
<ActionBar status={status} me={me} onReply={this.handleReplyClick} onFavourite={this.handleFavouriteClick} onReblog={this.handleReblogClick} onDelete={this.handleDeleteClick} onMention={this.handleMentionClick} onReport={this.handleReport} />
|
2016-10-19 16:20:19 +00:00
|
|
|
|
2016-10-24 15:11:02 +00:00
|
|
|
{descendants}
|
2016-10-19 16:20:19 +00:00
|
|
|
</div>
|
|
|
|
</ScrollContainer>
|
2016-10-07 14:00:11 +00:00
|
|
|
</Column>
|
2016-09-15 22:21:51 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Status.contextTypes = {
|
|
|
|
router: PropTypes.object
|
|
|
|
};
|
|
|
|
|
|
|
|
Status.propTypes = {
|
|
|
|
params: PropTypes.object.isRequired,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
status: ImmutablePropTypes.map,
|
|
|
|
ancestorsIds: ImmutablePropTypes.list,
|
|
|
|
descendantsIds: ImmutablePropTypes.list,
|
|
|
|
me: PropTypes.number,
|
|
|
|
boostModal: PropTypes.bool,
|
2017-04-23 02:39:50 +00:00
|
|
|
autoPlayGif: PropTypes.bool,
|
|
|
|
intl: PropTypes.object.isRequired
|
2017-04-21 18:05:35 +00:00
|
|
|
};
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2017-04-23 02:39:50 +00:00
|
|
|
export default injectIntl(connect(makeMapStateToProps)(Status));
|