@primer/components
Version:
Primer react components
18 lines (17 loc) • 694 B
JavaScript
import { useCallback, useRef, useState } from 'react';
/**
* There are certain situations where a ref might be set after the current render cycle for a
* component has finished. e.g. a forward ref from a conditionally rendered child component.
* In these situations, we need to force a re-render, which is done here by the useState hook.
* @type TRef The type of the RefObject which should be created.
*/
export function useRenderForcingRef() {
const [refCurrent, setRefCurrent] = useState(null);
const ref = useRef(null);
ref.current = refCurrent;
const setRef = useCallback(newRef => {
ref.current = newRef;
setRefCurrent(newRef);
}, [ref]);
return [ref, setRef];
}