I am trying to change the background color of my ReactJs web app dynamically when pressing the up arrow on a keyboard. However, when running this code, I am receiving the following error message:
Uncaught TypeError: Cannot read property 'setAttribute' of null
The component that this piece of code is placed in has one parent which renders the entire app.
handleKeyDownEvent(event) {
if (event.keyCode == 38) {
event.preventDefault();
/*if up key or swipe up*/
if (this.state.isInverted == false) {
document.getElementById("body").setAttribute("background-color", "#000000");
this.setState({ isInverted: true });
}
else {
document.getElementById("body").setAttribute("background-color", "#FFFFFF");
this.setState({ isInverted: false });
}
}
}
How would I fix this? Any suggestions on better methods to change the background color dynamically in React?
Thanks!
bodyexists.