All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.esm.helpers.useUnmountEffect.js Maven / Gradle / Ivy

Go to download

This library provides a set of common React components for use with the PatternFly reference implementation.

The newest version!
import { useEffect, useRef } from 'react';
/**
 * A `useEffect`-like hook that only triggers when a component unmounts. Does not require a dependency list, as the effect callback will always be kept up to date.
 */
export function useUnmountEffect(effect) {
    // Always use the latest effect callback so that it can reference the latest props and state.
    const effectRef = useRef(effect);
    effectRef.current = effect;
    // Trigger the effect callback when the component unmounts.
    useEffect(() => () => {
        effectRef.current();
    }, []);
}
//# sourceMappingURL=useUnmountEffect.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy