overshadow requirement for remote-lookup
This commit is contained in:
parent
44fad0160f
commit
6cdcac1396
3 changed files with 25 additions and 2 deletions
|
@ -44,7 +44,7 @@ const Lightbox = React.createClass({
|
|||
|
||||
componentDidMount () {
|
||||
this._listener = e => {
|
||||
if (e.key === 'Escape') {
|
||||
if (this.props.isVisible && e.key === 'Escape') {
|
||||
this.props.onCloseClicked();
|
||||
}
|
||||
};
|
||||
|
|
|
@ -104,6 +104,29 @@ const Modal = React.createClass({
|
|||
this.props.onPrevClicked();
|
||||
},
|
||||
|
||||
componentDidMount () {
|
||||
this._listener = e => {
|
||||
if (!this.props.isVisible) {
|
||||
return;
|
||||
}
|
||||
|
||||
switch(e.key) {
|
||||
case 'ArrowLeft':
|
||||
this.props.onPrevClicked();
|
||||
break;
|
||||
case 'ArrowRight':
|
||||
this.props.onNextClicked();
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
window.addEventListener('keyup', this._listener);
|
||||
},
|
||||
|
||||
componentDidUnmount () {
|
||||
window.removeEventListener('keyup', this._listener);
|
||||
},
|
||||
|
||||
render () {
|
||||
const { media, index, ...other } = this.props;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue