UNPKG

igniteui-webcomponents-charts

Version:

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

316 lines (311 loc) 12.1 kB
import { __extends } from "tslib"; 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"; /** * Represents a base class for brush scales. */ var IgcBrushScaleComponent = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgcBrushScaleComponent, _super); function IgcBrushScaleComponent() { var _this = _super.call(this) || this; _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(); } return _this; } IgcBrushScaleComponent.prototype.createImplementation = function () { return new BrushScale(); }; Object.defineProperty(IgcBrushScaleComponent.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; } /** * @hidden */, enumerable: false, configurable: true }); IgcBrushScaleComponent._createFromInternal = function (internal) { if (!internal) { return null; } if (!internal.$type) { return null; } var name = internal.$type.name; var externalName = "Igc" + name + "Component"; if (!TypeRegistrar.isRegistered(externalName)) { return null; } return TypeRegistrar.create(externalName); }; IgcBrushScaleComponent.prototype.onImplementationCreated = function () { }; IgcBrushScaleComponent.prototype._enqueueSetAttribute = function (attrName, attrValue) { this._queuedSetAttributes.push({ attrName: attrName, attrValue: attrValue }); }; IgcBrushScaleComponent.prototype._flushQueuedAttributes = function () { this._settingAttributes = true; for (var i = 0; i < this._queuedSetAttributes.length; i++) { this.setAttribute(this._queuedSetAttributes[i].attrName, this._queuedSetAttributes[i].attrValue); } this._settingAttributes = false; this._queuedSetAttributes.length = 0; }; IgcBrushScaleComponent.prototype._a = function (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; }; IgcBrushScaleComponent.prototype.connectedCallback = function () { if (_super.prototype["connectedCallback"]) { _super.prototype["connectedCallback"].call(this); } if (this.i.connectedCallback) { this.i.connectedCallback(); } if (!this._attached) { this._attached = true; this._flushQueuedAttributes(); } }; IgcBrushScaleComponent.prototype.disconnectedCallback = function () { if (_super.prototype["disconnectedCallback"]) { _super.prototype["disconnectedCallback"].call(this); } if (this.i.disconnectedCallback) { this.i.disconnectedCallback(); } if (this._attached) { this._attached = false; } }; Object.defineProperty(IgcBrushScaleComponent, "observedAttributes", { get: function () { if (IgcBrushScaleComponent._observedAttributesIgcBrushScaleComponent == null) { var names = getAllPropertyNames(IgcBrushScaleComponent); for (var i = 0; i < names.length; i++) { names[i] = toSpinal(names[i]); } IgcBrushScaleComponent._observedAttributesIgcBrushScaleComponent = names; } return IgcBrushScaleComponent._observedAttributesIgcBrushScaleComponent; }, enumerable: false, configurable: true }); IgcBrushScaleComponent.prototype.attributeChangedCallback = function (name, oldValue, newValue) { if (this._settingAttributes) { return; } var setName = fromSpinal(name); this._updatingFromAttribute = true; this[setName] = newValue; this._updatingFromAttribute = false; }; IgcBrushScaleComponent.register = function () { if (!IgcBrushScaleComponent._isElementRegistered) { IgcBrushScaleComponent._isElementRegistered = true; RegisterElementHelper.registerElement(IgcBrushScaleComponent.htmlTagName, IgcBrushScaleComponent); } }; Object.defineProperty(IgcBrushScaleComponent.prototype, "brushes", { /** * Gets the brushes collection used by this scale. */ get: function () { return fromBrushCollection(this.i.brushes); }, set: function (v) { this.i.brushes = toBrushCollection(v); this._a("brushes", brushCollectionToString(this.i.brushes)); }, enumerable: false, configurable: true }); Object.defineProperty(IgcBrushScaleComponent.prototype, "isReady", { /** * Gets the status of the scale */ get: function () { return this.i.isReady; }, enumerable: false, configurable: true }); Object.defineProperty(IgcBrushScaleComponent.prototype, "isBrushScale", { /** * Checks if this item is a BrushScale */ get: function () { return this.i.isBrushScale; }, enumerable: false, configurable: true }); IgcBrushScaleComponent.prototype.findByName = function (name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } return null; }; Object.defineProperty(IgcBrushScaleComponent.prototype, "hasUserValues", { get: function () { return this._hasUserValues; }, enumerable: false, configurable: true }); IgcBrushScaleComponent.prototype.__m = function (propertyName) { if (!this._inStyling) { this._hasUserValues.add(propertyName); } }; IgcBrushScaleComponent.prototype._styling = function (container, component, parent) { if (this._inStyling) { return; } this._inStyling = true; this._stylingContainer = container; this._stylingParent = component; var genericPrefix = ""; var typeName = this.i.$type.name; if (typeName.indexOf("Xam") === 0) { typeName = typeName.substring(3); } genericPrefix = toSpinal("BrushScaleComponent"); var additionalPrefixes = []; var prefix = toSpinal(typeName); additionalPrefixes.push(prefix + "-"); var 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); } var basePrefix = toSpinal(typeName); additionalPrefixes.push(basePrefix + "-"); b = b.baseType; } if (parent) { var parentTypeName = parent.i.$type.name; if (parentTypeName.indexOf("Xam") === 0) { parentTypeName = parentTypeName.substring(3); } var 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. */ IgcBrushScaleComponent.prototype.registerSeries = function (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. */ IgcBrushScaleComponent.prototype.unregisterSeries = function (series) { this.i.unregisterSeries((series == null ? null : series.i)); }; /** * Gets a brush from the brushes collection by index. */ IgcBrushScaleComponent.prototype.getBrush = function (index) { var iv = this.i.getBrush(index); return brushToString(iv); }; /** * Notify attached series about changes to this scale */ IgcBrushScaleComponent.prototype.notifySeries = function () { this.i.notifySeries(); }; Object.defineProperty(IgcBrushScaleComponent.prototype, "propertyUpdated", { /** * Event raised when a property (including "effective" and non-dependency property) value changes. */ get: function () { return this._propertyUpdated; }, set: function (ev) { var _this = this; 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 = function (o, e) { var 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); ; }, enumerable: false, configurable: true }); IgcBrushScaleComponent._observedAttributesIgcBrushScaleComponent = null; IgcBrushScaleComponent.htmlTagName = "igc-brush-scale"; IgcBrushScaleComponent._isElementRegistered = false; return IgcBrushScaleComponent; }(IgcHTMLElement)); export { IgcBrushScaleComponent };