forked from treehouse/mastodon
fix(status_list): Guard against missing ref (#4353)
parent
f52ce92f2b
commit
696bcff6bf
|
@ -31,6 +31,7 @@ export default class StatusList extends ImmutablePureComponent {
|
||||||
intersectionObserverWrapper = new IntersectionObserverWrapper();
|
intersectionObserverWrapper = new IntersectionObserverWrapper();
|
||||||
|
|
||||||
handleScroll = debounce(() => {
|
handleScroll = debounce(() => {
|
||||||
|
if (this.node) {
|
||||||
const { scrollTop, scrollHeight, clientHeight } = this.node;
|
const { scrollTop, scrollHeight, clientHeight } = this.node;
|
||||||
const offset = scrollHeight - scrollTop - clientHeight;
|
const offset = scrollHeight - scrollTop - clientHeight;
|
||||||
this._oldScrollPosition = scrollHeight - scrollTop;
|
this._oldScrollPosition = scrollHeight - scrollTop;
|
||||||
|
@ -42,6 +43,7 @@ export default class StatusList extends ImmutablePureComponent {
|
||||||
} else if (this.props.onScroll) {
|
} else if (this.props.onScroll) {
|
||||||
this.props.onScroll();
|
this.props.onScroll();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}, 200, {
|
}, 200, {
|
||||||
trailing: true,
|
trailing: true,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue