Chcę użyć zdarzenia keyDown na div w Reakcie. Ja robię:
componentWillMount() {
document.addEventListener("keydown", this.onKeyPressed.bind(this));
}
componentWillUnmount() {
document.removeEventListener("keydown", this.onKeyPressed.bind(this));
}
onKeyPressed(e) {
console.log(e.keyCode);
}
render() {
let player = this.props.boards.dungeons[this.props.boards.currentBoard].player;
return (
<div
className="player"
style={{ position: "absolute" }}
onKeyDown={this.onKeyPressed} // not working
>
<div className="light-circle">
<div className="image-wrapper">
<img src={IMG_URL+player.img} />
</div>
</div>
</div>
)
}
Działa dobrze, ale chciałbym to zrobić bardziej w stylu React. próbowałem
onKeyDown={this.onKeyPressed}
na komponencie. Ale to nie reaguje. O ile pamiętam, działa na elementach wejściowych.
Jak mogę to zrobić?