@dxos/react-hooks 0.8.4-main.c1de068 → 0.8.4-main.e098934

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/lib/browser/index.mjs +125 -57
  2. package/dist/lib/browser/index.mjs.map +4 -4
  3. package/dist/lib/browser/meta.json +1 -1
  4. package/dist/lib/node-esm/index.mjs +125 -57
  5. package/dist/lib/node-esm/index.mjs.map +4 -4
  6. package/dist/lib/node-esm/meta.json +1 -1
  7. package/dist/types/src/index.d.ts +2 -1
  8. package/dist/types/src/index.d.ts.map +1 -1
  9. package/dist/types/src/useAsyncEffect.d.ts +5 -29
  10. package/dist/types/src/useAsyncEffect.d.ts.map +1 -1
  11. package/dist/types/src/useAsyncEffect.stories.d.ts +9 -0
  12. package/dist/types/src/useAsyncEffect.stories.d.ts.map +1 -0
  13. package/dist/types/src/useControlledState.d.ts +1 -0
  14. package/dist/types/src/useControlledState.d.ts.map +1 -1
  15. package/dist/types/src/useDebugDeps.d.ts +6 -0
  16. package/dist/types/src/useDebugDeps.d.ts.map +1 -0
  17. package/dist/types/src/useDynamicRef.d.ts +6 -1
  18. package/dist/types/src/useDynamicRef.d.ts.map +1 -1
  19. package/dist/types/src/useIsFocused.d.ts.map +1 -1
  20. package/dist/types/src/useSignals.d.ts +10 -0
  21. package/dist/types/src/useSignals.d.ts.map +1 -0
  22. package/dist/types/src/useTimeout.d.ts +2 -1
  23. package/dist/types/src/useTimeout.d.ts.map +1 -1
  24. package/dist/types/tsconfig.tsbuildinfo +1 -1
  25. package/package.json +4 -3
  26. package/src/index.ts +2 -1
  27. package/src/useAsyncEffect.stories.tsx +34 -0
  28. package/src/useAsyncEffect.ts +19 -49
  29. package/src/useControlledState.ts +1 -0
  30. package/src/useDebugDeps.ts +26 -0
  31. package/src/useDefaultValue.ts +1 -1
  32. package/src/useDynamicRef.ts +27 -5
  33. package/src/useForwardedRef.ts +1 -1
  34. package/src/useIsFocused.ts +1 -1
  35. package/src/useSignals.ts +27 -0
  36. package/src/useTimeout.ts +28 -3
  37. package/src/useTrackProps.ts +1 -1
  38. package/src/useTransitions.ts +1 -1
  39. package/dist/types/src/useAsyncEffect.test.d.ts +0 -2
  40. package/dist/types/src/useAsyncEffect.test.d.ts.map +0 -1
  41. package/dist/types/src/useDebugReactDeps.d.ts +0 -6
  42. package/dist/types/src/useDebugReactDeps.d.ts.map +0 -1
  43. package/src/useAsyncEffect.test.tsx +0 -51
  44. package/src/useDebugReactDeps.ts +0 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/react-hooks",
3
- "version": "0.8.4-main.c1de068",
3
+ "version": "0.8.4-main.e098934",
4
4
  "description": "React hooks supporting DXOS React primitives.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -10,6 +10,7 @@
10
10
  "type": "module",
