You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.9 KiB
84 lines
2.9 KiB
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'; |
|
|
|
function selectStatuses(state, ids) { |
|
return ids.map(id => selectStatus(state, id)).filterNot(status => status === null); |
|
}; |
|
|
|
const mapStateToProps = (state, props) => ({ |
|
status: selectStatus(state, Number(props.params.statusId)), |
|
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())) |
|
}); |
|
|
|
const Status = React.createClass({ |
|
|
|
propTypes: { |
|
params: React.PropTypes.object.isRequired, |
|
dispatch: React.PropTypes.func.isRequired, |
|
status: ImmutablePropTypes.map, |
|
ancestors: ImmutablePropTypes.orderedSet.isRequired, |
|
descendants: ImmutablePropTypes.orderedSet.isRequired |
|
}, |
|
|
|
mixins: [PureRenderMixin], |
|
|
|
componentWillMount () { |
|
this.props.dispatch(fetchStatus(Number(this.props.params.statusId))); |
|
}, |
|
|
|
componentWillReceiveProps (nextProps) { |
|
if (nextProps.params.statusId !== this.props.params.statusId && nextProps.params.statusId) { |
|
this.props.dispatch(fetchStatus(Number(nextProps.params.statusId))); |
|
} |
|
}, |
|
|
|
handleFavouriteClick (status) { |
|
this.props.dispatch(favourite(status)); |
|
}, |
|
|
|
handleReplyClick (status) { |
|
this.props.dispatch(replyCompose(status)); |
|
}, |
|
|
|
handleReblogClick (status) { |
|
this.props.dispatch(reblog(status)); |
|
}, |
|
|
|
renderChildren (list) { |
|
return list.map(s => <EmbeddedStatus status={s} key={s.get('id')} onReply={this.handleReplyClick} onFavourite={this.handleFavouriteClick} onReblog={this.handleReblogClick} />); |
|
}, |
|
|
|
render () { |
|
const { status, ancestors, descendants } = this.props; |
|
|
|
if (status === null) { |
|
return <div>Loading {this.props.params.statusId}...</div>; |
|
} |
|
|
|
const account = status.get('account'); |
|
|
|
return ( |
|
<div style={{ overflowY: 'scroll', flex: '1 1 auto' }} className='scrollable'> |
|
<div>{this.renderChildren(ancestors)}</div> |
|
|
|
<DetailedStatus status={status} /> |
|
<ActionBar status={status} onReply={this.handleReplyClick} onFavourite={this.handleFavouriteClick} onReblog={this.handleReblogClick} /> |
|
|
|
<div>{this.renderChildren(descendants)}</div> |
|
</div> |
|
); |
|
} |
|
|
|
}); |
|
|
|
export default connect(mapStateToProps)(Status);
|
|
|