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

34 lines
1.6 KiB
JavaScript
Raw Normal View History

2022-06-08 10:36:39 +00:00
import { __extends } from "tslib";
2022-01-21 08:28:41 +00:00
import { AsyncAction } from './AsyncAction';
2022-06-08 10:36:39 +00:00
import { animationFrameProvider } from './animationFrameProvider';
var AnimationFrameAction = (function (_super) {
__extends(AnimationFrameAction, _super);
2022-01-21 08:28:41 +00:00
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) {
2022-06-08 10:36:39 +00:00
if (delay === void 0) { delay = 0; }
2022-01-21 08:28:41 +00:00
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.requestAnimationFrame(function () { return scheduler.flush(undefined); }));
2022-01-21 08:28:41 +00:00
};
AnimationFrameAction.prototype.recycleAsyncId = function (scheduler, id, delay) {
2022-06-08 10:36:39 +00:00
if (delay === void 0) { delay = 0; }
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-06-08 10:36:39 +00:00
if (!scheduler.actions.some(function (action) { return action.id === id; })) {
animationFrameProvider.cancelAnimationFrame(id);
scheduler._scheduled = undefined;
2022-01-21 08:28:41 +00:00
}
return undefined;
};
return AnimationFrameAction;
}(AsyncAction));
export { AnimationFrameAction };
2022-06-08 10:36:39 +00:00
//# sourceMappingURL=AnimationFrameAction.js.map