wishthis/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameAction.js

53 lines
2.5 KiB
JavaScript
Raw Normal View History

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-06-08 10:36:39 +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-06-08 10:36:39 +00:00
};
2022-01-21 08:28:41 +00:00
return function (d, b) {
2022-06-08 10:36:39 +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-06-08 10:36:39 +00:00
exports.AnimationFrameAction = void 0;
2022-01-21 08:28:41 +00:00
var AsyncAction_1 = require("./AsyncAction");
2022-06-08 10:36:39 +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-06-08 10:36:39 +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) {
2022-09-30 13:48:25 +00:00
var _a;
2022-01-21 08:28:41 +00:00
if (delay === void 0) { delay = 0; }
2022-09-30 13:48:25 +00:00
if (delay != null ? delay > 0 : this.delay > 0) {
2022-01-21 08:28:41 +00:00
return _super.prototype.recycleAsyncId.call(this, scheduler, id, delay);
}
2022-09-30 13:48:25 +00:00
var actions = scheduler.actions;
if (id != null && ((_a = actions[actions.length - 1]) === null || _a === void 0 ? void 0 : _a.id) !== id) {
2022-06-08 10:36:39 +00:00
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