import Status from './status'; import ImmutablePropTypes from 'react-immutable-proptypes'; import PureRenderMixin from 'react-addons-pure-render-mixin'; import { ScrollContainer } from 'react-router-scroll'; import StatusContainer from '../containers/status_container'; const StatusList = React.createClass({ propTypes: { statusIds: ImmutablePropTypes.list.isRequired, onScrollToBottom: React.PropTypes.func, trackScroll: React.PropTypes.bool }, getDefaultProps () { return { trackScroll: true }; }, mixins: [PureRenderMixin], handleScroll (e) { const { scrollTop, scrollHeight, clientHeight } = e.target; this._oldScrollPosition = scrollHeight - scrollTop; if (scrollTop === scrollHeight - clientHeight) { this.props.onScrollToBottom(); } }, componentDidUpdate (prevProps) { if (prevProps.statusIds.size < this.props.statusIds.size && prevProps.statusIds.first() !== this.props.statusIds.first() && this._oldScrollPosition) { const node = ReactDOM.findDOMNode(this); if (node.scrollTop > 0) { node.scrollTop = node.scrollHeight - this._oldScrollPosition; } } }, render () { const { statusIds, onScrollToBottom, trackScroll } = this.props; const scrollableArea = (
{statusIds.map((statusId) => { return ; })}
); if (trackScroll) { return ( {scrollableArea} ); } else { return scrollableArea; } } }); export default StatusList;