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

48 lines
2 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-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.AnimationFrameScheduler = void 0;
2022-01-21 08:28:41 +00:00
var AsyncScheduler_1 = require("./AsyncScheduler");
var AnimationFrameScheduler = (function (_super) {
__extends(AnimationFrameScheduler, _super);
function AnimationFrameScheduler() {
return _super !== null && _super.apply(this, arguments) || this;
}
AnimationFrameScheduler.prototype.flush = function (action) {
2022-04-07 07:06:43 +00:00
this._active = true;
var flushId = this._scheduled;
this._scheduled = undefined;
2022-01-21 08:28:41 +00:00
var actions = this.actions;
var error;
action = action || actions.shift();
do {
2022-04-07 07:06:43 +00:00
if ((error = action.execute(action.state, action.delay))) {
2022-01-21 08:28:41 +00:00
break;
}
2022-04-07 07:06:43 +00:00
} while ((action = actions[0]) && action.id === flushId && actions.shift());
this._active = false;
2022-01-21 08:28:41 +00:00
if (error) {
2022-04-07 07:06:43 +00:00
while ((action = actions[0]) && action.id === flushId && actions.shift()) {
2022-01-21 08:28:41 +00:00
action.unsubscribe();
}
throw error;
}
};
return AnimationFrameScheduler;
}(AsyncScheduler_1.AsyncScheduler));
exports.AnimationFrameScheduler = AnimationFrameScheduler;
//# sourceMappingURL=AnimationFrameScheduler.js.map