11
11
  "exports": {
12
12
  ".": {
13
+ "source": "./src/index.ts",
13
14
  "types": "./dist/types/src/index.d.ts",
14
15
  "browser": "./dist/lib/browser/index.mjs",
15
16
  "node": "./dist/lib/node-esm/index.mjs"
@@ -27,8 +28,8 @@
27
28
  "@preact-signals/safe-react": "^0.9.0",
28
29
  "alea": "^1.0.1",
29
30
  "lodash.defaultsdeep": "^4.6.1",
30
- "@dxos/async": "0.8.4-main.c1de068",
31
- "@dxos/log": "0.8.4-main.c1de068"
31
+ "@dxos/async": "0.8.4-main.e098934",
32
+ "@dxos/log": "0.8.4-main.e098934"
32
33
  },
33
34
  "devDependencies": {
34
35
  "@types/lodash.defaultsdeep": "^4.6.6",
package/src/index.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  export * from './useAsyncEffect';
6
6
  export * from './useAsyncState';
7
7
  export * from './useControlledState';
8
- export * from './useDebugReactDeps';
8
+ export * from './useDebugDeps';
9
9
  export * from './useDefaultValue';
10
10
  export * from './useDefaults';
11
11
  export * from './useDynamicRef';
@@ -17,6 +17,7 @@ export * from './useMediaQuery';
17
17
  export * from './useMulticastObservable';
18
18
  export * from './useRefCallback';
19
19
  export * from './useResize';
20
+ export * from './useSignals';
20
21
  export * from './useTimeout';
21
22
  export * from './useTrackProps';
22
23
  export * from './useTransitions';
@@ -0,0 +1,34 @@
1
+ //
2
+ // Copyright 2025 DXOS.org
3
+ //
4
+
5
+ import '@dxos-theme';
6
+
7
+ import { type Meta, type StoryObj } from '@storybook/react-vite';
8
+ import React, { useState } from 'react';
9
+
10
+ import { sleep } from '@dxos/async';
11
+
12
+ import { useAsyncEffect } from './useAsyncEffect';
13
+
14
+ const meta = {
15
+ title: 'ui/react-hooks/useAsyncEffect',
16
+ } satisfies Meta;
17
+
18
+ export default meta;
19
+
20
+ type Story = StoryObj<typeof meta>;
21
+
22
+ export const Default: Story = {
23
+ render: () => {
24
+ const [value, setValue] = useState(0);
25
+ useAsyncEffect(async (controller) => {
26
+ await sleep(100);
27
+ if (!controller.signal.aborted) {
28
+ setValue((value) => value + 1);
29
+ }
30
+ }, []);
31
+
32
+ return <div>{value}</div>;
33
+ },
34
+ };
@@ -2,61 +2,31 @@
2
2
  // Copyright 2022 DXOS.org
3
3
  //
4
4
 
5
- import { useEffect } from 'react';
6
-
7
- import { log } from '@dxos/log';
5
+ import { type DependencyList, type EffectCallback, useEffect } from 'react';
8
6
 
9
7
  /**
10
- * Process async event with optional non-async destructor.
11
- * Inspired by: https://github.com/rauldeheer/use-async-effect/blob/master/index.js
12
- *
13
- * ```tsx
14
- * useAsyncEffect(async () => {
15
- * await test();
16
- * }, []);
17
- * ```
18
- *
19
- * The callback may check of the component is still mounted before doing state updates.
20
- *
21
- * ```tsx
22
- * const [value, setValue] = useState<string>();
23
- * useAsyncEffect<string>(async (isMounted) => {
24
- * const value = await test();
25
- * if (!isMounted()) {
26
- * setValue(value);
27
- * }
28
- * }, () => console.log('Unmounted'), []);
29
- * ```
30
- *
31
- * @param callback Receives a getter function that determines if the component is still mounted.
32
- * @param destructor Receives the value returned from the callback.
33
- * @param deps
34
- *
35
- * NOTE: This effect does not cancel the async operation if the component is unmounted.
36
- *
37
- * @deprecated Use useTimeout.
8
+ * Async version of useEffect.
9
+ * The `AbortController` can be used to detect if the component has been unmounted and
10
+ * can be used to propagate abort signals to downstream async operations (e.g., `fetch`).
38
11
  */
39
- export const useAsyncEffect = <T>(
40
- callback: (isMounted: () => boolean) => Promise<T> | undefined,
41
- destructor?: ((value?: T) => void) | any[],
42
- deps?: any[],
12
+ export const useAsyncEffect = (
13
+ cb: (controller: AbortController) => Promise<EffectCallback | void>,
14
+ deps?: DependencyList,
43
15
  ) => {
44
- const [effectDestructor, effectDeps] =
45
- typeof destructor === 'function' ? [destructor, deps] : [undefined, destructor];
46
-
47
16
  useEffect(() => {
48
- let mounted = true;
49
- let value: T | undefined;
50
- const asyncResult = callback(() => mounted);
51
- void Promise.resolve(asyncResult)
52
- .then((result) => {
53
- value = result;
54
- })
55
- .catch(log.catch);
17
+ const controller = new AbortController();
18
+ let cleanup: EffectCallback | void;
19
+ // NOTE: Timeout enables us to immediately cancel. if the component is unmounted.
20
+ const t = setTimeout(async () => {
21
+ if (!controller.signal.aborted) {
22
+ cleanup = await cb(controller);
23
+ }
24
+ });
56
25
 
57
26
  return () => {
58
- mounted = false;
59
- effectDestructor?.(value);
27
+ clearTimeout(t);
28
+ controller.abort();
29
+ cleanup?.();
60
30
  };
61
- }, effectDeps);
31
+ }, deps ?? []);
62
32
  };
@@ -6,6 +6,7 @@ import { type Dispatch, type SetStateAction, useEffect, useState } from 'react';
6
6
 
7
7
  /**
8
8
  * A stateful hook with a controlled value.
9
+ * NOTE: Be careful not to provide an inlinde default array.
9
10
  */
10
11
  export const useControlledState = <T>(
11
12
  controlledValue: T,
@@ -0,0 +1,26 @@
1
+ //
2
+ // Copyright 2024 DXOS.org
3
+ //
4
+
5
+ import { type DependencyList, useEffect, useRef } from 'react';
6
+
7
+ /**
8
+ * Util to log deps that have changed.
9
+ */
10
+ export const useDebugDeps = (deps: DependencyList = []) => {
11
+ const lastDeps = useRef<DependencyList>([]);
12
+ useEffect(() => {
13
+ console.group('deps changed', { previous: lastDeps.current.length, current: deps.length });
14
+ for (let i = 0; i < Math.max(lastDeps.current.length ?? 0, deps.length ?? 0); i++) {
15
+ if (lastDeps.current[i] !== deps[i]) {
16
+ console.log('changed', {
17
+ index: i,
18
+ previous: lastDeps.current[i],
19
+ current: deps[i],
20
+ });
21
+ }
22
+ }
23
+ console.groupEnd();
24
+ lastDeps.current = deps;
25
+ }, deps);
26
+ };
@@ -2,7 +2,7 @@
2
2
  // Copyright 2024 DXOS.org
3
3
  //
4
4
 
5
- import { useEffect, useState, useMemo } from 'react';
5
+ import { useEffect, useMemo, useState } from 'react';
6
6
 
7
7
  /**
8
8
  * A custom React hook that provides a stable default value for a potentially undefined reactive value.
@@ -2,16 +2,38 @@
2
2
  // Copyright 2024 DXOS.org
3
3
  //
4
4
 
5
- import { useEffect, useRef } from 'react';
5
+ import { useCallback } from '@preact-signals/safe-react/react';
6
+ import { type Dispatch, type MutableRefObject, type SetStateAction, useEffect, useRef, useState } from 'react';
7
+
8
+ /**
9
+ * Like `useState` but with an additional dynamic value.
10
+ */
11
+ export const useStateWithRef = <T>(value$: T): [T, Dispatch<SetStateAction<T>>, MutableRefObject<T>] => {
12
+ const [value, setValue] = useState<T>(value$);
13
+ const valueRef = useRef<T>(value$);
14
+ const setter = useCallback<Dispatch<SetStateAction<T>>>((value) => {
15
+ if (typeof value === 'function') {
16
+ setValue((current) => {
17
+ valueRef.current = (value as Function)(current);
18
+ return valueRef.current;
19
+ });
20
+ } else {
21
+ valueRef.current = value;
22
+ setValue(value);
23
+ }
24
+ }, []);
25
+
26
+ return [value, setter, valueRef];
27
+ };
6
28
 
7
29
  /**
8
30
  * Ref that is updated by a dependency.
9
31
  */
10
- export const useDynamicRef = <T>(value: T) => {
11
- const ref = useRef<T>(value);
32
+ export const useDynamicRef = <T>(value: T): MutableRefObject<T> => {
33
+ const valueRef = useRef<T>(value);
12
34
  useEffect(() => {
13
- ref.current = value;
35
+ valueRef.current = value;
14
36
  }, [value]);
15
37
 
16
- return ref;
38
+ return valueRef;
17
39
  };
@@ -2,7 +2,7 @@
2
2
  // Copyright 2022 DXOS.org
3
3
  //
4
4
 
5
- import { type ForwardedRef, useRef, useEffect } from 'react';
5
+ import { type ForwardedRef, useEffect, useRef } from 'react';
6
6
 
7
7
  /**
8
8
  * Combines a possibly undefined forwarded ref with a locally defined ref.
@@ -5,7 +5,7 @@
5
5
  // Based upon the useIsFocused hook which is part of the `rci` project:
6
6
  /// https://github.com/leonardodino/rci/blob/main/packages/use-is-focused
7
7
 
8
- import { useEffect, useRef, useState, type RefObject } from 'react';
8
+ import { type RefObject, useEffect, useRef, useState } from 'react';
9
9
 
10
10
  export const useIsFocused = (inputRef: RefObject<HTMLInputElement>) => {
11
11
  const [isFocused, setIsFocused] = useState<boolean | undefined>(undefined);
@@ -0,0 +1,27 @@
1
+ //
2
+ // Copyright 2022 DXOS.org
3
+ //
4
+
5
+ import { computed, effect } from '@preact-signals/safe-react';
6
+ import { useRef } from '@preact-signals/safe-react/react';
7
+ import { type DependencyList, useEffect, useMemo } from 'react';
8
+
9
+ /**
10
+ * Like `useEffect` but also tracks signals inside of the callback.
11
+ */
12
+ export const useSignalsEffect = (cb: () => void | (() => void), deps?: DependencyList) => {
13
+ const callback = useRef(cb);
14
+ callback.current = cb;
15
+ useEffect(() => {
16
+ return effect(() => {
17
+ return callback.current();
18
+ });
19
+ }, deps ?? []);
20
+ };
21
+
22
+ /**
23
+ * Like `useMemo` but also tracks signals inside of the callback.
24
+ */
25
+ export const useSignalsMemo = <T>(cb: () => T, deps?: DependencyList) => {
26
+ return useMemo(() => computed(cb), deps ?? []).value;
27
+ };
package/src/useTimeout.ts CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  import { useEffect, useRef } from 'react';
6
6
 
7
- export const useTimeout = (callback: (() => Promise<void>) | undefined, delay = 0, deps: any[] = []) => {
7
+ export const useTimeout = (callback?: () => Promise<void>, delay = 0, deps: any[] = []) => {
8
8
  const callbackRef = useRef(callback);
9
9
  useEffect(() => {
10
10
  callbackRef.current = callback;
@@ -15,7 +15,32 @@ export const useTimeout = (callback: (() => Promise<void>) | undefined, delay =
15
15
  return;
16
16
  }
17
17
 
18
- const timeout = setTimeout(() => callbackRef.current?.(), delay);
19
- return () => clearTimeout(timeout);
18
+ const t = setTimeout(() => callbackRef.current?.(), delay);
19
+ return () => clearTimeout(t);
20
+ }, [delay, ...deps]);
21
+ };
22
+
23
+ export const useInterval = (
24
+ callback?: (() => Promise<void | boolean>) | (() => void | boolean),
25
+ delay = 0,
26
+ deps: any[] = [],
27
+ ) => {
28
+ const callbackRef = useRef(callback);
29
+ useEffect(() => {
30
+ callbackRef.current = callback;
31
+ }, [callback]);
32
+
33
+ useEffect(() => {
34
+ if (delay == null) {
35
+ return;
36
+ }
37
+
38
+ const i = setInterval(async () => {
39
+ const result = await callbackRef.current?.();
40
+ if (result === false) {
41
+ clearInterval(i);
42
+ }
43
+ }, delay);
44
+ return () => clearInterval(i);
20
45
  }, [delay, ...deps]);
21
46
  };
@@ -2,7 +2,7 @@
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
4
 
5
- import { useRef, useEffect } from 'react';
5
+ import { useEffect, useRef } from 'react';
6
6
 
7
7
  import { log } from '@dxos/log';
8
8
 
@@ -2,7 +2,7 @@
2
2
  // Copyright 2024 DXOS.org
3
3
  //
4
4
 
5
- import { useRef, useEffect, useState } from 'react';
5
+ import { useEffect, useRef, useState } from 'react';
6
6
 
7
7
  const isFunction = <T>(functionToCheck: any): functionToCheck is (value: T) => boolean => {
8
8
  return functionToCheck instanceof Function;
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=useAsyncEffect.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"useAsyncEffect.test.d.ts","sourceRoot":"","sources":["../../../src/useAsyncEffect.test.tsx"],"names":[],"mappings":""}
@@ -1,6 +0,0 @@
1
- import { type DependencyList } from 'react';
2
- /**
3
- * Util to log deps that have changed.
4
- */
5
- export declare const useDebugReactDeps: (deps?: DependencyList) => void;
6
- //# sourceMappingURL=useDebugReactDeps.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"useDebugReactDeps.d.ts","sourceRoot":"","sources":["../../../src/useDebugReactDeps.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,cAAc,EAAqB,MAAM,OAAO,CAAC;AAE/D;;GAEG;AAEH,eAAO,MAAM,iBAAiB,GAAI,OAAM,cAAmB,SAc1D,CAAC"}
@@ -1,51 +0,0 @@
1
- //
2
- // Copyright 2022 DXOS.org
3
- //
4
-
5
- import React, { useState } from 'react';
6
- import { createRoot } from 'react-dom/client';
7
- import { act } from 'react-dom/test-utils';
8
- import { afterEach, beforeEach, describe, expect, test } from 'vitest';
9
-
10
- import { useAsyncEffect } from './useAsyncEffect';
11
-
12
- const doAsync = async <T,>(value: T) =>
13
- await new Promise<T>((resolve) => {
14
- resolve(value);
15
- });
16
-
17
- const Test = () => {
18
- const [value, setValue] = useState<string>();
19
- useAsyncEffect(async (isMounted) => {
20
- const value = await doAsync('DXOS');
21
- if (isMounted()) {
22
- void act(() => {
23
- setValue(value);
24
- });
25
- }
26
- }, []);
27
-
28
- return <h1>{value}</h1>;
29
- };
30
-
31
- let rootContainer: HTMLElement;
32
-
33
- describe('useAsyncEffect', () => {
34
- beforeEach(() => {
35
- rootContainer = document.createElement('div');
36
- document.body.appendChild(rootContainer);
37
- });
38
-
39
- afterEach(() => {
40
- document.body.removeChild(rootContainer!);
41
- });
42
-
43
- test('gets async value.', async () => {
44
- await act(() => {
45
- createRoot(rootContainer).render(<Test />);
46
- });
47
-
48
- const h1 = rootContainer.querySelector('h1');
49
- expect(h1?.textContent).toEqual('DXOS');
50
- });
51
- });
@@ -1,27 +0,0 @@
1
- //
2
- // Copyright 2024 DXOS.org
3
- //
4
-
5
- /* eslint-disable no-console */
6
-
7
- import { type DependencyList, useEffect, useRef } from 'react';
8
-
9
- /**
10
- * Util to log deps that have changed.
11
- */
12
- // TODO(burdon): Move to react-hooks.
13
- export const useDebugReactDeps = (deps: DependencyList = []) => {
14
- const lastDeps = useRef<DependencyList>([]);
15
- useEffect(() => {
16
- console.group('deps changed', { old: lastDeps.current.length, new: deps.length });
17
- for (let i = 0; i < Math.max(lastDeps.current.length ?? 0, deps.length ?? 0); i++) {
18
- console.log(i, lastDeps.current[i] === deps[i] ? 'SAME' : 'CHANGED', {
19
- previous: lastDeps.current[i],
20
- current: deps[i],
21
- });
22
- }
23
-
24
- console.groupEnd();
25
- lastDeps.current = deps;
26
- }, deps);
27
- };