首页 > 解决方案 > 触发 useState

问题描述

我有一个组件并使用不同的道具有条件地渲染它。

      {activeNavItem === 'Concept Art' ? (
        <Gallary
          images={conceptArtImages}
          sectionRef={sectionRef}
        />
      ) : (
        <Gallary
          images={mattePaintingImages}
          sectionRef={sectionRef}
        />
      )}

这个组件有useState(false)useEffect钩子。useEffect确定屏幕位置何时到达 dom 元素并触发useStatetrue: elementPosition < screenPosition。然后我state在 dom 元素上的触发器类:state ? 'animationClass' : ''

const Gallary = ({ images, sectionRef }) => {
  const [isViewed, setIsViewed] = useState(false);

  useEffect(() => {
    const section = sectionRef.current;

    const onScroll = () => {
      const screenPosition = window.innerHeight / 2;
      const sectionPosition = section.getBoundingClientRect().top;
      console.log(screenPosition);

      if (sectionPosition < screenPosition) setIsViewed(true);
    };

    onScroll();
    window.addEventListener('scroll', onScroll);

    return () => {
      window.removeEventListener('scroll', onScroll);
    };
  }, [sectionRef]);

  return (
    <ul className="section-gallary__list">
      {images.map((art, index) => (
        <li
          key={index}
          className={`section-gallary__item ${isViewed ? 'animation--view' : ''}`}>
          <img className="section-gallary__img" src={art} alt="concept art" />
        </li>
      ))}
    </ul>
  );
};

问题:它适用于我的第一次渲染。但是当我用不同的道具切换组件时,我state最初是true并且我没有动画。

我注意到,如果我有两个组件(ComponentA, ComponentB)而不是一个(ComponentA),它可以正常工作。

标签: javascriptreactjsreact-hooks

解决方案


isViewed当您的组件不在视图中时,请尝试设置为 false,如下所示:

if (sectionPosition < screenPosition && !isViewed){
setIsViewed(true);
}
else{
if(isViewed) 
   setIsViewed(false);
}

你可以这样做:

if (sectionPosition < screenPosition && !isViewed){
setIsViewed(state=>!state);
}
else{
if(isViewed) 
   setIsViewed(state=>!state);
}

加上不需要多次渲染同一个组件,你可以只更改道具:

  <Gallary
      images={activeNavItem === 'ConceptArt'?conceptArtImages:mattePaintingImages}
      sectionRef={sectionRef}
    />

推荐阅读