React'i kullanın: Etki kancası ilk işlemede çalıştırılmaz


95

Dokümanlara göre:

componentDidUpdate()güncelleme gerçekleştikten hemen sonra çağrılır. Bu yöntem, ilk oluşturma için çağrılmaz.

Yeni useEffect()kancayı simüle etmek için kullanabiliriz componentDidUpdate(), ancak useEffect()her işlemeden sonra, hatta ilk seferinde çalıştırılıyor gibi görünüyor . İlk işlemede çalışmamasını nasıl sağlayabilirim?

Aşağıdaki örnekte görebileceğiniz gibi, componentDidUpdateFunctionilk oluşturma sırasında yazdırıldı, ancak ilk oluşturma componentDidUpdateClasssırasında yazdırılmadı.

function ComponentDidUpdateFunction() {
  const [count, setCount] = React.useState(0);
  React.useEffect(() => {
    console.log("componentDidUpdateFunction");
  });

  return (
    <div>
      <p>componentDidUpdateFunction: {count} times</p>
      <button
        onClick={() => {
          setCount(count + 1);
        }}
      >
        Click Me
      </button>
    </div>
  );
}

class ComponentDidUpdateClass extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      count: 0,
    };
  }

  componentDidUpdate() {
    console.log("componentDidUpdateClass");
  }

  render() {
    return (
      <div>
        <p>componentDidUpdateClass: {this.state.count} times</p>
        <button
          onClick={() => {
            this.setState({ count: this.state.count + 1 });
          }}
        >
          Click Me
        </button>
      </div>
    );
  }
}

ReactDOM.render(
  <div>
    <ComponentDidUpdateFunction />
    <ComponentDidUpdateClass />
  </div>,
  document.querySelector("#app")
);
<script src="https://unpkg.com/react@16.7.0-alpha.0/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16.7.0-alpha.0/umd/react-dom.development.js"></script>

<div id="app"></div>


1
Oluşturma sayısına dayalı bir şey yapmanın mantıklı olduğu ve açık bir durum değişkeninin olmadığı durumlarda kullanım durumu nedir diye sorabilir miyim count?
Nisan

Yanıtlar:


111

useRefKancayı sevdiğimiz herhangi bir değişken değeri saklamak için kullanabiliriz , böylece useEffectfonksiyonun ilk kez çalıştırılıp çalıştırılmadığını takip etmek için bunu kullanabiliriz .

Efektin bununla aynı aşamada çalışmasını istiyorsak, onun yerine componentDidUpdatekullanabiliriz useLayoutEffect.

Misal

const { useState, useRef, useLayoutEffect } = React;

function ComponentDidUpdateFunction() {
  const [count, setCount] = useState(0);

  const firstUpdate = useRef(true);
  useLayoutEffect(() => {
    if (firstUpdate.current) {
      firstUpdate.current = false;
      return;
    }

    console.log("componentDidUpdateFunction");
  });

  return (
    <div>
      <p>componentDidUpdateFunction: {count} times</p>
      <button
        onClick={() => {
          setCount(count + 1);
        }}
      >
        Click Me
      </button>
    </div>
  );
}

ReactDOM.render(
  <ComponentDidUpdateFunction />,
  document.getElementById("app")
);
<script src="https://unpkg.com/react@16.7.0-alpha.0/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16.7.0-alpha.0/umd/react-dom.development.js"></script>

<div id="app"></div>


5
Ben yerine çalıştı useRefile useStateancak ayarlayıcı kullanarak atarken olmuyor ki, bir yeniden işlemek tetiklenen firstUpdate.currentbu :) sadece güzel bir yolu olduğunu tahmin
Aprillion

2
DOM'u değiştirmiyorsak veya ölçmüyorsak biri neden düzen efektini kullandığımızı açıklayabilir mi?
ZenVentzi

5
@ZenVentzi Bu örnekte gerekli değil, ama soru componentDidUpdatekancalarla nasıl taklit edileceğiydi , bu yüzden kullandım.
Tholle

Bu cevaba göre burada özel bir kanca oluşturdum . Uygulama için teşekkürler!
Patrick Roberts

56

Bunu aşağıdaki gibi özel kancalara dönüştürebilirsiniz :

import React, { useEffect, useRef } from 'react';

const useDidMountEffect = (func, deps) => {
    const didMount = useRef(false);

    useEffect(() => {
        if (didMount.current) func();
        else didMount.current = true;
    }, deps);
}

