2016-09-25 05:20:29 -07: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';
|
|
|
|
import DetailedStatus from './components/detailed_status';
|
|
|
|
import ActionBar from './components/action_bar';
|
|
|
|
import { favourite, reblog } from '../../actions/interactions';
|
|
|
|
import { replyCompose } from '../../actions/compose';
|
|
|
|
import { selectStatus } from '../../reducers/timelines';
|
2016-09-15 15:21:51 -07:00
|
|
|
|
|
|
|
function selectStatuses(state, ids) {
|
2016-09-18 09:18:46 -07:00
|
|
|
return ids.map(id => selectStatus(state, id)).filterNot(status => status === null);
|
2016-09-15 15:21:51 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
|
|
status: selectStatus(state, Number(props.params.statusId)),
|
2016-09-18 04:03:37 -07:00
|
|
|
ancestors: selectStatuses(state, state.getIn(['timelines', 'ancestors', Number(props.params.statusId)], Immutable.OrderedSet())),
|
|
|
|
descendants: selectStatuses(state, state.getIn(['timelines', 'descendants', Number(props.params.statusId)], Immutable.OrderedSet()))
|
2016-09-15 15:21:51 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
const Status = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
params: React.PropTypes.object.isRequired,
|
|
|
|
dispatch: React.PropTypes.func.isRequired,
|
|
|
|
status: ImmutablePropTypes.map,
|
2016-09-18 04:03:37 -07:00
|
|
|
ancestors: ImmutablePropTypes.orderedSet.isRequired,
|
|
|
|
descendants: ImmutablePropTypes.orderedSet.isRequired
|
2016-09-15 15:21:51 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
componentWillMount () {
|
2016-09-19 14:25:59 -07:00
|
|
|
this.props.dispatch(fetchStatus(Number(this.props.params.statusId)));
|
2016-09-15 15:21:51 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (nextProps.params.statusId !== this.props.params.statusId && nextProps.params.statusId) {
|
2016-09-19 14:25:59 -07:00
|
|
|
this.props.dispatch(fetchStatus(Number(nextProps.params.statusId)));
|
2016-09-15 15:21:51 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-09-17 08:47:26 -07:00
|
|
|
handleFavouriteClick (status) {
|
|
|
|
this.props.dispatch(favourite(status));
|
|
|
|
},
|
|
|
|
|
|
|
|
handleReplyClick (status) {
|
|
|
|
this.props.dispatch(replyCompose(status));
|
|
|
|
},
|
|
|
|
|
|
|
|
handleReblogClick (status) {
|
|
|
|
this.props.dispatch(reblog(status));
|
|
|
|
},
|
|
|
|
|
2016-09-15 15:21:51 -07:00
|
|
|
renderChildren (list) {
|
2016-09-17 08:47:26 -07:00
|
|
|
return list.map(s => <EmbeddedStatus status={s} key={s.get('id')} onReply={this.handleReplyClick} onFavourite={this.handleFavouriteClick} onReblog={this.handleReblogClick} />);
|
2016-09-15 15:21:51 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { status, ancestors, descendants } = this.props;
|
|
|
|
|
|
|
|
if (status === null) {
|
|
|
|
return <div>Loading {this.props.params.statusId}...</div>;
|
|
|
|
}
|
|
|
|
|
2016-09-18 04:03:37 -07:00
|
|
|
const account = status.get('account');
|
|
|
|
|
2016-09-15 15:21:51 -07:00
|
|
|
return (
|
2016-09-18 04:03:37 -07:00
|
|
|
<div style={{ overflowY: 'scroll', flex: '1 1 auto' }} className='scrollable'>
|
|
|
|
<div>{this.renderChildren(ancestors)}</div>
|
|
|
|
|
2016-09-25 05:20:29 -07:00
|
|
|
<DetailedStatus status={status} />
|
|
|
|
<ActionBar status={status} onReply={this.handleReplyClick} onFavourite={this.handleFavouriteClick} onReblog={this.handleReblogClick} />
|
2016-09-18 04:03:37 -07:00
|
|
|
|
|
|
|
<div>{this.renderChildren(descendants)}</div>
|
2016-09-15 15:21:51 -07:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps)(Status);
|