2018-03-25 01:25:15 +11:00
|
|
|
import { debounce } from 'lodash';
|
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';
|
2018-04-11 01:12:10 +10:00
|
|
|
import LoadGap from './load_gap';
|
2017-08-29 06:23:44 +10:00
|
|
|
import ScrollableList from './scrollable_list';
|
2019-10-07 07:11:17 +11:00
|
|
|
import RegenerationIndicator from 'mastodon/components/regeneration_indicator';
|
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,
|
2018-03-04 19:19:11 +11:00
|
|
|
featuredStatusIds: ImmutablePropTypes.list,
|
2018-03-06 05:31:40 +11:00
|
|
|
onLoadMore: PropTypes.func,
|
2017-05-12 22:44:10 +10:00
|
|
|
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
|
|
|
isLoading: PropTypes.bool,
|
2018-01-18 09:56:03 +11:00
|
|
|
isPartial: PropTypes.bool,
|
2017-05-12 22:44:10 +10:00
|
|
|
hasMore: PropTypes.bool,
|
|
|
|
prepend: PropTypes.node,
|
2017-05-21 01:31:47 +10:00
|
|
|
emptyMessage: PropTypes.node,
|
2018-05-29 10:01:04 +10:00
|
|
|
alwaysPrepend: PropTypes.bool,
|
2022-02-25 10:34:33 +11:00
|
|
|
withCounters: PropTypes.bool,
|
2018-11-09 07:35:06 +11:00
|
|
|
timelineId: PropTypes.string,
|
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
|
|
|
};
|
|
|
|
|
2018-04-21 02:14:21 +10:00
|
|
|
getFeaturedStatusCount = () => {
|
|
|
|
return this.props.featuredStatusIds ? this.props.featuredStatusIds.size : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
getCurrentStatusIndex = (id, featured) => {
|
|
|
|
if (featured) {
|
|
|
|
return this.props.featuredStatusIds.indexOf(id);
|
|
|
|
} else {
|
|
|
|
return this.props.statusIds.indexOf(id) + this.getFeaturedStatusCount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMoveUp = (id, featured) => {
|
|
|
|
const elementIndex = this.getCurrentStatusIndex(id, featured) - 1;
|
2019-05-03 14:20:36 +10:00
|
|
|
this._selectChild(elementIndex, true);
|
2017-10-06 10:07:59 +11:00
|
|
|
}
|
|
|
|
|
2018-04-21 02:14:21 +10:00
|
|
|
handleMoveDown = (id, featured) => {
|
|
|
|
const elementIndex = this.getCurrentStatusIndex(id, featured) + 1;
|
2019-05-03 14:20:36 +10:00
|
|
|
this._selectChild(elementIndex, false);
|
2017-10-06 10:07:59 +11:00
|
|
|
}
|
|
|
|
|
2018-03-25 01:25:15 +11:00
|
|
|
handleLoadOlder = debounce(() => {
|
2018-12-13 08:32:44 +11:00
|
|
|
this.props.onLoadMore(this.props.statusIds.size > 0 ? this.props.statusIds.last() : undefined);
|
2018-03-25 01:25:15 +11:00
|
|
|
}, 300, { leading: true })
|
|
|
|
|
2019-05-03 14:20:36 +10:00
|
|
|
_selectChild (index, align_top) {
|
|
|
|
const container = this.node.node;
|
|
|
|
const element = container.querySelector(`article:nth-of-type(${index + 1}) .focusable`);
|
2017-10-06 10:07:59 +11:00
|
|
|
|
|
|
|
if (element) {
|
2019-05-03 14:20:36 +10:00
|
|
|
if (align_top && container.scrollTop > element.offsetTop) {
|
|
|
|
element.scrollIntoView(true);
|
|
|
|
} else if (!align_top && container.scrollTop + container.clientHeight < element.offsetTop + element.offsetHeight) {
|
|
|
|
element.scrollIntoView(false);
|
|
|
|
}
|
2017-10-06 10:07:59 +11:00
|
|
|
element.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.node = c;
|
|
|
|
}
|
|
|
|
|
2016-09-01 00:15:12 +10:00
|
|
|
render () {
|
2021-07-13 23:45:17 +10:00
|
|
|
const { statusIds, featuredStatusIds, onLoadMore, timelineId, ...other } = this.props;
|
2018-01-18 09:56:03 +11:00
|
|
|
const { isLoading, isPartial } = other;
|
|
|
|
|
|
|
|
if (isPartial) {
|
2019-10-07 07:11:17 +11:00
|
|
|
return <RegenerationIndicator />;
|
2018-01-18 09:56:03 +11:00
|
|
|
}
|
2017-08-29 06:23:44 +10:00
|
|
|
|
2018-03-04 19:19:11 +11:00
|
|
|
let scrollableContent = (isLoading || statusIds.size > 0) ? (
|
2018-03-25 01:25:15 +11:00
|
|
|
statusIds.map((statusId, index) => statusId === null ? (
|
|
|
|
<LoadGap
|
|
|
|
key={'gap:' + statusIds.get(index + 1)}
|
|
|
|
disabled={isLoading}
|
|
|
|
maxId={index > 0 ? statusIds.get(index - 1) : null}
|
|
|
|
onClick={onLoadMore}
|
|
|
|
/>
|
|
|
|
) : (
|
2017-10-06 10:07:59 +11:00
|
|
|
<StatusContainer
|
|
|
|
key={statusId}
|
|
|
|
id={statusId}
|
|
|
|
onMoveUp={this.handleMoveUp}
|
|
|
|
onMoveDown={this.handleMoveDown}
|
2018-06-29 23:34:36 +10:00
|
|
|
contextType={timelineId}
|
2020-07-09 23:09:19 +10:00
|
|
|
scrollKey={this.props.scrollKey}
|
2018-11-09 07:08:57 +11:00
|
|
|
showThread
|
2022-02-25 10:34:33 +11:00
|
|
|
withCounters={this.props.withCounters}
|
2017-10-06 10:07:59 +11:00
|
|
|
/>
|
2017-08-29 06:23:44 +10:00
|
|
|
))
|
|
|
|
) : null;
|
|
|
|
|
2018-03-04 19:19:11 +11:00
|
|
|
if (scrollableContent && featuredStatusIds) {
|
|
|
|
scrollableContent = featuredStatusIds.map(statusId => (
|
|
|
|
<StatusContainer
|
|
|
|
key={`f-${statusId}`}
|
|
|
|
id={statusId}
|
|
|
|
featured
|
|
|
|
onMoveUp={this.handleMoveUp}
|
|
|
|
onMoveDown={this.handleMoveDown}
|
2018-06-29 23:34:36 +10:00
|
|
|
contextType={timelineId}
|
2018-11-09 07:08:57 +11:00
|
|
|
showThread
|
2022-02-25 10:34:33 +11:00
|
|
|
withCounters={this.props.withCounters}
|
2018-03-04 19:19:11 +11:00
|
|
|
/>
|
|
|
|
)).concat(scrollableContent);
|
|
|
|
}
|
|
|
|
|
2017-08-29 06:23:44 +10:00
|
|
|
return (
|
2021-07-13 23:45:17 +10:00
|
|
|
<ScrollableList {...other} showLoading={isLoading && statusIds.size === 0} onLoadMore={onLoadMore && this.handleLoadOlder} ref={this.setRef}>
|
2017-08-29 06:23:44 +10:00
|
|
|
{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
|
|
|
}
|