2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-12-03 20:04:57 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-12-03 20:04:57 +00:00
|
|
|
import StatusContainer from '../containers/status_container';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-08-28 20:23:44 +00:00
|
|
|
import ScrollableList from './scrollable_list';
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class StatusList extends ImmutablePureComponent {
|
2017-04-21 18:05:35 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
scrollKey: PropTypes.string.isRequired,
|
|
|
|
statusIds: ImmutablePropTypes.list.isRequired,
|
|
|
|
onScrollToBottom: PropTypes.func,
|
|
|
|
onScrollToTop: PropTypes.func,
|
|
|
|
onScroll: PropTypes.func,
|
2017-06-05 13:20:46 +00:00
|
|
|
trackScroll: PropTypes.bool,
|
2017-05-12 12:44:10 +00:00
|
|
|
shouldUpdateScroll: PropTypes.func,
|
|
|
|
isLoading: PropTypes.bool,
|
|
|
|
hasMore: PropTypes.bool,
|
|
|
|
prepend: PropTypes.node,
|
2017-05-20 15:31:47 +00:00
|
|
|
emptyMessage: PropTypes.node,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-05-20 15:31:47 +00:00
|
|
|
trackScroll: true,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
render () {
|
2017-08-28 20:23:44 +00:00
|
|
|
const { statusIds, ...other } = this.props;
|
|
|
|
const { isLoading } = other;
|
|
|
|
|
|
|
|
const scrollableContent = (isLoading || statusIds.size > 0) ? (
|
|
|
|
statusIds.map((statusId) => (
|
|
|
|
<StatusContainer key={statusId} id={statusId} />
|
|
|
|
))
|
|
|
|
) : null;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ScrollableList {...other}>
|
|
|
|
{scrollableContent}
|
|
|
|
</ScrollableList>
|
|
|
|
);
|
2016-08-24 15:56:44 +00:00
|
|
|
}
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|