javascript - React hooks vs eventListener - Stack Overflow

So... I was trying useEffect but I found a strange behavior.I have a state in a dumb ponent. I call u

So... I was trying useEffect but I found a strange behavior. I have a state in a dumb ponent. I call useEffect and inside of it I add a new eventListener. This event listener has to change the state given a condition. Problem is the state never changes... Ideas?

const ponentToRender=()=>{
    const [renderStatus, changeRenderStatus]=useState(false);
    const [transitionStatus, changeTransitionStatus]=useState(false);
    if(!renderStatus){
        useEffect(()=>{
            window.addEventListener("transitionend",(event)=>{
                if(event.propertyName==="width"){
                    changeTransitionStatus(transitionStatus?false:true);
                }
            })
        })
        changeRenderStatus(true)
    }
    return (transitionStatus)?<div> First case </div>:<div> Second case</div>
}

there's another function with some DOM manipulation onMouseOver.

This function should change the state from the event listener but it doesn't.

So... I was trying useEffect but I found a strange behavior. I have a state in a dumb ponent. I call useEffect and inside of it I add a new eventListener. This event listener has to change the state given a condition. Problem is the state never changes... Ideas?

const ponentToRender=()=>{
    const [renderStatus, changeRenderStatus]=useState(false);
    const [transitionStatus, changeTransitionStatus]=useState(false);
    if(!renderStatus){
        useEffect(()=>{
            window.addEventListener("transitionend",(event)=>{
                if(event.propertyName==="width"){
                    changeTransitionStatus(transitionStatus?false:true);
                }
            })
        })
        changeRenderStatus(true)
    }
    return (transitionStatus)?<div> First case </div>:<div> Second case</div>
}

there's another function with some DOM manipulation onMouseOver.

This function should change the state from the event listener but it doesn't.

Share edited Feb 9, 2019 at 10:38 Marco Sciortino asked Feb 8, 2019 at 22:24 Marco SciortinoMarco Sciortino 811 gold badge1 silver badge7 bronze badges 1
  • please post your releavant code – Shubham Khatri Commented Feb 9, 2019 at 6:54
Add a ment  | 

1 Answer 1

Reset to default 11
  1. you can't use hooks inside a if statement, see hooks-rules
  2. you should return a clean up function from your useEffect hooks to remove the event listener and avoid memory leaks
  3. you probably want the effect to run only once, so provide an empty array as second argument to useEffect (I don't think you need renderStatus)
  4. inside the useEffect, when calling a state setter, prefer the functional form so that you always have a fresh state value.

example

const ponentToRender = () => {
  //const [renderStatus, changeRenderStatus] = useState(false);
  const [transitionStatus, changeTransitionStatus] = useState(false);

  // No condition
  useEffect(() => {
    const handler = (event) => {
      if (event.propertyName === "width") {
        //passe a function to state setter to get fresh state value
        changeTransitionStatus(transitionStatus => transitionStatus ? false : true);
      }
    };

    window.addEventListener("transitionend", handler);

    // clean up
    return () => window.removeEventListener("transitionend", handler);
  }, []); // empty array => run only once

  return (transitionStatus) ? <div> First case </div> : <div> Second case</div>
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743674422a4488319.html

相关推荐

  • javascript - React hooks vs eventListener - Stack Overflow

    So... I was trying useEffect but I found a strange behavior.I have a state in a dumb ponent. I call u

    23小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信