@sohanemon/utils 4.1.0 → 4.1.2
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/hooks/index.d.ts +28 -2
- package/dist/hooks/index.js +50 -2
- package/package.json +7 -21
package/dist/hooks/index.d.ts
CHANGED
|
@@ -94,14 +94,40 @@ export declare function useCopyToClipboard({ timeout }: {
|
|
|
94
94
|
/**
|
|
95
95
|
* Properties for height calculation.
|
|
96
96
|
*/
|
|
97
|
-
type
|
|
97
|
+
type CalculationProps2 = {
|
|
98
98
|
blockIds: string[];
|
|
99
99
|
dynamic?: boolean | string;
|
|
100
100
|
margin?: number;
|
|
101
|
+
substract?: boolean;
|
|
101
102
|
};
|
|
102
103
|
/**
|
|
104
|
+
*
|
|
103
105
|
* Hook to calculate the height of an element based on viewport and other block heights.
|
|
104
106
|
* @param params - Configuration object for height calculation.
|
|
105
107
|
* @returns The calculated height.
|
|
106
108
|
*/
|
|
107
|
-
export declare const useHeightCalculation: ({ blockIds, margin, dynamic, }:
|
|
109
|
+
export declare const useHeightCalculation: ({ blockIds, margin, substract, dynamic, }: CalculationProps2) => number;
|
|
110
|
+
/**
|
|
111
|
+
* Properties for DOM calculation.
|
|
112
|
+
*/
|
|
113
|
+
type CalculationProps = {
|
|
114
|
+
blockIds: string[];
|
|
115
|
+
dynamic?: boolean | string;
|
|
116
|
+
margin?: number;
|
|
117
|
+
substract?: boolean;
|
|
118
|
+
onChange?: (results: {
|
|
119
|
+
blocksHeight: number;
|
|
120
|
+
blocksWidth: number;
|
|
121
|
+
remainingWidth: number;
|
|
122
|
+
remainingHeight: number;
|
|
123
|
+
}) => void;
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* Hook to calculate dimensions (height and width) of an element based on viewport and other block dimensions.
|
|
127
|
+
* @param params - Configuration object for dimension calculation.
|
|
128
|
+
* @returns An object containing the calculated height and width.
|
|
129
|
+
*/
|
|
130
|
+
export declare const useDomCalculation: ({ blockIds, margin, substract, dynamic, onChange, }: CalculationProps) => {
|
|
131
|
+
height: number;
|
|
132
|
+
width: number;
|
|
133
|
+
};
|
package/dist/hooks/index.js
CHANGED
|
@@ -260,15 +260,19 @@ export function useCopyToClipboard({ timeout = 2000 }) {
|
|
|
260
260
|
return { isCopied, copy };
|
|
261
261
|
}
|
|
262
262
|
/**
|
|
263
|
+
*
|
|
263
264
|
* Hook to calculate the height of an element based on viewport and other block heights.
|
|
264
265
|
* @param params - Configuration object for height calculation.
|
|
265
266
|
* @returns The calculated height.
|
|
266
267
|
*/
|
|
267
|
-
export const useHeightCalculation = ({ blockIds = [], margin = 0, dynamic = false, }) => {
|
|
268
|
+
export const useHeightCalculation = ({ blockIds = [], margin = 0, substract = true, dynamic = false, }) => {
|
|
268
269
|
const [height, setTableHeight] = React.useState(500);
|
|
269
270
|
const handleResize = () => {
|
|
270
271
|
const blockHeight = blockIds.reduce((prevHeight, id) => prevHeight + (document.getElementById(id)?.clientHeight || 0), 0);
|
|
271
|
-
|
|
272
|
+
const height = substract
|
|
273
|
+
? window.innerHeight - blockHeight - margin
|
|
274
|
+
: blockHeight + margin;
|
|
275
|
+
setTableHeight(height);
|
|
272
276
|
};
|
|
273
277
|
useIsomorphicEffect(() => {
|
|
274
278
|
handleResize();
|
|
@@ -289,3 +293,47 @@ export const useHeightCalculation = ({ blockIds = [], margin = 0, dynamic = fals
|
|
|
289
293
|
}, []);
|
|
290
294
|
return height;
|
|
291
295
|
};
|
|
296
|
+
/**
|
|
297
|
+
* Hook to calculate dimensions (height and width) of an element based on viewport and other block dimensions.
|
|
298
|
+
* @param params - Configuration object for dimension calculation.
|
|
299
|
+
* @returns An object containing the calculated height and width.
|
|
300
|
+
*/
|
|
301
|
+
export const useDomCalculation = ({ blockIds = [], margin = 0, substract = true, dynamic = false, onChange, }) => {
|
|
302
|
+
const [dimensions, setDimensions] = React.useState({
|
|
303
|
+
height: 500,
|
|
304
|
+
width: 500,
|
|
305
|
+
});
|
|
306
|
+
const handleCalculation = () => {
|
|
307
|
+
const blocksHeight = blockIds.reduce((prevHeight, id) => prevHeight + (document.getElementById(id)?.clientHeight || 0), 0);
|
|
308
|
+
const blocksWidth = blockIds.reduce((prevWidth, id) => prevWidth + (document.getElementById(id)?.clientWidth || 0), 0);
|
|
309
|
+
const height = substract
|
|
310
|
+
? window.innerHeight - blocksHeight - margin
|
|
311
|
+
: blocksHeight + margin;
|
|
312
|
+
const width = substract
|
|
313
|
+
? window.innerWidth - blocksWidth - margin
|
|
314
|
+
: blocksWidth + margin;
|
|
315
|
+
const newDimensions = { height, width };
|
|
316
|
+
setDimensions(newDimensions);
|
|
317
|
+
onChange?.({
|
|
318
|
+
blocksWidth,
|
|
319
|
+
blocksHeight,
|
|
320
|
+
remainingWidth: width,
|
|
321
|
+
remainingHeight: height,
|
|
322
|
+
});
|
|
323
|
+
};
|
|
324
|
+
useIsomorphicEffect(() => {
|
|
325
|
+
handleCalculation();
|
|
326
|
+
if (!dynamic)
|
|
327
|
+
return;
|
|
328
|
+
if (typeof dynamic === 'string') {
|
|
329
|
+
const resizableElement = document.getElementById(dynamic);
|
|
330
|
+
const resizeObserver = new ResizeObserver(() => handleCalculation());
|
|
331
|
+
if (resizableElement)
|
|
332
|
+
resizeObserver.observe(resizableElement);
|
|
333
|
+
return () => resizeObserver.disconnect();
|
|
334
|
+
}
|
|
335
|
+
window.addEventListener('resize', handleCalculation);
|
|
336
|
+
return () => window.removeEventListener('resize', handleCalculation);
|
|
337
|
+
}, []);
|
|
338
|
+
return dimensions;
|
|
339
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sohanemon/utils",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"author": "Sohan Emon <sohanemon@outlook.com>",
|
|
5
5
|
"description": "",
|
|
6
6
|
"type": "module",
|
|
@@ -15,33 +15,19 @@
|
|
|
15
15
|
},
|
|
16
16
|
"typesVersions": {
|
|
17
17
|
"*": {
|
|
18
|
-
"core": [
|
|
19
|
-
|
|
20
|
-
],
|
|
21
|
-
"
|
|
22
|
-
"dist/types/index.d.ts"
|
|
23
|
-
],
|
|
24
|
-
"hooks": [
|
|
25
|
-
"dist/hooks/index.d.ts"
|
|
26
|
-
],
|
|
27
|
-
"components": [
|
|
28
|
-
"dist/components/index.d.ts"
|
|
29
|
-
]
|
|
18
|
+
"core": ["dist/index.d.ts"],
|
|
19
|
+
"types": ["dist/types/index.d.ts"],
|
|
20
|
+
"hooks": ["dist/hooks/index.d.ts"],
|
|
21
|
+
"components": ["dist/components/index.d.ts"]
|
|
30
22
|
}
|
|
31
23
|
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist",
|
|
34
|
-
"README.md"
|
|
35
|
-
],
|
|
24
|
+
"files": ["dist", "README.md"],
|
|
36
25
|
"scripts": {
|
|
37
26
|
"build": "tsc",
|
|
38
27
|
"build:watch": "tsc --watch",
|
|
39
28
|
"export": "tsc && npm publish"
|
|
40
29
|
},
|
|
41
|
-
"keywords": [
|
|
42
|
-
"utils",
|
|
43
|
-
"cn"
|
|
44
|
-
],
|
|
30
|
+
"keywords": ["utils", "cn"],
|
|
45
31
|
"license": "ISC",
|
|
46
32
|
"devDependencies": {
|
|
47
33
|
"@types/node": "^22.4.0",
|