2017-05-03 10:04:16 +10:00
|
|
|
import React from 'react';
|
2016-12-04 07:04:57 +11:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2016-12-04 07:04:57 +11:00
|
|
|
import StatusContainer from '../containers/status_container';
|
2017-05-03 10:04:16 +10:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-08-29 06:23:44 +10:00
|
|
|
import ScrollableList from './scrollable_list';
|
2016-08-25 01:56:44 +10:00
|
|
|
|
2017-06-24 03:36:54 +10:00
|
|
|
export default class StatusList extends ImmutablePureComponent {
|
2017-04-22 04:05:35 +10:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
static propTypes = {
|
|
|
|
scrollKey: PropTypes.string.isRequired,
|
|
|
|
statusIds: ImmutablePropTypes.list.isRequired,
|
|
|
|
onScrollToBottom: PropTypes.func,
|
|
|
|
onScrollToTop: PropTypes.func,
|
|
|
|
onScroll: PropTypes.func,
|
2017-06-05 23:20:46 +10:00
|
|
|
trackScroll: PropTypes.bool,
|
2017-05-12 22:44:10 +10:00
|
|
|
shouldUpdateScroll: PropTypes.func,
|
|
|
|
isLoading: PropTypes.bool,
|
|
|
|
hasMore: PropTypes.bool,
|
|
|
|
prepend: PropTypes.node,
|
2017-05-21 01:31:47 +10:00
|
|
|
emptyMessage: PropTypes.node,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-05-21 01:31:47 +10:00
|
|
|
trackScroll: true,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
|
|
|
|
2016-09-01 00:15:12 +10:00
|
|
|
render () {
|
2017-08-29 06:23:44 +10: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-25 01:56:44 +10:00
|
|
|
}
|
2016-09-01 00:15:12 +10:00
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|