Browse Source

In thread view, only scroll first update, scroll to replied-to post (#5322)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
1823cf435a
1 changed files with 9 additions and 2 deletions
  1. +9
    -2
      app/javascript/mastodon/features/status/index.js

+ 9
- 2
app/javascript/mastodon/features/status/index.js View File

@ -78,6 +78,7 @@ export default class Status extends ImmutablePureComponent {
componentWillReceiveProps (nextProps) {
if (nextProps.params.statusId !== this.props.params.statusId && nextProps.params.statusId) {
this._scrolledIntoView = false;
this.props.dispatch(fetchStatus(nextProps.params.statusId));
}
}
@ -240,11 +241,17 @@ export default class Status extends ImmutablePureComponent {
}
componentDidUpdate () {
if (this._scrolledIntoView) {
return;
}
const { status, ancestorsIds } = this.props;
if (status && ancestorsIds && ancestorsIds.size > 0) {
const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size];
element.scrollIntoView();
const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size - 1];
element.scrollIntoView(true);
this._scrolledIntoView = true;
}
}

Loading…
Cancel
Save