igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
54 lines (53 loc) • 1.81 kB
JavaScript
import { IgCollection } from "igniteui-webcomponents-core";
import { markType } from "igniteui-webcomponents-core";
import { SyncableObservableCollection$2 } from "igniteui-webcomponents-core";
import { CellKey as CellKey_internal } from './CellKey';
import { IgcCellKey as IgcCellKey } from './igc-cell-key';
export class IgcGridSelectedCellsCollection extends IgCollection {
constructor(list) {
super();
if (!IgcCellKey.$type) {
IgcCellKey.$type = markType(IgcCellKey, "IgcCellKey");
}
if (list) {
for (let i = 0; i < list.length; i++) {
this.add(list[i]);
}
}
}
_createInnerColl() {
if (!IgcCellKey.$type) {
IgcCellKey.$type = markType(IgcCellKey, "IgcCellKey");
}
let coll = new SyncableObservableCollection$2(IgcCellKey.$type, CellKey_internal.$type, 0);
coll.compare = (ext, int) => {
let comp = ext;
if (comp._implementation) {
comp = comp._implementation;
}
if (comp.equals) {
return comp.equals(int);
}
return comp === int;
};
coll.createTo = (ext) => {
return ext._implementation;
};
coll.createFrom = (int) => {
let ext = int.externalObject;
if (!ext) {
ext = new IgcCellKey();
if (ext) {
if (!int.$type && ext._implementation.setNativeElement) {
ext._implementation.setNativeElement(int);
}
else {
ext._implementation = int;
}
}
}
return ext;
};
return coll;
}
}