igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
95 lines (94 loc) • 3.26 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { RowColumnBaseCellFormatEnumerator } from "./RowColumnBaseCellFormatEnumerator";
import { markType, getEnumerator } from "igniteui-angular-core";
/**
* @hidden
*/
var RowCellFormatEnumerator = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(RowCellFormatEnumerator, _super);
function RowCellFormatEnumerator() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.i = null;
_this.n = 0;
_this.o = 0;
_this.k = null;
_this.l = null;
_this.m = 0;
_this.j = null;
return _this;
}
RowCellFormatEnumerator.prototype.h = function (a, b, c, d) {
this.i = a;
this.k = a._rows$i._aj(b);
this.n = c;
this.o = d;
this.m = -1;
this.l = null;
this.j = null;
this.a = null;
this.e = -1;
this.d = -1;
};
RowCellFormatEnumerator.prototype.c = function () {
if (this.d >= this.o) {
this.a = null;
this.e = this.d = this.o + 1;
return false;
}
else if (this.m < 0) {
this.m = this.n;
if (this.k != null) {
this.l = getEnumerator(this.k._co(this.n, this.o));
if (!this.l.moveNext()) {
this.l = null;
}
}
}
else {
this.m = this.d + 1;
}
while (this.l != null) {
var a = this.l.current;
if (a.v >= this.m && a.r) {
break;
}
if (!this.l.moveNext()) {
this.l = null;
}
}
if (this.l != null) {
var b = this.l.current;
if (b.v == this.m) {
this.e = this.d = this.m;
this.a = b.n;
return true;
}
}
if (this.j == null || this.j.s < this.m) {
this.j = this.i._cb(this.m);
}
if (this.k != null && this.k._hasCellFormat) {
this.a = this.k._cellFormatInternal.d;
}
else {
this.a = this.j.b;
}
this.e = this.m;
if (this.l != null && this.l.current.v <= this.j.s) {
this.d = this.l.current.v - 1;
}
else {
this.d = this.j.s;
}
return true;
};
RowCellFormatEnumerator.$t = markType(RowCellFormatEnumerator, 'RowCellFormatEnumerator', RowColumnBaseCellFormatEnumerator.$);
return RowCellFormatEnumerator;
}(RowColumnBaseCellFormatEnumerator));
export { RowCellFormatEnumerator };