igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
293 lines (292 loc) • 11.8 kB
JavaScript
import { IgcHTMLElement } from "igniteui-webcomponents-core";
import { delegateCombine, delegateRemove } from "igniteui-webcomponents-core";
import { ColumnSortDirection_$type } from "./ColumnSortDirection";
import { SortIndicatorStyle_$type } from "./SortIndicatorStyle";
import { IgcSortIndicatorRenderCompletedEventArgs } from "./igc-sort-indicator-render-completed-event-args";
import { GridSortIndicator } from "./GridSortIndicator";
import { TypeRegistrar } from "igniteui-webcomponents-core";
import { NamePatcher, getAllPropertyNames, fromSpinal, toSpinal, ensureEnum, enumToString, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss } from "igniteui-webcomponents-core";
import { RegisterElementHelper } from "igniteui-webcomponents-core";
/**
* An advanced grid for displaying data.
*/
export let IgcDataGridSortIndicatorComponent = /*@__PURE__*/ (() => {
class IgcDataGridSortIndicatorComponent extends IgcHTMLElement {
createImplementation() {
return new GridSortIndicator();
}
/**
* @hidden
*/
get i() {
return this._implementation;
} /**
* @hidden
*/
static _createFromInternal(internal) {
if (!internal) {
return null;
}
if (!internal.$type) {
return null;
}
let name = internal.$type.name;
let externalName = "Igc" + name + "Component";
if (!TypeRegistrar.isRegistered(externalName)) {
return null;
}
return TypeRegistrar.create(externalName);
}
onImplementationCreated() {
}
constructor() {
super();
this._settingAttributes = false;
this._attached = false;
this._queuedSetAttributes = [];
this._updatingFromAttribute = false;
this.__p = null;
this._hasUserValues = new Set();
this._stylingContainer = null;
this._stylingParent = null;
this._inStyling = false;
this._renderCompleted = null;
this._renderCompleted_wrapped = null;
if (this._styling) {
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
}
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
_enqueueSetAttribute(attrName, attrValue) {
this._queuedSetAttributes.push({ attrName: attrName, attrValue: attrValue });
}
_flushQueuedAttributes() {
this._settingAttributes = true;
for (let i = 0; i < this._queuedSetAttributes.length; i++) {
this.setAttribute(this._queuedSetAttributes[i].attrName, this._queuedSetAttributes[i].attrValue);
}
this._settingAttributes = false;
this._queuedSetAttributes.length = 0;
}
_a(attrName, attrValue) {
if (this._updatingFromAttribute) {
return;
}
if (attrValue) {
attrValue = attrValue.toString();
}
this._settingAttributes = true;
attrName = toSpinal(attrName);
if (this._attached) {
this.setAttribute(attrName, attrValue);
}
else {
this._enqueueSetAttribute(attrName, attrValue);
}
this._settingAttributes = false;
}
connectedCallback() {
if (super["connectedCallback"]) {
super["connectedCallback"]();
}
if (this.i.connectedCallback) {
this.i.connectedCallback();
}
if (!this._attached) {
this._attached = true;
this._flushQueuedAttributes();
}
}
disconnectedCallback() {
if (super["disconnectedCallback"]) {
super["disconnectedCallback"]();
}
if (this.i.disconnectedCallback) {
this.i.disconnectedCallback();
}
if (this._attached) {
this._attached = false;
}
}
static get observedAttributes() {
if (IgcDataGridSortIndicatorComponent._observedAttributesIgcDataGridSortIndicatorComponent == null) {
let names = getAllPropertyNames(IgcDataGridSortIndicatorComponent);
for (let i = 0; i < names.length; i++) {
names[i] = toSpinal(names[i]);
}
IgcDataGridSortIndicatorComponent._observedAttributesIgcDataGridSortIndicatorComponent = names;
}
return IgcDataGridSortIndicatorComponent._observedAttributesIgcDataGridSortIndicatorComponent;
}
attributeChangedCallback(name, oldValue, newValue) {
if (this._settingAttributes) {
return;
}
let setName = fromSpinal(name);
this._updatingFromAttribute = true;
this[setName] = newValue;
this._updatingFromAttribute = false;
}
static register() {
if (!IgcDataGridSortIndicatorComponent._isElementRegistered) {
IgcDataGridSortIndicatorComponent._isElementRegistered = true;
RegisterElementHelper.registerElement(IgcDataGridSortIndicatorComponent.htmlTagName, IgcDataGridSortIndicatorComponent);
}
}
get sortDirection() {
return this.i.b;
}
set sortDirection(v) {
this.i.b = ensureEnum(ColumnSortDirection_$type, v);
this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.b));
}
get iconColor() {
return brushToString(this.i.a0);
}
set iconColor(v) {
this.i.a0 = stringToBrush(v);
this._a("iconColor", brushToString(this.i.a0));
}
get isAnimationEnabled() {
return this.i.l;
}
set isAnimationEnabled(v) {
this.i.l = ensureBool(v);
this._a("isAnimationEnabled", this.i.l);
}
/**
* Gets or sets the scaling value used to affect the pixel density of the control.
* A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control
* to appear blurry.
*/
get pixelScalingRatio() {
return this.i.w;
}
set pixelScalingRatio(v) {
this.i.w = +v;
this._a("pixelScalingRatio", this.i.w);
}
/**
* Gets the actual pixel scaling ratio used to affect the pixel density of the control.
* A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control
* to appear blurry.
*/
get actualPixelScalingRatio() {
return this.i.p;
}
set actualPixelScalingRatio(v) {
this.i.p = +v;
this._a("actualPixelScalingRatio", this.i.p);
}
get sortIndicatorStyle() {
return this.i.f;
}
set sortIndicatorStyle(v) {
this.i.f = ensureEnum(SortIndicatorStyle_$type, v);
this._a("sortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.f));
}
findByName(name) {
if (this.findEphemera) {
if (name && name.indexOf("@@e:") == 0) {
return this.findEphemera(name);
}
}
return null;
}
get hasUserValues() {
return this._hasUserValues;
}
__m(propertyName) {
if (!this._inStyling) {
this._hasUserValues.add(propertyName);
}
}
_styling(container, component, parent) {
if (this._inStyling) {
return;
}
this._inStyling = true;
this._stylingContainer = container;
this._stylingParent = component;
let genericPrefix = "";
let typeName = this.i.$type.name;
if (typeName.indexOf("Xam") === 0) {
typeName = typeName.substring(3);
}
genericPrefix = toSpinal("DataGridSortIndicatorComponent");
let additionalPrefixes = [];
let prefix = toSpinal(typeName);
additionalPrefixes.push(prefix + "-");
let b = this.i.$type.baseType;
while (b && b.name != "Object" &&
b.name != "Base" &&
b.name != "Control" &&
b.Name != "DependencyObject" &&
b.Name != "FrameworkElement") {
typeName = b.name;
if (typeName.indexOf("Xam") === 0) {
typeName = typeName.substring(3);
}
let basePrefix = toSpinal(typeName);
additionalPrefixes.push(basePrefix + "-");
b = b.baseType;
}
if (parent) {
let parentTypeName = parent.i.$type.name;
if (parentTypeName.indexOf("Xam") === 0) {
parentTypeName = parentTypeName.substring(3);
}
let parentPrefix = toSpinal(parentTypeName);
additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
}
initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
if (this._otherStyling) {
this._otherStyling(container, component, parent);
}
this._inStyling = false;
}
getDesiredScale() {
let iv = this.i.v();
return (iv);
}
notifySizeChanged(width, height) {
this.i.ar(width, height);
}
notifyCellSizeChanged() {
this.i.aq();
}
get renderCompleted() {
return this._renderCompleted;
}
set renderCompleted(ev) {
if (this._renderCompleted_wrapped !== null) {
this.i.renderCompleted = delegateRemove(this.i.renderCompleted, this._renderCompleted_wrapped);
this._renderCompleted_wrapped = null;
this._renderCompleted = null;
}
this._renderCompleted = ev;
this._renderCompleted_wrapped = (o, e) => {
let outerArgs = new IgcSortIndicatorRenderCompletedEventArgs();
outerArgs._provideImplementation(e);
if (this.beforeRenderCompleted) {
this.beforeRenderCompleted(this, outerArgs);
}
if (this._renderCompleted) {
this._renderCompleted(this, outerArgs);
}
};
this.i.renderCompleted = delegateCombine(this.i.renderCompleted, this._renderCompleted_wrapped);
;
}
}
IgcDataGridSortIndicatorComponent._observedAttributesIgcDataGridSortIndicatorComponent = null;
IgcDataGridSortIndicatorComponent.htmlTagName = "igc-data-grid-sort-indicator";
IgcDataGridSortIndicatorComponent._isElementRegistered = false;
return IgcDataGridSortIndicatorComponent;
})();