perf(@vant/use): remove raf polyfill (#9544)

This commit is contained in:
neverland 2021-09-22 16:16:48 +08:00 committed by GitHub
parent 38b1be3ac2
commit b6cd212a77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,13 @@
export const inBrowser = typeof window !== 'undefined';
const root = (inBrowser ? window : global) as Window;
let prev = Date.now();
function rafPolyfill(fn: FrameRequestCallback): number {
const curr = Date.now();
const ms = Math.max(0, 16 - (curr - prev));
const id = setTimeout(fn, ms);
prev = curr + ms;
return id;
}
export function raf(fn: FrameRequestCallback): number {
const requestAnimationFrame = root.requestAnimationFrame || rafPolyfill;
return requestAnimationFrame.call(root, fn);
return inBrowser ? requestAnimationFrame(fn) : -1;
}
export function cancelRaf(id: number) {
const cancelAnimationFrame = root.cancelAnimationFrame || root.clearTimeout;
cancelAnimationFrame.call(root, id);
if (inBrowser) {
cancelAnimationFrame(id);
}
}
// double raf for animation