@react-aria/utils 3.17.0 → 3.18.0
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.
- package/dist/import.mjs +64 -40
- package/dist/main.js +63 -38
- package/dist/main.js.map +1 -1
- package/dist/module.js +64 -40
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +2 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/index.ts +1 -0
- package/src/useDeepMemo.ts +27 -0
- package/src/useDrag1D.ts +2 -0
- package/src/useEvent.ts +6 -9
- package/src/useLabels.ts +1 -1
- package/src/useObjectRef.ts +12 -27
- package/src/useUpdateEffect.ts +10 -1
package/src/useObjectRef.ts
CHANGED
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import {MutableRefObject, useRef} from 'react';
|
|
14
|
-
import {useLayoutEffect} from './';
|
|
13
|
+
import {MutableRefObject, useMemo, useRef} from 'react';
|
|
15
14
|
|
|
16
15
|
/**
|
|
17
16
|
* Offers an object ref for a given callback ref or an object ref. Especially
|
|
@@ -24,31 +23,17 @@ import {useLayoutEffect} from './';
|
|
|
24
23
|
*/
|
|
25
24
|
export function useObjectRef<T>(forwardedRef?: ((instance: T | null) => void) | MutableRefObject<T | null> | null): MutableRefObject<T> {
|
|
26
25
|
const objRef = useRef<T>();
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
useLayoutEffect(() => {
|
|
34
|
-
if (!forwardedRef) {
|
|
35
|
-
return;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
if (typeof forwardedRef === 'function') {
|
|
39
|
-
forwardedRef(objRef.current);
|
|
40
|
-
} else {
|
|
41
|
-
forwardedRef.current = objRef.current;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
return () => {
|
|
26
|
+
return useMemo(() => ({
|
|
27
|
+
get current() {
|
|
28
|
+
return objRef.current;
|
|
29
|
+
},
|
|
30
|
+
set current(value) {
|
|
31
|
+
objRef.current = value;
|
|
45
32
|
if (typeof forwardedRef === 'function') {
|
|
46
|
-
forwardedRef(
|
|
47
|
-
} else {
|
|
48
|
-
forwardedRef.current =
|
|
33
|
+
forwardedRef(value);
|
|
34
|
+
} else if (forwardedRef) {
|
|
35
|
+
forwardedRef.current = value;
|
|
49
36
|
}
|
|
50
|
-
}
|
|
51
|
-
}, [forwardedRef]);
|
|
52
|
-
|
|
53
|
-
return objRef;
|
|
37
|
+
}
|
|
38
|
+
}), [forwardedRef]);
|
|
54
39
|
}
|
package/src/useUpdateEffect.ts
CHANGED
|
@@ -15,13 +15,22 @@ import {EffectCallback, useEffect, useRef} from 'react';
|
|
|
15
15
|
// Like useEffect, but only called for updates after the initial render.
|
|
16
16
|
export function useUpdateEffect(effect: EffectCallback, dependencies: any[]) {
|
|
17
17
|
const isInitialMount = useRef(true);
|
|
18
|
+
const lastDeps = useRef<any[] | null>(null);
|
|
19
|
+
|
|
20
|
+
useEffect(() => {
|
|
21
|
+
isInitialMount.current = true;
|
|
22
|
+
return () => {
|
|
23
|
+
isInitialMount.current = false;
|
|
24
|
+
};
|
|
25
|
+
}, []);
|
|
18
26
|
|
|
19
27
|
useEffect(() => {
|
|
20
28
|
if (isInitialMount.current) {
|
|
21
29
|
isInitialMount.current = false;
|
|
22
|
-
} else {
|
|
30
|
+
} else if (!lastDeps.current || dependencies.some((dep, i) => !Object.is(dep, lastDeps[i]))) {
|
|
23
31
|
effect();
|
|
24
32
|
}
|
|
33
|
+
lastDeps.current = dependencies;
|
|
25
34
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
26
35
|
}, dependencies);
|
|
27
36
|
}
|