export default useDidMountEffect;

Kullanım örneği:

import React, { useState, useEffect } from 'react';

import useDidMountEffect from '../path/to/useDidMountEffect';

const MyComponent = (props) => {    
    const [state, setState] = useState({
        key: false
    });    

    useEffect(() => {
        // you know what is this, don't you?
    }, []);

    useDidMountEffect(() => {
        // react please run me if 'key' changes, but not on initial render
    }, [state.key]);    

    return (
        <div>
             ...
        </div>
    );
}
// ...

2
Bu yaklaşım, bağımlılık listesinin bir dizi değişmezi olmadığını söyleyen uyarılar atar.
theprogrammer

1
Bu kancayı projelerimde kullanıyorum ve herhangi bir uyarı görmedim, daha fazla bilgi verebilir misiniz?
Mehdi Dehghani

1
@vsync İlk görüntülemede bir kez ve bir daha asla bir efekt çalıştırmak istemediğiniz farklı bir durum hakkında düşünüyorsunuz
Programming Guy

2
@vsync notaları bölümünde reactjs.org/docs/... o özellikle bir etkiye çalıştırıp (bağlama ve bağlantısını kesme üzerine) sadece bir kez temizlemek istiyorsanız, boş bir dizi geçebilir" diyor ([]) bir şekilde ikinci argüman. " Bu benim için gözlemlenen davranışla eşleşiyor.
Programming Guy

5

useFirstRenderForm girdisine odaklanmak gibi durumları ele almak için basit bir kanca yaptım :

import { useRef, useEffect } from 'react';

export function useFirstRender() {
  const firstRender = useRef(true);

  useEffect(() => {
    firstRender.current = false;
  }, []);

  return firstRender.current;
}

Gibi başlar true, sonra geçer, falseiçinde useEffectbir daha asla sadece bir kez çalıştığı, ve.

Bileşeninizde kullanın:

const firstRender = useFirstRender();
const phoneNumberRef = useRef(null);

useEffect(() => {
  if (firstRender || errors.phoneNumber) {
    phoneNumberRef.current.focus();
  }
}, [firstRender, errors.phoneNumber]);

Davanız için sadece kullanırsınız if (!firstRender) { ....


3

@ravi, sizinki geçilen unmount işlevini çağırmaz. İşte biraz daha eksiksiz bir sürüm:

/**
 * Identical to React.useEffect, except that it never runs on mount. This is
 * the equivalent of the componentDidUpdate lifecycle function.
 *
 * @param {function:function} effect - A useEffect effect.
 * @param {array} [dependencies] - useEffect dependency list.
 */
export const useEffectExceptOnMount = (effect, dependencies) => {
  const mounted = React.useRef(false);
  React.useEffect(() => {
    if (mounted.current) {
      const unmount = effect();
      return () => unmount && unmount();
    } else {
      mounted.current = true;
    }
  }, dependencies);

  // Reset on unmount for the next mount.
  React.useEffect(() => {
    return () => mounted.current = false;
  }, []);
};


Merhaba @Whatabrain, bu özel kancayı bağımlılık dışı listeyi geçerken nasıl kullanabilirim? ComponentDidmount ile aynı olacak bir boş değil, ama buna benzer bir şeyuseEffect(() => {...});
KevDing

1
@KevDing, dependenciesparametreyi çağırdığınızda atlamak kadar basit olmalıdır .
Whatabrain

1

@MehdiDehghani, çözümünüz mükemmel bir şekilde çalışıyor, yapmanız gereken bir ekleme ayırmak, didMount.currentdeğeri sıfırlamak false. Bu özel kancayı başka bir yerde ne zaman kullanmaya çalışacağınız, önbellek değeri alamazsınız.

import React, { useEffect, useRef } from 'react';

const useDidMountEffect = (func, deps) => {
    const didMount = useRef(false);

    useEffect(() => {
        let unmount;
        if (didMount.current) unmount = func();
        else didMount.current = true;

        return () => {
            didMount.current = false;
            unmount && unmount();
        }
    }, deps);
}

export default useDidMountEffect;

Bunun gerekli olduğundan emin değilim, çünkü eğer bileşen yeniden bağlanırsa, çünkü yeniden bağlanırsa, didMount zaten yeniden başlatılacak false.
Cameron Yick
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.