UNPKG

jqwidgets-ng

Version:

[![Price](https://img.shields.io/badge/price-COMMERCIAL-0098f7.svg)](https://jqwidgets.com/license/)

208 lines (203 loc) 8.42 kB
import '../jqwidgets/modules/jqxdraw'; import * as i0 from '@angular/core'; import { Component, Input, NgModule } from '@angular/core'; /// <reference path="../../jqwidgets.d.ts" /> class jqxDrawComponent { constructor(containerElement) { this.autoCreate = true; this.properties = ['renderEngine']; this.elementRef = containerElement; } ngOnInit() { if (this.autoCreate) { this.createComponent(); } } ; ngOnChanges(changes) { if (this.host) { for (let i = 0; i < this.properties.length; i++) { let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1); let areEqual = false; if (this[attrName] !== undefined) { if (typeof this[attrName] === 'object') { if (this[attrName] instanceof Array) { areEqual = this.arraysEqual(this[attrName], this.host.jqxDraw(this.properties[i])); } if (areEqual) { return false; } this.host.jqxDraw(this.properties[i], this[attrName]); continue; } if (this[attrName] !== this.host.jqxDraw(this.properties[i])) { this.host.jqxDraw(this.properties[i], this[attrName]); } } } } } arraysEqual(attrValue, hostValue) { if ((attrValue && !hostValue) || (!attrValue && hostValue)) { return false; } if (attrValue.length != hostValue.length) { return false; } for (let i = 0; i < attrValue.length; i++) { if (attrValue[i] !== hostValue[i]) { return false; } } return true; } manageAttributes() { let options = {}; for (let i = 0; i < this.properties.length; i++) { let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1); if (this[attrName] !== undefined) { options[this.properties[i]] = this[attrName]; } } return options; } moveClasses(parentEl, childEl) { let classes = parentEl.classList; if (classes.length > 0) { childEl.classList.add(...classes); } parentEl.className = ''; } moveStyles(parentEl, childEl) { let style = parentEl.style.cssText; childEl.style.cssText = style; parentEl.style.cssText = ''; } createComponent(options) { if (this.host) { return; } if (options) { JQXLite.extend(options, this.manageAttributes()); } else { options = this.manageAttributes(); } this.host = JQXLite(this.elementRef.nativeElement.firstChild); this.moveClasses(this.elementRef.nativeElement, this.host[0]); this.moveStyles(this.elementRef.nativeElement, this.host[0]); this.host.append('div'); this.host.css({ width: this.attrWidth, height: this.attrHeight }); this.__wireEvents__(); this.widgetObject = jqwidgets.createInstance(this.host, 'jqxDraw', options); } createWidget(options) { this.createComponent(options); } __updateRect__() { if (this.host) this.host.css({ width: this.attrWidth, height: this.attrHeight }); } setOptions(options) { this.host.jqxDraw('setOptions', options); } // jqxDrawComponent properties renderEngine(arg) { if (arg !== undefined) { this.host.jqxDraw('renderEngine', arg); } else { return this.host.jqxDraw('renderEngine'); } } // jqxDrawComponent functions attr(element, attributes) { this.host.jqxDraw('attr', element, attributes); } circle(cx, cy, r, attributes) { return this.host.jqxDraw('circle', cx, cy, r, attributes); } clear() { this.host.jqxDraw('clear'); } getAttr(element, attributes) { return this.host.jqxDraw('getAttr', element, attributes); } getSize() { return this.host.jqxDraw('getSize'); } line(x1, y1, x2, y2, attributes) { return this.host.jqxDraw('line', x1, y1, x2, y2, attributes); } measureText(text, angle, attributes) { return this.host.jqxDraw('measureText', text, angle, attributes); } on(element, event, func) { this.host.jqxDraw('on', element, event, func); } off(element, event, func) { this.host.jqxDraw('off', element, event, func); } path(path, attributes) { return this.host.jqxDraw('path', path, attributes); } pieslice(cx, xy, innerRadius, outerRadius, fromAngle, endAngle, centerOffset, attributes) { return this.host.jqxDraw('pieslice', cx, xy, innerRadius, outerRadius, fromAngle, endAngle, centerOffset, attributes); } refresh() { this.host.jqxDraw('refresh'); } rect(x, y, width, height, attributes) { return this.host.jqxDraw('rect', x, y, width, height, attributes); } saveAsJPEG(image, url) { this.host.jqxDraw('saveAsJPEG', image, url); } saveAsPNG(image, url) { this.host.jqxDraw('saveAsPNG', image, url); } text(text, x, y, width, height, angle, attributes, clip, halign, valign, rotateAround) { return this.host.jqxDraw('text', text, x, y, width, height, angle, attributes, clip, halign, valign, rotateAround); } // jqxDrawComponent events __wireEvents__() { } } //jqxDrawComponent jqxDrawComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDrawComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); jqxDrawComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxDrawComponent, selector: "jqxDraw", inputs: { attrRenderEngine: ["renderEngine", "attrRenderEngine"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true }); i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDrawComponent, decorators: [{ type: Component, args: [{ selector: 'jqxDraw', template: '<div><ng-content></ng-content></div>' }] }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { attrRenderEngine: [{ type: Input, args: ['renderEngine'] }], attrWidth: [{ type: Input, args: ['width'] }], attrHeight: [{ type: Input, args: ['height'] }], autoCreate: [{ type: Input, args: ['auto-create'] }] } }); class jqxDrawModule { } jqxDrawModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDrawModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); jqxDrawModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDrawModule, declarations: [jqxDrawComponent], exports: [jqxDrawComponent] }); jqxDrawModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDrawModule, imports: [[]] }); i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDrawModule, decorators: [{ type: NgModule, args: [{ imports: [], declarations: [jqxDrawComponent], exports: [jqxDrawComponent] }] }] }); /** * Generated bundle index. Do not edit. */ export { jqxDrawComponent, jqxDrawModule };