2022-01-21 08:28:41 +00:00
|
|
|
"use strict";
|
|
|
|
var __extends = (this && this.__extends) || (function () {
|
|
|
|
var extendStatics = function (d, b) {
|
|
|
|
extendStatics = Object.setPrototypeOf ||
|
|
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
2022-04-07 07:06:43 +00:00
|
|
|
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
2022-01-21 08:28:41 +00:00
|
|
|
return extendStatics(d, b);
|
2022-04-07 07:06:43 +00:00
|
|
|
};
|
2022-01-21 08:28:41 +00:00
|
|
|
return function (d, b) {
|
2022-04-07 07:06:43 +00:00
|
|
|
if (typeof b !== "function" && b !== null)
|
|
|
|
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
2022-01-21 08:28:41 +00:00
|
|
|
extendStatics(d, b);
|
|
|
|
function __() { this.constructor = d; }
|
|
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2022-04-07 07:06:43 +00:00
|
|
|
exports.AnimationFrameAction = void 0;
|
2022-01-21 08:28:41 +00:00
|
|
|
var AsyncAction_1 = require("./AsyncAction");
|
2022-04-07 07:06:43 +00:00
|
|
|
var animationFrameProvider_1 = require("./animationFrameProvider");
|
2022-01-21 08:28:41 +00:00
|
|
|
var AnimationFrameAction = (function (_super) {
|
|
|
|
__extends(AnimationFrameAction, _super);
|
|
|
|
function AnimationFrameAction(scheduler, work) {
|
|
|
|
var _this = _super.call(this, scheduler, work) || this;
|
|
|
|
_this.scheduler = scheduler;
|
|
|
|
_this.work = work;
|
|
|
|
return _this;
|
|
|
|
}
|
|
|
|
AnimationFrameAction.prototype.requestAsyncId = function (scheduler, id, delay) {
|
|
|
|
if (delay === void 0) { delay = 0; }
|
|
|
|
if (delay !== null && delay > 0) {
|
|
|
|
return _super.prototype.requestAsyncId.call(this, scheduler, id, delay);
|
|
|
|
}
|
|
|
|
scheduler.actions.push(this);
|
2022-04-07 07:06:43 +00:00
|
|
|
return scheduler._scheduled || (scheduler._scheduled = animationFrameProvider_1.animationFrameProvider.requestAnimationFrame(function () { return scheduler.flush(undefined); }));
|
2022-01-21 08:28:41 +00:00
|
|
|
};
|
|
|
|
AnimationFrameAction.prototype.recycleAsyncId = function (scheduler, id, delay) {
|
|
|
|
if (delay === void 0) { delay = 0; }
|
2022-04-07 07:06:43 +00:00
|
|
|
if ((delay != null && delay > 0) || (delay == null && this.delay > 0)) {
|
2022-01-21 08:28:41 +00:00
|
|
|
return _super.prototype.recycleAsyncId.call(this, scheduler, id, delay);
|
|
|
|
}
|
2022-04-07 07:06:43 +00:00
|
|
|
if (!scheduler.actions.some(function (action) { return action.id === id; })) {
|
|
|
|
animationFrameProvider_1.animationFrameProvider.cancelAnimationFrame(id);
|
|
|
|
scheduler._scheduled = undefined;
|
2022-01-21 08:28:41 +00:00
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
};
|
|
|
|
return AnimationFrameAction;
|
|
|
|
}(AsyncAction_1.AsyncAction));
|
|
|
|
exports.AnimationFrameAction = AnimationFrameAction;
|
|
|
|
//# sourceMappingURL=AnimationFrameAction.js.map
|