igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
289 lines (284 loc) • 9.99 kB
JavaScript
import { __extends, __values } from "tslib";
import * as React from 'react';
import { delegateCombine, delegateRemove } from "igniteui-react-core";
import { IgrPropertyUpdatedEventArgs } from "igniteui-react-core";
import { BrushScale } from "./BrushScale";
import { TypeRegistrar } from "igniteui-react-core";
import { NamePatcher, getModifiedProps, isValidProp, toBrushCollection, fromBrushCollection, toSpinal, initializePropertiesFromCss, brushToString } from "igniteui-react-core";
/**
* Represents a base class for brush scales.
*/
var IgrBrushScale = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrBrushScale, _super);
function IgrBrushScale(props) {
var _this = _super.call(this, props) || this;
_this.mounted = 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;
}
IgrBrushScale.prototype.createImplementation = function () {
return new BrushScale();
};
Object.defineProperty(IgrBrushScale.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBrushScale.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
} /**
* @hidden
*/,
enumerable: false,
configurable: true
});
IgrBrushScale._createFromInternal = function (internal) {
if (!internal) {
return null;
}
if (!internal.$type) {
return null;
}
var name = internal.$type.name;
var externalName = "Igr" + name;
if (!TypeRegistrar.isRegistered(externalName)) {
return null;
}
return TypeRegistrar.create(externalName);
};
IgrBrushScale.prototype.onImplementationCreated = function () {
};
IgrBrushScale.prototype.componentDidMount = function () {
var e_1, _a;
this.mounted = true;
try {
for (var _b = __values(Object.keys(this.props)), _c = _b.next(); !_c.done; _c = _b.next()) {
var p = _c.value;
if (isValidProp(this, p)) {
this[p] = this.props[p];
}
}
}
catch (e_1_1) {
e_1 = { error: e_1_1 };
}
finally {
try {
if (_c && !_c.done && (_a = _b.return))
_a.call(_b);
}
finally {
if (e_1)
throw e_1.error;
}
}
};
IgrBrushScale.prototype.shouldComponentUpdate = function (nextProps, nextState) {
var e_2, _a;
var mod = getModifiedProps(this.props, nextProps);
try {
for (var _b = __values(Object.keys(mod)), _c = _b.next(); !_c.done; _c = _b.next()) {
var p = _c.value;
if (isValidProp(this, p)) {
this[p] = mod[p];
}
}
}
catch (e_2_1) {
e_2 = { error: e_2_1 };
}
finally {
try {
if (_c && !_c.done && (_a = _b.return))
_a.call(_b);
}
finally {
if (e_2)
throw e_2.error;
}
}
return true;
};
IgrBrushScale.prototype.render = function () {
return null;
};
Object.defineProperty(IgrBrushScale.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);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBrushScale.prototype, "isReady", {
/**
* Gets the status of the scale
*/
get: function () {
return this.i.isReady;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBrushScale.prototype, "isBrushScale", {
/**
* Checks if this item is a BrushScale
*/
get: function () {
return this.i.isBrushScale;
},
enumerable: false,
configurable: true
});
IgrBrushScale.prototype.findByName = function (name) {
if (this.findEphemera) {
if (name && name.indexOf("@@e:") == 0) {
return this.findEphemera(name);
}
}
return null;
};
Object.defineProperty(IgrBrushScale.prototype, "hasUserValues", {
get: function () {
return this._hasUserValues;
},
enumerable: false,
configurable: true
});
IgrBrushScale.prototype.__m = function (propertyName) {
if (!this._inStyling) {
this._hasUserValues.add(propertyName);
}
};
IgrBrushScale.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("BrushScale");
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.
*/
IgrBrushScale.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.
*/
IgrBrushScale.prototype.unregisterSeries = function (series) {
this.i.unregisterSeries((series == null ? null : series.i));
};
/**
* Gets a brush from the brushes collection by index.
*/
IgrBrushScale.prototype.getBrush = function (index) {
var iv = this.i.getBrush(index);
return brushToString(iv);
};
/**
* Notify attached series about changes to this scale
*/
IgrBrushScale.prototype.notifySeries = function () {
this.i.notifySeries();
};
Object.defineProperty(IgrBrushScale.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 IgrPropertyUpdatedEventArgs();
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
});
return IgrBrushScale;
}(React.Component));
export { IgrBrushScale };