Browse Source

Prevent scrolling main frame when navigating in image gallery with arrow keys

closed-social-glitch-2
Thibaut Girka 5 years ago
committed by ThibG
parent
commit
82ab5aacb2
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      app/javascript/flavours/glitch/features/ui/components/media_modal.js

+ 7
- 3
app/javascript/flavours/glitch/features/ui/components/media_modal.js View File

@ -48,23 +48,27 @@ export default class MediaModal extends ImmutablePureComponent {
this.setState({ index: index % this.props.media.size });
}
handleKeyUp = (e) => {
handleKeyDown = (e) => {
switch(e.key) {
case 'ArrowLeft':
this.handlePrevClick();
e.preventDefault();
e.stopPropagation();
break;
case 'ArrowRight':
this.handleNextClick();
e.preventDefault();
e.stopPropagation();
break;
}
}
componentDidMount () {
window.addEventListener('keyup', this.handleKeyUp, false);
window.addEventListener('keydown', this.handleKeyDown, false);
}
componentWillUnmount () {
window.removeEventListener('keyup', this.handleKeyUp);
window.removeEventListener('keydown', this.handleKeyDown);
}
getIndex () {

Loading…
Cancel
Save