-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathutil.tsx
More file actions
300 lines (244 loc) · 7.42 KB
/
util.tsx
File metadata and controls
300 lines (244 loc) · 7.42 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
import * as React from 'react';
import { ElementPropsWithElementRefAndRenderer, ElementRef } from './types';
let doc: Document | null = typeof document === 'object' ? document : null;
export const isBrowser =
typeof window !== 'undefined' &&
typeof navigator !== 'undefined' &&
typeof document !== 'undefined';
export const isUndef = (v: any): v is Exclude<typeof v, undefined> => {
return typeof v === 'undefined';
};
export const isFun = (v: any): v is CallableFunction => {
return typeof v === 'function';
};
export const isNum = (v: any): v is number => {
return typeof v === 'number';
};
/**
* @description Will return renderer result if presented, div element otherwise.
* If renderer is presented it'll receive `elementRef` function which should be used as HTMLElement's ref.
*
* @param props {ElementPropsWithElementRefAndRenderer}
* @param elementRef {ElementRef}
*/
export const renderDivWithRenderer = (
props: ElementPropsWithElementRefAndRenderer,
elementRef: ElementRef
): React.ReactElement | null => {
if (isFun(props.renderer)) {
props.elementRef = elementRef;
const { renderer } = props;
delete props.renderer;
return renderer(props);
}
delete props.elementRef;
return <div {...props} ref={elementRef} />;
};
const getInnerSize = (
el: HTMLElement,
dimension: string,
padding1: string,
padding2: string
): number => {
const styles = getComputedStyle(el);
if (styles.boxSizing === 'border-box') {
return Math.max(
0,
(Number.parseFloat(styles[dimension] as string) || 0) -
(Number.parseFloat(styles[padding1] as string) || 0) -
(Number.parseFloat(styles[padding2] as string) || 0)
);
}
return Number.parseFloat(styles[dimension] as string) || 0;
};
/**
* @description Return element's height without padding
*/
export const getInnerHeight = (el: HTMLElement): number => {
return getInnerSize(el, 'height', 'paddingTop', 'paddingBottom');
};
/**
* @description Return element's width without padding
*/
export const getInnerWidth = (el: HTMLElement): number => {
return getInnerSize(el, 'width', 'paddingLeft', 'paddingRight');
};
/**
* @description Return unique UUID v4
*/
export const uuid = () => {
// eslint-disable-next-line @typescript-eslint/no-shadow
let uuid = '';
for (let i = 0; i < 32; i++) {
switch (i) {
case 8:
case 20: {
uuid += `-${Math.trunc(Math.random() * 16).toString(16)}`;
break;
}
case 12: {
uuid += '-4';
break;
}
case 16: {
uuid += `-${((Math.random() * 16) | (0 & 3) | 8).toString(16)}`;
break;
}
default: {
uuid += Math.trunc(Math.random() * 16).toString(16);
}
}
}
return uuid;
};
/**
* @description Calculate thumb size for given viewport and track parameters
*
* @param {number} contentSize - Scrollable content size
* @param {number} viewportSize - Viewport size
* @param {number} trackSize - Track size thumb can move
* @param {number} minimalSize - Minimal thumb's size
* @param {number} maximalSize - Maximal thumb's size
*/
export const calcThumbSize = (
contentSize: number,
viewportSize: number,
trackSize: number,
minimalSize?: number,
maximalSize?: number
): number => {
if (viewportSize >= contentSize) {
return 0;
}
let thumbSize = (viewportSize / contentSize) * trackSize;
if (isNum(maximalSize)) {
thumbSize = Math.min(maximalSize, thumbSize);
}
if (isNum(minimalSize)) {
thumbSize = Math.max(minimalSize, thumbSize);
}
return thumbSize;
};
/**
* @description Calculate thumb offset for given viewport, track and thumb parameters
*
* @param {number} contentSize - Scrollable content size
* @param {number} viewportSize - Viewport size
* @param {number} trackSize - Track size thumb can move
* @param {number} thumbSize - Thumb size
* @param {number} scroll - Scroll value to represent
*/
export const calcThumbOffset = (
contentSize: number,
viewportSize: number,
trackSize: number,
thumbSize: number,
scroll: number
): number => {
if (!scroll || !thumbSize || viewportSize >= contentSize) {
return 0;
}
return ((trackSize - thumbSize) * scroll) / (contentSize - viewportSize);
};
/**
* @description Calculate scroll for given viewport, track and thumb parameters
*
* @param {number} contentSize - Scrollable content size
* @param {number} viewportSize - Viewport size
* @param {number} trackSize - Track size thumb can move
* @param {number} thumbSize - Thumb size
* @param {number} thumbOffset - Thumb's offset representing the scroll
*/
export const calcScrollForThumbOffset = (
contentSize: number,
viewportSize: number,
trackSize: number,
thumbSize: number,
thumbOffset: number
): number => {
if (!thumbOffset || !thumbSize || viewportSize >= contentSize) {
return 0;
}
return (thumbOffset * (contentSize - viewportSize)) / (trackSize - thumbSize);
};
/**
* @description Set the document node to calculate the scrollbar width.<br/>
* <i>null</i> will force getter to return 0 (it'll imitate SSR).
*/
export const _dbgSetDocument = (v: Document | null): Document | null => {
if (v === null || v instanceof HTMLDocument) {
doc = v;
return doc;
}
throw new TypeError(
`override value expected to be an instance of HTMLDocument or null, got ${typeof v}`
);
};
/**
* @description Return current document node
*/
export const _dbgGetDocument = (): Document | null => doc;
interface GetScrollbarWidthFN {
_cache?: number;
(force?: boolean): number | undefined;
}
const setWidthDetectorStyle = (el: HTMLDivElement): void => {
el.style.position = 'absolute';
el.style.width = '100px';
el.style.height = '100px';
el.style.top = '-999px';
el.style.left = '-999px';
el.style.overflow = 'scroll';
}
/**
* @description Returns scrollbar width specific for current environment. Can return undefined if DOM is not ready yet.
*/
export const getScrollbarWidth: GetScrollbarWidthFN = (force = false): number | undefined => {
if (!doc) {
getScrollbarWidth._cache = 0;
return getScrollbarWidth._cache;
}
if (!force && !isUndef(getScrollbarWidth._cache)) {
return getScrollbarWidth._cache as number;
}
const el = doc.createElement('div');
setWidthDetectorStyle(el);
doc.body.append(el);
/* istanbul ignore next */
if (el.clientWidth === 0) {
// Do not even cache this value because there is no calculations. Issue https://github.com/xobotyi/react-scrollbars-custom/issues/123
el.remove();
return;
}
getScrollbarWidth._cache = 100 - el.clientWidth;
el.remove();
return getScrollbarWidth._cache;
};
interface ShouldReverseRtlScroll {
_cache?: boolean;
(force?: boolean): boolean;
}
/**
* @description Detect need of horizontal scroll reverse while RTL.
*/
export const shouldReverseRtlScroll: ShouldReverseRtlScroll = (force = false): boolean => {
if (!force && !isUndef(shouldReverseRtlScroll._cache)) {
return shouldReverseRtlScroll._cache as boolean;
}
if (!doc) {
shouldReverseRtlScroll._cache = false;
return shouldReverseRtlScroll._cache;
}
const el = doc.createElement('div');
const child = doc.createElement('div');
el.append(child);
setWidthDetectorStyle(el);
el.style.direction = 'rtl';
child.style.width = '1000px';
child.style.left = '1000px';
doc.body.append(el);
el.scrollLeft = -50;
shouldReverseRtlScroll._cache = el.scrollLeft === -50;
el.remove();
return shouldReverseRtlScroll._cache;
};