UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

487 lines (485 loc) 19.8 kB
import { fromSize, ensureEnum, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, enumToString, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core"; import { FontInfo } from "igniteui-webcomponents-core"; import { WebComponentRenderer, PortalManager } from "igniteui-webcomponents-core"; import { CollectionAdapter } from "igniteui-webcomponents-core"; import { NotifyCollectionChangedAction } from "igniteui-webcomponents-core"; import { RegisterElementHelper } from "igniteui-webcomponents-core"; import { PropertyEditor } from "./PropertyEditor"; import { BaseControlTheme_$type } from "igniteui-webcomponents-core"; import { ControlDisplayDensity_$type } from "igniteui-webcomponents-core"; import { IgcHTMLElement } from "igniteui-webcomponents-core"; import { IgcPropertyEditorPropertyDescriptionCollection } from "igniteui-webcomponents-layouts"; import { PropertyEditorPropertyDescriptionCollection as PropertyEditorPropertyDescriptionCollection_internal } from "igniteui-webcomponents-layouts"; import { SyncableObservableCollection$1 } from "igniteui-webcomponents-core"; import { PropertyEditorPropertyDescription } from "igniteui-webcomponents-layouts"; import { IgcPropertyEditorPropertyDescriptionComponent } from "igniteui-webcomponents-layouts"; import { InputGroupDisplayType_$type } from "igniteui-webcomponents-inputs"; export let IgcPropertyEditorComponent = /*@__PURE__*/ (() => { class IgcPropertyEditorComponent extends IgcHTMLElement { set height(value) { this._height = value; this.style.height = value; this.i.notifySizeChanged(); } get height() { return this._height; } set width(value) { this._width = value; this.style.width = value; this.i.notifySizeChanged(); } get width() { return this._width; } /** * A collection of manually added properties for the editor. */ get properties() { if (this._properties === null) { let coll = new IgcPropertyEditorPropertyDescriptionCollection(); let inner = coll._innerColl; inner.addListener((sender, e) => { switch (e.action) { case NotifyCollectionChangedAction.Add: this._propertiesAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0)); break; case NotifyCollectionChangedAction.Remove: this._propertiesAdapter.removeManualItemAt(e.oldStartingIndex); break; case NotifyCollectionChangedAction.Replace: this._propertiesAdapter.removeManualItemAt(e.oldStartingIndex); this._propertiesAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0)); break; case NotifyCollectionChangedAction.Reset: this._propertiesAdapter.clearManualItems(); break; } }); this._properties = coll; } return this._properties; } constructor() { super(); this._implementation = null; this.contentProperties = []; /** * The properties actually present in the editor. Do not directly modify this array. * This array's contents can be modified by using the properties property or providing child content. */ this.actualProperties = []; this._properties = null; this._propertiesAdapter = null; this._disconnected = false; this._settingAttributes = false; this._attached = false; this._queuedSetAttributes = []; this._updatingFromAttribute = false; this._actualDataSource = null; this.__p = null; this._hasUserValues = new Set(); this._stylingContainer = null; this._stylingParent = null; this._inStyling = false; if (this._styling) { NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this)); } this._implementation = this.createImplementation(); this._implementation.externalObject = this; this._portalManager = new PortalManager("propertyEditorContent"); this._webComponentRenderer = new WebComponentRenderer(this, document, true, {}, this._portalManager); this._webComponentWrapper = this._webComponentRenderer.createElement("div"); this._webComponentRenderer.updateRoot(this._webComponentWrapper); this._webComponentWrapper.setStyleProperty("display", "block"); this._webComponentWrapper.setStyleProperty("width", "100%"); this._webComponentWrapper.setStyleProperty("height", "100%"); this._propertiesAdapter = new CollectionAdapter(this.contentProperties, this.i.properties, this.actualProperties, (c) => c.i, (i) => { if (this._webComponentRenderer && this._webComponentRenderer.rootWrapper.getNativeElement().parentElement) { i._styling(this, this, this); } }, (i) => { }); this.i.provideContainer(this._webComponentRenderer); this.i.notifySizeChanged(); let mut = new MutationObserver((list) => { for (var mutation of list) { if (mutation.type == 'childList') { this.updateContentProperties(); } } }); mut.observe(this, { childList: true }); this._webComponentRenderer.addSizeWatcher(() => { this.i.notifySizeChanged(); }); } // supports angular themes or custom properties set in CSS updateStyle() { this._styling(this, this); } destroy() { this._implementation.destroy(); this._webComponentRenderer.destroy(); } updateContentProperties() { this.contentProperties.length = 0; for (var i = 0; i < this.children.length; i++) { if (this.children[i] instanceof IgcPropertyEditorPropertyDescriptionComponent) { this.contentProperties.push(this.children[i]); } } if (this._propertiesAdapter != null) { this._propertiesAdapter.notifyContentChanged(); } } createImplementation() { return new PropertyEditor(); } get i() { return this._implementation; } disconnectedCallback() { this._disconnected = true; } connectedCallback() { if (this._disconnected) { this._disconnected = false; return; } this.classList.add("ig-property-editor"); this.classList.add("igc-property-editor"); var rootWrapper = this._webComponentRenderer.rootWrapper; var rootElement = rootWrapper.getNativeElement(); this.appendChild(rootElement); this._attached = true; this.style.display = "block"; this.style.height = this._height; this.style.width = this._width; this._flushQueuedAttributes(); // supports themes or custom properties set in CSS this._styling(this, this); for (let i = 0; i < this.actualProperties.length; i++) { let s = this.actualProperties[i]; s._styling(this, this, this); } this.updateContentProperties(); this.afterContentInit(); } afterContentInit() { this.i.notifySizeChanged(); } _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; } static get observedAttributes() { if (IgcPropertyEditorComponent._observedAttributesIgcPropertyEditorComponent == null) { let names = getAllPropertyNames(IgcPropertyEditorComponent); for (let i = 0; i < names.length; i++) { names[i] = toSpinal(names[i]); } IgcPropertyEditorComponent._observedAttributesIgcPropertyEditorComponent = names; } return IgcPropertyEditorComponent._observedAttributesIgcPropertyEditorComponent; } attributeChangedCallback(name, oldValue, newValue) { if (this._settingAttributes) { return; } let setName = fromSpinal(name); this._updatingFromAttribute = true; this[setName] = newValue; this._updatingFromAttribute = false; } static register() { if (!IgcPropertyEditorComponent._isElementRegistered) { IgcPropertyEditorComponent._isElementRegistered = true; RegisterElementHelper.registerElement(IgcPropertyEditorComponent.htmlTagName, IgcPropertyEditorComponent); } } /** * Gets the actaul data or data source instance to which to bind the grid. */ get actualDataSource() { if (this._actualDataSource === null) { let coll = new IgcPropertyEditorPropertyDescriptionCollection(); let innerColl = this.i.actualProperties; if (!innerColl) { innerColl = new PropertyEditorPropertyDescriptionCollection_internal(); } this._actualDataSource = coll._fromInner(innerColl); this.i.actualProperties = innerColl; } return this._actualDataSource; } set actualDataSource(v) { if (this._actualDataSource !== null) { this._actualDataSource._setSyncTarget(null); this._actualDataSource = null; } let coll = new IgcPropertyEditorPropertyDescriptionCollection(); this._actualDataSource = coll._fromOuter(v); let syncColl = new SyncableObservableCollection$1(PropertyEditorPropertyDescription.$type); let innerColl = this.i.actualProperties; if (!innerColl) { innerColl = new PropertyEditorPropertyDescriptionCollection_internal(); } syncColl._inner = innerColl; syncColl.clear(); this._actualDataSource._setSyncTarget(syncColl); this.i.actualProperties = innerColl; } /** * Gets or Sets the property name that contains the values. */ get filterPlaceholderText() { return this.i.b9; } set filterPlaceholderText(v) { this.i.b9 = v; } /** * Gets or Sets the property name that contains the values. */ get searchInputType() { return this.i.q; } set searchInputType(v) { this.i.q = ensureEnum(InputGroupDisplayType_$type, v); this._a("searchInputType", enumToString(InputGroupDisplayType_$type, this.i.q)); } /** * Gets or Sets the property name that contains the values. */ get rowHeight() { return this.i.bs; } set rowHeight(v) { this.i.bs = +v; this._a("rowHeight", this.i.bs); } /** * Gets or Sets the property name that contains the values. */ get cellTextStyle() { if (this.i.ad == null) { return null; } return this.i.ad.fontString; } set cellTextStyle(v) { let fi = new FontInfo(); fi.fontString = v; this.i.ad = fi; this._a("cellTextStyle", this.i.ad != null ? this.i.ad.fontString : ""); } /** * Gets or Sets the property name that contains the values. */ get baseTheme() { return this.i.y; } set baseTheme(v) { this.i.y = ensureEnum(BaseControlTheme_$type, v); this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.y)); } /** * Gets or Sets the property name that contains the values. */ get density() { return this.i.aa; } set density(v) { this.i.aa = ensureEnum(ControlDisplayDensity_$type, v); this._a("density", enumToString(ControlDisplayDensity_$type, this.i.aa)); } get actualDescriptionContext() { return this.i.j; } set actualDescriptionContext(v) { this.i.j = v; } get descriptionContext() { return this.i.k; } set descriptionContext(v) { this.i.k = v; } get componentRenderer() { return this.i.g; } set componentRenderer(v) { this.i.g = v; } get target() { return this.i.bu; } set target(v) { this.i.bu = v; } get descriptionType() { return this.i.b7; } set descriptionType(v) { this.i.b7 = v; } get isHorizontal() { return this.i.ao; } set isHorizontal(v) { this.i.ao = ensureBool(v); this._a("isHorizontal", this.i.ao); } get isWrappingEnabled() { return this.i.aq; } set isWrappingEnabled(v) { this.i.aq = ensureBool(v); this._a("isWrappingEnabled", this.i.aq); } get isIndirectModeEnabled() { return this.i.ap; } set isIndirectModeEnabled(v) { this.i.ap = ensureBool(v); this._a("isIndirectModeEnabled", this.i.ap); } /** * Gets or sets the color to use for the background of the component. */ get backgroundColor() { return brushToString(this.i.d8); } set backgroundColor(v) { this.i.d8 = stringToBrush(v); this._a("backgroundColor", brushToString(this.i.d8)); } /** * Gets or sets the color to use for the text of the component. */ get textColor() { return brushToString(this.i.ec); } set textColor(v) { this.i.ec = stringToBrush(v); this._a("textColor", brushToString(this.i.ec)); } findByName(name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } if (this.actualDataSource != null && this.actualDataSource.findByName && this.actualDataSource.findByName(name)) { return this.actualDataSource.findByName(name); } if (this.properties != null && this.properties.findByName && this.properties.findByName(name)) { return this.properties.findByName(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("PropertyEditorComponent"); 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; } getDesiredSize() { let iv = this.i.ed(); return fromSize(iv); } notifySetItem(index, oldItem, newItem) { this.i.dt(index, oldItem, newItem); } /** * Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined. * This should not be called if the data that the grid is bound to is already observable. */ notifyClearItems() { this.i.dq(); } notifyInsertItem(index, newItem) { this.i.dr(index, newItem); } notifyRemoveItem(index, oldItem) { this.i.ds(index, oldItem); } } IgcPropertyEditorComponent._observedAttributesIgcPropertyEditorComponent = null; IgcPropertyEditorComponent.htmlTagName = "igc-property-editor"; IgcPropertyEditorComponent._isElementRegistered = false; return IgcPropertyEditorComponent; })();