UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

283 lines (278 loc) 10.9 kB
import { IgcHTMLElement } from "igniteui-webcomponents-core"; import { delegateCombine, delegateRemove } from "igniteui-webcomponents-core"; import { IgcPropertyUpdatedEventArgs } from "igniteui-webcomponents-core"; import { BrushScale } from "./BrushScale"; import { TypeRegistrar } from "igniteui-webcomponents-core"; import { NamePatcher, getAllPropertyNames, fromSpinal, toSpinal, toBrushCollection, fromBrushCollection, brushCollectionToString, initializePropertiesFromCss, brushToString } from "igniteui-webcomponents-core"; import { RegisterElementHelper } from "igniteui-webcomponents-core"; let IgcBrushScaleComponent = /*@__PURE__*/ (() => { class IgcBrushScaleComponent extends IgcHTMLElement { createImplementation() { return new BrushScale(); } /** * @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._propertyUpdated = null; this._propertyUpdated_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 (IgcBrushScaleComponent._observedAttributesIgcBrushScaleComponent == null) { let names = getAllPropertyNames(IgcBrushScaleComponent); for (let i = 0; i < names.length; i++) { names[i] = toSpinal(names[i]); } IgcBrushScaleComponent._observedAttributesIgcBrushScaleComponent = names; } return IgcBrushScaleComponent._observedAttributesIgcBrushScaleComponent; } attributeChangedCallback(name, oldValue, newValue) { if (this._settingAttributes) { return; } let setName = fromSpinal(name); this._updatingFromAttribute = true; this[setName] = newValue; this._updatingFromAttribute = false; } static register() { if (!IgcBrushScaleComponent._isElementRegistered) { IgcBrushScaleComponent._isElementRegistered = true; RegisterElementHelper.registerElement(IgcBrushScaleComponent.htmlTagName, IgcBrushScaleComponent); } } /** * Gets the brushes collection used by this scale. */ get brushes() { return fromBrushCollection(this.i.brushes); } set brushes(v) { this.i.brushes = toBrushCollection(v); this._a("brushes", brushCollectionToString(this.i.brushes)); } /** * Gets the status of the scale */ get isReady() { return this.i.isReady; } /** * Checks if this item is a BrushScale */ get isBrushScale() { return this.i.isBrushScale; } 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("BrushScaleComponent"); 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; } /** * Registers a series with the scale. Under normal circumstances you should not need to call this manually. * @param series * The series to register with the scale. */ registerSeries(series) { this.i.registerSeries((series == null ? null : series.i)); } /** * Unregisters a series with the scale. Under normal circumstances you should not need to call this manually. * @param series * The series to unregister from the scale. */ unregisterSeries(series) { this.i.unregisterSeries((series == null ? null : series.i)); } /** * Gets a brush from the brushes collection by index. */ getBrush(index) { let iv = this.i.getBrush(index); return brushToString(iv); } /** * Notify attached series about changes to this scale */ notifySeries() { this.i.notifySeries(); } /** * Event raised when a property (including "effective" and non-dependency property) value changes. */ get propertyUpdated() { return this._propertyUpdated; } set propertyUpdated(ev) { if (this._propertyUpdated_wrapped !== null) { this.i.propertyUpdated = delegateRemove(this.i.propertyUpdated, this._propertyUpdated_wrapped); this._propertyUpdated_wrapped = null; this._propertyUpdated = null; } this._propertyUpdated = ev; this._propertyUpdated_wrapped = (o, e) => { let outerArgs = new IgcPropertyUpdatedEventArgs(); outerArgs._provideImplementation(e); if (this.beforePropertyUpdated) { this.beforePropertyUpdated(this, outerArgs); } if (this._propertyUpdated) { this._propertyUpdated(this, outerArgs); } }; this.i.propertyUpdated = delegateCombine(this.i.propertyUpdated, this._propertyUpdated_wrapped); ; } } IgcBrushScaleComponent._observedAttributesIgcBrushScaleComponent = null; IgcBrushScaleComponent.htmlTagName = "igc-brush-scale"; IgcBrushScaleComponent._isElementRegistered = false; return IgcBrushScaleComponent; })(); export { IgcBrushScaleComponent };