2017-02-17 20:37:59 -05:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import { fetchStatus } from '../../actions/statuses';
|
|
|
|
import Immutable from 'immutable';
|
|
|
|
import EmbeddedStatus from '../../components/status';
|
2017-02-26 17:06:27 -05:00
|
|
|
import MissingIndicator from '../../components/missing_indicator';
|
2017-02-17 20:37:59 -05: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 11:11:02 -04:00
|
|
|
import {
|
|
|
|
replyCompose,
|
|
|
|
mentionCompose
|
2017-02-17 20:37:59 -05:00
|
|
|
} from '../../actions/compose';
|
|
|
|
import { deleteStatus } from '../../actions/statuses';
|
2017-02-14 14:59:26 -05:00
|
|
|
import { initReport } from '../../actions/reports';
|
2016-10-07 18:01:22 -04:00
|
|
|
import {
|
2016-10-24 11:11:02 -04:00
|
|
|
makeGetStatus,
|
2016-10-07 18:01:22 -04:00
|
|
|
getStatusAncestors,
|
|
|
|
getStatusDescendants
|
2017-02-17 20:37:59 -05: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 16:11:28 -04:00
|
|
|
import { openModal } from '../../actions/modal';
|
2017-01-08 05:04:01 -05:00
|
|
|
import { isMobile } from '../../is_mobile'
|
2016-09-15 18:21:51 -04:00
|
|
|
|
2016-10-24 11:11:02 -04: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 10:10:16 -04:00
|
|
|
me: state.getIn(['meta', 'me']),
|
|
|
|
boostModal: state.getIn(['meta', 'boost_modal'])
|
2016-10-24 11:11:02 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
2016-09-15 18:21:51 -04:00
|
|
|
|
|
|
|
const Status = React.createClass({
|
2016-11-21 04:52:11 -05:00
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
2016-09-15 18:21:51 -04:00
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
params: React.PropTypes.object.isRequired,
|
|
|
|
dispatch: React.PropTypes.func.isRequired,
|
|
|
|
status: ImmutablePropTypes.map,
|
2016-10-30 10:06:43 -04:00
|
|
|
ancestorsIds: ImmutablePropTypes.list,
|
2017-01-10 07:50:40 -05:00
|
|
|
descendantsIds: ImmutablePropTypes.list,
|
2017-04-11 10:10:16 -04:00
|
|
|
me: React.PropTypes.number,
|
|
|
|
boostModal: React.PropTypes.bool
|
2016-09-15 18:21:51 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
componentWillMount () {
|
2016-09-19 17:25:59 -04:00
|
|
|
this.props.dispatch(fetchStatus(Number(this.props.params.statusId)));
|
2016-09-15 18:21:51 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (nextProps.params.statusId !== this.props.params.statusId && nextProps.params.statusId) {
|
2016-09-19 17:25:59 -04:00
|
|
|
this.props.dispatch(fetchStatus(Number(nextProps.params.statusId)));
|
2016-09-15 18:21:51 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-09-17 11:47:26 -04:00
|
|
|
handleFavouriteClick (status) {
|
2017-02-16 20:33:10 -05:00
|
|
|
if (status.get('favourited')) {
|
|
|
|
this.props.dispatch(unfavourite(status));
|
|
|
|
} else {
|
|
|
|
this.props.dispatch(favourite(status));
|
|
|
|
}
|
2016-09-17 11:47:26 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
handleReplyClick (status) {
|
2016-11-21 04:52:11 -05:00
|
|
|
this.props.dispatch(replyCompose(status, this.context.router));
|
2016-09-17 11:47:26 -04:00
|
|
|
},
|
|
|
|
|
2017-04-10 22:28:52 -04:00
|
|
|
handleModalReblog (status) {
|
|
|
|
this.props.dispatch(reblog(status));
|
|
|
|
},
|
|
|
|
|
2017-04-11 08:34:14 -04:00
|
|
|
handleReblogClick (status, e) {
|
2017-02-16 20:33:10 -05:00
|
|
|
if (status.get('reblogged')) {
|
|
|
|
this.props.dispatch(unreblog(status));
|
|
|
|
} else {
|
2017-04-12 20:15:45 -04:00
|
|
|
if (e.shiftKey || !this.props.boostModal) {
|
2017-04-11 08:34:14 -04:00
|
|
|
this.handleModalReblog(status);
|
|
|
|
} else {
|
|
|
|
this.props.dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog }));
|
|
|
|
}
|
2017-02-16 20:33:10 -05:00
|
|
|
}
|
2016-09-17 11:47:26 -04:00
|
|
|
},
|
|
|
|
|
2016-10-09 16:19:15 -04:00
|
|
|
handleDeleteClick (status) {
|
|
|
|
this.props.dispatch(deleteStatus(status.get('id')));
|
|
|
|
},
|
|
|
|
|
2017-01-30 15:40:55 -05:00
|
|
|
handleMentionClick (account, router) {
|
|
|
|
this.props.dispatch(mentionCompose(account, router));
|
2016-10-24 11:11:02 -04:00
|
|
|
},
|
|
|
|
|
2017-02-04 20:48:11 -05:00
|
|
|
handleOpenMedia (media, index) {
|
2017-04-01 16:11:28 -04:00
|
|
|
this.props.dispatch(openModal('MEDIA', { media, index }));
|
2016-10-24 12:07:40 -04:00
|
|
|
},
|
|
|
|
|
2017-04-13 11:01:09 -04:00
|
|
|
handleOpenVideo (media, time) {
|
|
|
|
this.props.dispatch(openModal('VIDEO', { media, time }));
|
2017-04-13 09:04:18 -04:00
|
|
|
},
|
|
|
|
|
2017-02-14 14:59:26 -05:00
|
|
|
handleReport (status) {
|
|
|
|
this.props.dispatch(initReport(status.get('account'), status));
|
|
|
|
},
|
|
|
|
|
2016-09-15 18:21:51 -04:00
|
|
|
renderChildren (list) {
|
2016-10-24 11:11:02 -04:00
|
|
|
return list.map(id => <StatusContainer key={id} id={id} />);
|
2016-09-15 18:21:51 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
render () {
|
2016-10-24 11:11:02 -04:00
|
|
|
let ancestors, descendants;
|
|
|
|
const { status, ancestorsIds, descendantsIds, me } = this.props;
|
2016-09-15 18:21:51 -04:00
|
|
|
|
|
|
|
if (status === null) {
|
2016-10-07 10:00:11 -04:00
|
|
|
return (
|
|
|
|
<Column>
|
2017-02-19 02:32:35 -05:00
|
|
|
<ColumnBackButton />
|
2017-02-26 17:06:27 -05:00
|
|
|
<MissingIndicator />
|
2016-10-07 10:00:11 -04:00
|
|
|
</Column>
|
|
|
|
);
|
2016-09-15 18:21:51 -04:00
|
|
|
}
|
|
|
|
|
2016-09-18 07:03:37 -04:00
|
|
|
const account = status.get('account');
|
|
|
|
|
2016-10-30 10:06:43 -04:00
|
|
|
if (ancestorsIds && ancestorsIds.size > 0) {
|
2016-10-24 11:11:02 -04:00
|
|
|
ancestors = <div>{this.renderChildren(ancestorsIds)}</div>;
|
|
|
|
}
|
|
|
|
|
2016-10-30 10:06:43 -04:00
|
|
|
if (descendantsIds && descendantsIds.size > 0) {
|
2016-10-24 11:11:02 -04:00
|
|
|
descendants = <div>{this.renderChildren(descendantsIds)}</div>;
|
|
|
|
}
|
|
|
|
|
2016-09-15 18:21:51 -04:00
|
|
|
return (
|
2016-10-07 10:00:11 -04:00
|
|
|
<Column>
|
2016-10-19 12:20:19 -04:00
|
|
|
<ColumnBackButton />
|
2016-09-18 07:03:37 -04:00
|
|
|
|
2016-10-19 12:20:19 -04:00
|
|
|
<ScrollContainer scrollKey='thread'>
|
2016-11-04 08:32:14 -04:00
|
|
|
<div className='scrollable'>
|
2016-10-24 11:11:02 -04:00
|
|
|
{ancestors}
|
2016-09-18 07:03:37 -04:00
|
|
|
|
2017-04-13 09:04:18 -04:00
|
|
|
<DetailedStatus status={status} me={me} onOpenVideo={this.handleOpenVideo} onOpenMedia={this.handleOpenMedia} />
|
2017-02-14 14:59:26 -05: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 12:20:19 -04:00
|
|
|
|
2016-10-24 11:11:02 -04:00
|
|
|
{descendants}
|
2016-10-19 12:20:19 -04:00
|
|
|
</div>
|
|
|
|
</ScrollContainer>
|
2016-10-07 10:00:11 -04:00
|
|
|
</Column>
|
2016-09-15 18:21:51 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-10-24 11:11:02 -04:00
|
|
|
export default connect(makeMapStateToProps)(Status);
|