Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | 4x 16x 16x 10x 10x 18x 16x 16x 16x 14x 14x 16x | import {
derive,
strictEqual,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
type Readable,
type Config,
type OwnedReadable,
type ReadableLike,
getReadable,
isReadable,
} from "@embra/reactivity";
import { useMemo, useRef } from "react";
import { type ReadableImpl } from "../readable";
import { useIsomorphicLayoutEffect } from "./utils";
export interface UseDerive {
/**
* Derive a new {@link Readable} with same value from the given {@link ReadableLike}.
* @param dep - The {@link ReadableLike} to derive from.
* @returns A {@link Readable} with same value as the given {@link ReadableLike}.
*/
<TDepValue, TValue>(dep: ReadableLike<TDepValue>): OwnedReadable<TValue>;
/**
* Derive a new {@link Readable} with same value from the given {@link ReadableLike}.
* @param dep - The {@link ReadableLike} to derive from, or a non-Readable value that will be returned as-is.
* @returns A {@link Readable} with same value as the given {@link ReadableLike}, or `dep` itself if `dep` is not a {@link ReadableLike}.
*/
<TDepValue, TValue, U>(dep: ReadableLike<TDepValue> | U): OwnedReadable<TValue> | U;
/**
* Derive a new {@link Readable} with transformed value from the given {@link ReadableLike}.
* @param dep - The {@link ReadableLike} to derive from.
* @param transform - A pure function that takes an input value and returns a new value.
* @param config - Optional custom {@link Config}.
* @returns A {@link Readable} with transformed value from the given {@link ReadableLike}.
*/
<TDepValue, TValue>(
dep: ReadableLike<TDepValue>,
transform: (depValue: TDepValue) => TValue,
config?: Config<TValue>,
): OwnedReadable<TValue>;
/**
* Derive a new {@link Readable} with transformed value from the given {@link ReadableLike}.
* @param dep - The {@link ReadableLike} to derive from, or a non-Readable value that will be returned as-is.
* @param transform - A pure function that takes an input value and returns a new value.
* @param config - Optional custom {@link Config}.
* @returns A {@link Readable} with transformed value from the given {@link ReadableLike}, or `dep` itself if `dep` is not a {@link ReadableLike}.
*/
<TDepValue, TValue, U>(
dep: ReadableLike<TDepValue> | U,
transform: (depValue: TDepValue) => TValue,
config?: Config<TValue>,
): OwnedReadable<TValue> | U;
}
/**
* Derive a new {@link Readable} from the given {@link ReadableLike}.
*
* Note that changes to `transform` and `config` will not trigger re-derivation, and `useDerive` always uses the latest `transform` and `config` in the derivation.
*
* @category Hooks
* @param dep - The {@link ReadableLike} to derive from, or a non-Readable value that will be returned as-is.
* @param transform - Optional pure function that takes an input value and returns a new value.
* @param config - Optional custom {@link Config}.
* @returns A {@link Readable} with transformed value from the given {@link ReadableLike}, or `dep` itself if `dep` is not a {@link ReadableLike}.
*
* @example
* ```tsx
* import { useDerive, useValue } from "@embra/reactivity/react";
*
* function App({ position3d$ }) {
* const position2d$ = useDerive(
* position3d$,
* ({ x, y }) => ({ x, y }),
* { equal: (p1, p2) => p1.x === p2.x && p1.y === p2.y }
* );
* const position2d = useValue(position2d$);
* }
* ```
*/
export const useDerive: UseDerive = <TDepValue, TValue, U>(
dep: ReadableLike<TDepValue> | U,
transform?: (depValue: TDepValue) => TValue,
config?: Config<TValue>,
): OwnedReadable<TValue> | U => {
const transformRef = useRef(transform);
const computed = useMemo(() => {
const $ = getReadable(dep);
return $
? derive(
$,
depValue => (transformRef.current ? transformRef.current(depValue) : (depValue as unknown as TValue)),
config,
)
: (dep as U);
}, [dep]);
useIsomorphicLayoutEffect(() => {
transformRef.current = transform;
if (isReadable(computed)) {
(computed as ReadableImpl).name = config?.name;
(computed as ReadableImpl).equal_ = (config?.equal ?? strictEqual) || undefined;
}
}, [transform, config]);
return computed;
};
|