-
Notifications
You must be signed in to change notification settings - Fork 371
/
Copy pathutils.js
131 lines (114 loc) · 2.87 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
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
/* eslint-disable no-console */
import config, { ERRORS } from './config';
/**
* console warning in production
* @param {String} msg console content
*/
export function warn(msg) {
/* istanbul ignore else */
if (config.mode !== 'production') {
console.warn(`[Vue-infinite-loading warn]: ${msg}`);
}
}
/**
* console error
* @param {String} msg console content
*/
export function error(msg) {
console.error(`[Vue-infinite-loading error]: ${msg}`);
}
export const throttleer = {
timers: [],
caches: [],
throttle(fn) {
if (this.caches.indexOf(fn) === -1) {
// cache current handler
this.caches.push(fn);
// save timer for current handler
this.timers.push(setTimeout(() => {
fn();
// empty cache and timer
this.caches.splice(this.caches.indexOf(fn), 1);
this.timers.shift();
}, config.system.throttleLimit));
}
},
reset() {
// reset all timers
this.timers.forEach((timer) => {
clearTimeout(timer);
});
this.timers.length = 0;
// empty caches
this.caches = [];
},
};
export const loopTracker = {
isChecked: false,
timer: null,
times: 0,
track() {
// record track times
this.times += 1;
// try to mark check status
clearTimeout(this.timer);
this.timer = setTimeout(() => {
this.isChecked = true;
}, config.system.loopCheckTimeout);
// throw warning if the times of continuous calls large than the maximum times
if (this.times > config.system.loopCheckMaxCalls) {
error(ERRORS.INFINITE_LOOP);
this.isChecked = true;
}
},
};
export const scrollBarStorage = {
key: '_infiniteScrollPosition',
getScrollElm(elm) {
return elm === window ? document.documentElement : elm;
},
save(elm) {
const target = this.getScrollElm(elm);
// save scroll height and top position on the scroll parent
target[this.key] = [target.scrollHeight, target.scrollTop];
},
restore(elm) {
const target = this.getScrollElm(elm);
/* istanbul ignore else */
if (typeof target[this.key][0] === 'number' && typeof target[this.key][1] === 'number') {
target.scrollTop = target.scrollHeight - target[this.key][0] + target[this.key][1];
}
this.remove(target);
},
remove(elm) {
if (elm[this.key] !== undefined) {
// remove scroll height
delete elm[this.key]; // eslint-disable-line no-param-reassign
}
},
};
/**
* kebab-case a camel-case string
* @param {String} str source string
* @return {String}
*/
export function kebabCase(str) {
return str.replace(/[A-Z]/g, s => `-${s.toLowerCase()}`);
}
/**
* get visibility for element
* @param {DOM} elm
* @return {Boolean}
*/
export function isVisible(elm) {
return (elm.offsetWidth + elm.offsetHeight) > 0;
}
export default {
warn,
error,
throttleer,
loopTracker,
kebabCase,
scrollBarStorage,
isVisible,
};