choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
54 lines (47 loc) • 1.41 kB
JavaScript
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
import raf from 'raf';
export default function throttleByAnimationFrame(fn) {
var requestId;
var later = function later(args) {
return function () {
requestId = null;
fn.apply(void 0, _toConsumableArray(args));
};
};
var throttled = function throttled() {
if (requestId == null) {
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
requestId = raf(later(args));
}
};
throttled.cancel = function () {
return raf.cancel(requestId);
};
return throttled;
}
export function throttleByAnimationFrameDecorator() {
return function (target, key, descriptor) {
var fn = descriptor.value;
var definingProperty = false;
return {
configurable: true,
get: function get() {
if (definingProperty || this === target.prototype || {}.hasOwnProperty.call(this, key)) {
return fn;
}
var boundFn = throttleByAnimationFrame(fn.bind(this));
definingProperty = true;
Object.defineProperty(this, key, {
value: boundFn,
configurable: true,
writable: true
});
definingProperty = false;
return boundFn;
}
};
};
}
//# sourceMappingURL=throttleByAnimationFrame.js.map