UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

37 lines (36 loc) 1.2 kB
import { useEffect, useRef } from 'react'; import { initialUpdaterRun } from '../animation'; import { makeMutable, startMapper, stopMapper } from '../core'; export function useDerivedValue(processor, dependencies) { var _a; const initRef = useRef(null); const inputs = Object.values((_a = processor._closure) !== null && _a !== void 0 ? _a : {}); // build dependencies if (dependencies === undefined) { dependencies = [...inputs, processor.__workletHash]; } else { dependencies.push(processor.__workletHash); } if (initRef.current === null) { initRef.current = makeMutable(initialUpdaterRun(processor)); } // eslint-disable-next-line @typescript-eslint/no-non-null-assertion const sharedValue = initRef.current; useEffect(() => { const fun = () => { 'worklet'; sharedValue.value = processor(); }; const mapperId = startMapper(fun, inputs, [sharedValue]); return () => { stopMapper(mapperId); }; }, dependencies); useEffect(() => { return () => { initRef.current = null; }; }, []); return sharedValue; }