[Glitch] Only scroll to the compose form if it's not horizontally in the viewport

Port c07cca4727 to glitch-soc
This commit is contained in:
ThibG 2019-07-06 18:18:08 +02:00 committed by Thibaut Girka
parent a0b614f10a
commit 64f3bc77ac
1 changed files with 4 additions and 1 deletions

View File

@ -197,7 +197,10 @@ class ComposeForm extends ImmutablePureComponent {
handleFocus = () => {
if (this.composeForm && !this.props.singleColumn) {
this.composeForm.scrollIntoView();
const { left, right } = this.composeForm.getBoundingClientRect();
if (left < 0 || right > (window.innerWidth || document.documentElement.clientWidth)) {
this.composeForm.scrollIntoView();
}
}
}