@e1011/es-kit 1.0.0 → 1.0.1

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.
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.useResize = void 0;
7
+ const react_1 = require("react");
8
+ const debounce_1 = __importDefault(require("lodash-es/debounce"));
9
+ const useResize = (debounceDelay = 250) => {
10
+ const [containerSize, setContainerSize] = (0, react_1.useState)({ width: undefined, height: undefined });
11
+ const lastResizeWidthRef = (0, react_1.useRef)({ width: 0, height: 0 });
12
+ const containerRef = (0, react_1.useRef)();
13
+ // const [unobserver, setUnobserver] = useState<Unobserver>(DefaultUnobserver)
14
+ const unobserverRef = (0, react_1.useRef)();
15
+ const debouncedResizeWrapper = (0, react_1.useMemo)(() => (0, debounce_1.default)((entries) => {
16
+ const newResizeWidth = entries[0].contentRect.width;
17
+ const newResizeHeight = entries[0].contentRect.height;
18
+ if (lastResizeWidthRef.current?.width === newResizeWidth
19
+ && lastResizeWidthRef.current?.height === newResizeHeight) {
20
+ return;
21
+ }
22
+ lastResizeWidthRef.current = { width: newResizeWidth, height: newResizeHeight };
23
+ setContainerSize({
24
+ width: containerRef?.current?.clientWidth,
25
+ height: containerRef?.current?.clientHeight,
26
+ });
27
+ }, debounceDelay), [containerRef, debounceDelay]);
28
+ (0, react_1.useEffect)(() => {
29
+ let resizeObserver;
30
+ let containerElement;
31
+ if (containerRef?.current) {
32
+ containerElement = containerRef?.current;
33
+ resizeObserver = new ResizeObserver(debouncedResizeWrapper);
34
+ resizeObserver.observe(containerElement);
35
+ setContainerSize({
36
+ width: containerRef?.current?.clientWidth,
37
+ height: containerRef?.current?.clientHeight,
38
+ });
39
+ }
40
+ const unobserver = () => {
41
+ resizeObserver?.unobserve?.(containerElement);
42
+ };
43
+ // setUnobserver(unobserver)
44
+ unobserverRef.current = unobserver;
45
+ return unobserver;
46
+ }, [debouncedResizeWrapper, containerRef]);
47
+ return [containerRef, containerSize, unobserverRef.current];
48
+ };
49
+ exports.useResize = useResize;
50
+ //# sourceMappingURL=useResize.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useResize.js","sourceRoot":"","sources":["../../../../../src/core/hooks/useResize.ts"],"names":[],"mappings":";;;;;;AAAA,iCAA8E;AAC9E,kEAAyC;AAQlC,MAAM,SAAS,GAAG,CAAC,aAAa,GAAG,GAAG,EAC4C,EAAE;IACzF,MAAM,CAAC,aAAa,EAAE,gBAAgB,CAAC,GACrC,IAAA,gBAAQ,EAAc,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC,CAAA;IAEhE,MAAM,kBAAkB,GAAG,IAAA,cAAM,EAAc,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,CAAA;IACvE,MAAM,YAAY,GAAqD,IAAA,cAAM,GAAkC,CAAA;IAE/G,8EAA8E;IAC9E,MAAM,aAAa,GAAG,IAAA,cAAM,GAAc,CAAA;IAE1C,MAAM,sBAAsB,GAAG,IAAA,eAAO,EAAC,GAAG,EAAE,CAAC,IAAA,kBAAQ,EAAC,CAAC,OAAO,EAAE,EAAE;QAChE,MAAM,cAAc,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAA;QACnD,MAAM,eAAe,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,MAAM,CAAA;QAErD,IAAI,kBAAkB,CAAC,OAAO,EAAE,KAAK,KAAK,cAAc;eACnD,kBAAkB,CAAC,OAAO,EAAE,MAAM,KAAK,eAAe,EAAE;YAC3D,OAAM;SACP;QACD,kBAAkB,CAAC,OAAO,GAAG,EAAE,KAAK,EAAE,cAAc,EAAE,MAAM,EAAE,eAAe,EAAE,CAAA;QAE/E,gBAAgB,CAAC;YACf,KAAK,EAAE,YAAY,EAAE,OAAO,EAAE,WAAW;YACzC,MAAM,EAAE,YAAY,EAAE,OAAO,EAAE,YAAY;SAC5C,CAAC,CAAA;IACJ,CAAC,EAAE,aAAa,CAAC,EAAE,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC,CAAA;IAEjD,IAAA,iBAAS,EAAC,GAAG,EAAE;QACb,IAAI,cAA8B,CAAA;QAClC,IAAI,gBAA6B,CAAA;QAEjC,IAAI,YAAY,EAAE,OAAO,EAAE;YACzB,gBAAgB,GAAG,YAAY,EAAE,OAAO,CAAA;YACxC,cAAc,GAAG,IAAI,cAAc,CAAC,sBAAsB,CAAC,CAAA;YAC3D,cAAc,CAAC,OAAO,CAAC,gBAA2B,CAAC,CAAA;YAEnD,gBAAgB,CAAC;gBACf,KAAK,EAAE,YAAY,EAAE,OAAO,EAAE,WAAW;gBACzC,MAAM,EAAE,YAAY,EAAE,OAAO,EAAE,YAAY;aAC5C,CAAC,CAAA;SACH;QACD,MAAM,UAAU,GAAG,GAAG,EAAE;YACtB,cAAc,EAAE,SAAS,EAAE,CAAC,gBAA2B,CAAC,CAAA;QAC1D,CAAC,CAAA;QAED,4BAA4B;QAC5B,aAAa,CAAC,OAAO,GAAG,UAAU,CAAA;QAElC,OAAO,UAAU,CAAA;IACnB,CAAC,EAAE,CAAC,sBAAsB,EAAE,YAAY,CAAC,CAAC,CAAA;IAE1C,OAAO,CAAC,YAAY,EAAE,aAAa,EAAE,aAAa,CAAC,OAAO,CAAC,CAAA;AAC7D,CAAC,CAAA;AApDY,QAAA,SAAS,aAoDrB"}
@@ -0,0 +1,13 @@
1
+ import { MutableRefObject } from 'react';
2
+ type WrapperSize = {
3
+ width: undefined | number;
4
+ height: undefined | number;
5
+ };
6
+ type Unobserver = () => (null | void);
7
+ export declare const useResize: (debounceDelay?: number) => [
8
+ MutableRefObject<HTMLElement | null | undefined>,
9
+ WrapperSize,
10
+ Unobserver | undefined
11
+ ];
12
+ export {};
13
+ //# sourceMappingURL=useResize.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useResize.d.ts","sourceRoot":"","sources":["../../../../../src/core/hooks/useResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAwC,MAAM,OAAO,CAAA;AAG9E,KAAK,WAAW,GAAG;IAAC,KAAK,EAAE,SAAS,GAAG,MAAM,CAAC;IAAC,MAAM,EAAE,SAAS,GAAG,MAAM,CAAA;CAAC,CAAA;AAI1E,KAAK,UAAU,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAA;AAErC,eAAO,MAAM,SAAS,8BAA0B;IAC9C,iBAAiB,WAAW,GAAG,IAAI,GAAG,SAAS,CAAC;IAAE,WAAW;IAAE,UAAU,GAAG,SAAS;CAmDtF,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e1011/es-kit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "dist/lib/cjs/src/index.js",
5
5
  "module": "dist/lib/esm/src/index.js",
6
6
  "sideEffects": false,