-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
87 lines (75 loc) · 1.79 KB
/
utils.js
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
function isPointInPolygon(point, polygon) {
if (!point || !polygon) return false;
let [x, y] = point;
let isInside = false;
for (let i = 0, j = polygon.length - 1; i < polygon.length; j = i++) {
let [xi, yi] = polygon[i];
let [xj, yj] = polygon[j];
if (yi > y !== yj > y && x < ((xj - xi) * (y - yi)) / (yj - yi) + xi) {
isInside = !isInside;
}
}
return isInside;
}
const getClassNamesStartingWith = (element, prefix) =>
[...element.classList].filter((dropClass) => dropClass.startsWith(prefix))[0];
const checkdom = (ref) => {
if (!ref) {
console.error("ref is required");
return false;
}
const dom = ref.current;
if (!(dom instanceof HTMLElement)) {
console.error("ref.current is not a HTMLElement");
return false;
}
return dom;
};
function debounce(func, wait, immediate) {
let timeout;
const debounced = (...args) => {
const context = this;
const later = () => {
timeout = null;
if (!immediate) {
func.apply(context, args);
}
};
const callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) {
func.apply(context, args);
}
};
debounced.cancel = () => clearTimeout(timeout);
return debounced;
}
function throttle(callback, delay) {
let isThrottled = false;
let argsToUse = null;
function next() {
isThrottled = false;
if (argsToUse !== null) {
wrapper(...argsToUse); // eslint-disable-line
argsToUse = null;
}
}
function wrapper(...args) {
if (isThrottled) {
argsToUse = args;
return;
}
isThrottled = true;
callback(...args);
setTimeout(next, delay);
}
return wrapper;
}
export {
isPointInPolygon,
getClassNamesStartingWith,
checkdom,
debounce,
throttle,
};