UNPKG

smart-webcomponents

Version:

Web Components & Custom Elements for Professional Web Applications

321 lines (271 loc) 10.9 kB
import { CustomizationDialog } from './../index'; import { Animation, ElementRenderMode} from './../index'; import { Component, Directive, AfterViewInit, ElementRef, Input, OnInit, OnChanges, OnDestroy, SimpleChanges, Output, EventEmitter } from '@angular/core'; import { BaseElement, Smart } from './smart.element'; export { Animation, ElementRenderMode} from './../index'; export { Smart } from './smart.element'; export { CustomizationDialog } from './../index'; @Directive({ exportAs: 'smart-customization-dialog', selector: 'smart-customization-dialog, [smart-customization-dialog]' }) export class CustomizationDialogComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges { constructor(ref: ElementRef<CustomizationDialog>) { super(ref); this.nativeElement = ref.nativeElement as CustomizationDialog; } private eventHandlers: any[] = []; public declare nativeElement: CustomizationDialog; /** @description Creates the component on demand. * @param properties An optional object of properties, which will be added to the template binded ones. */ public createComponent(properties = {}): any { this.nativeElement = <CustomizationDialog>document.createElement('smart-customization-dialog'); for (let propertyName in properties) { this.nativeElement[propertyName] = properties[propertyName]; } return this.nativeElement; } /** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */ @Input() get animation(): Animation | string { return this.nativeElement ? this.nativeElement.animation : undefined; } set animation(value: Animation | string) { this.nativeElement ? this.nativeElement.animation = value : undefined; } /** @description Array with filtered fields and their settings. */ @Input() get dataSource(): any { return this.nativeElement ? this.nativeElement.dataSource : undefined; } set dataSource(value: any) { this.nativeElement ? this.nativeElement.dataSource = value : undefined; } /** @description Sets or gets the displayMember. The displayMember specifies the name of an object property to display. The name is contained in the collection specified by the 'dataSource' property. */ @Input() get displayMember(): string { return this.nativeElement ? this.nativeElement.displayMember : undefined; } set displayMember(value: string) { this.nativeElement ? this.nativeElement.displayMember = value : undefined; } /** @description Enables or disables the element. */ @Input() get disabled(): boolean { return this.nativeElement ? this.nativeElement.disabled : undefined; } set disabled(value: boolean) { this.nativeElement ? this.nativeElement.disabled = value : undefined; } /** @description Sets whether is enabled/disabled filtering tab. */ @Input() get filtering(): boolean { return this.nativeElement ? this.nativeElement.filtering : undefined; } set filtering(value: boolean) { this.nativeElement ? this.nativeElement.filtering = value : undefined; } /** @description Sets whether is enabled/disabled grouping tab. */ @Input() get grouping(): boolean { return this.nativeElement ? this.nativeElement.grouping : undefined; } set grouping(value: boolean) { this.nativeElement ? this.nativeElement.grouping = value : undefined; } /** @description Set's the buttons that will be visible in the header section. */ @Input() get headerButtons(): string[] { return this.nativeElement ? this.nativeElement.headerButtons : undefined; } set headerButtons(value: string[]) { this.nativeElement ? this.nativeElement.headerButtons = value : undefined; } /** @description Sets or gets the unlockKey which unlocks the product. */ @Input() get unlockKey(): string { return this.nativeElement ? this.nativeElement.unlockKey : undefined; } set unlockKey(value: string) { this.nativeElement ? this.nativeElement.unlockKey = value : undefined; } /** @description Sets or gets the language. Used in conjunction with the property messages. */ @Input() get locale(): string { return this.nativeElement ? this.nativeElement.locale : undefined; } set locale(value: string) { this.nativeElement ? this.nativeElement.locale = value : undefined; } /** @description Callback, related to localization module. */ @Input() get localizeFormatFunction(): any { return this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined; } set localizeFormatFunction(value: any) { this.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined; } /** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */ @Input() get messages(): any { return this.nativeElement ? this.nativeElement.messages : undefined; } set messages(value: any) { this.nativeElement ? this.nativeElement.messages = value : undefined; } /** @description Sets or gets whether the columns reordering is active. */ @Input() get reorder(): boolean { return this.nativeElement ? this.nativeElement.reorder : undefined; } set reorder(value: boolean) { this.nativeElement ? this.nativeElement.reorder = value : undefined; } /** @description Sets or gets the tab, wich is selected on initialization. */ @Input() get selectedTab(): number { return this.nativeElement ? this.nativeElement.selectedTab : undefined; } set selectedTab(value: number) { this.nativeElement ? this.nativeElement.selectedTab = value : undefined; } /** @description Sets whether is enabled/disabled sorting tab. */ @Input() get sorting(): boolean { return this.nativeElement ? this.nativeElement.sorting : undefined; } set sorting(value: boolean) { this.nativeElement ? this.nativeElement.sorting = value : undefined; } /** @description Determines the theme. Theme defines the look of the element */ @Input() get theme(): string { return this.nativeElement ? this.nativeElement.theme : undefined; } set theme(value: string) { this.nativeElement ? this.nativeElement.theme = value : undefined; } /** @description If is set to true, the element cannot be focused. */ @Input() get unfocusable(): boolean { return this.nativeElement ? this.nativeElement.unfocusable : undefined; } set unfocusable(value: boolean) { this.nativeElement ? this.nativeElement.unfocusable = value : undefined; } /** @description Sets or gets element's value. It's represente by object, contained */ @Input() get value(): any { return this.nativeElement ? this.nativeElement.value : undefined; } set value(value: any) { this.nativeElement ? this.nativeElement.value = value : undefined; } /** @description Determines the value member of an item. Stored as value in the item object. */ @Input() get valueMember(): string { return this.nativeElement ? this.nativeElement.valueMember : undefined; } set valueMember(value: string) { this.nativeElement ? this.nativeElement.valueMember = value : undefined; } /** @description Sets or gets whether the columns of the element could be hidden. */ @Input() get visibility(): boolean { return this.nativeElement ? this.nativeElement.visibility : undefined; } set visibility(value: boolean) { this.nativeElement ? this.nativeElement.visibility = value : undefined; } /** @description This event is triggered when the dialog is opened. * @param event. The custom event. */ @Output() onOpen: EventEmitter<CustomEvent> = new EventEmitter(); /** @description This event is triggered when the dialog is closed. * @param event. The custom event. */ @Output() onClose: EventEmitter<CustomEvent> = new EventEmitter(); /** @description This event is triggered when the data in the value property is changed. * @param event. The custom event. */ @Output() onChange: EventEmitter<CustomEvent> = new EventEmitter(); /** @description This event is triggered when the dialog is closed via clicking the apply button. * @param event. The custom event. */ @Output() onApply: EventEmitter<CustomEvent> = new EventEmitter(); /** @description Opens the dialog */ public open(): void { if (this.nativeElement.isRendered) { this.nativeElement.open(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.open(); }); } } /** @description Closes the dialog. */ public close(): void { if (this.nativeElement.isRendered) { this.nativeElement.close(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.close(); }); } } get isRendered(): boolean { return this.nativeElement ? this.nativeElement.isRendered : false; } ngOnInit() { } ngAfterViewInit() { const that = this; that.onCreate.emit(that.nativeElement); if (Smart) Smart.Render(); this.nativeElement.classList.add('smart-angular'); if (this.nativeElement.whenRendered) this.nativeElement.whenRendered(() => { that.onReady.emit(that.nativeElement); }); this.listen(); } ngOnDestroy() { this.unlisten(); } ngOnChanges(changes: SimpleChanges) { if (this.nativeElement && this.nativeElement.isRendered) { for (const propName in changes) { if (changes.hasOwnProperty(propName)) { this.nativeElement[propName] = changes[propName].currentValue; } } } } /** @description Add event listeners. */ private listen(): void { const that = this; that.eventHandlers['openHandler'] = (event: CustomEvent) => { that.onOpen.emit(event); } that.nativeElement.addEventListener('open', that.eventHandlers['openHandler']); that.eventHandlers['closeHandler'] = (event: CustomEvent) => { that.onClose.emit(event); } that.nativeElement.addEventListener('close', that.eventHandlers['closeHandler']); that.eventHandlers['changeHandler'] = (event: CustomEvent) => { that.onChange.emit(event); } that.nativeElement.addEventListener('change', that.eventHandlers['changeHandler']); that.eventHandlers['applyHandler'] = (event: CustomEvent) => { that.onApply.emit(event); } that.nativeElement.addEventListener('apply', that.eventHandlers['applyHandler']); } /** @description Remove event listeners. */ private unlisten(): void { const that = this; if (that.eventHandlers['openHandler']) { that.nativeElement.removeEventListener('open', that.eventHandlers['openHandler']); } if (that.eventHandlers['closeHandler']) { that.nativeElement.removeEventListener('close', that.eventHandlers['closeHandler']); } if (that.eventHandlers['changeHandler']) { that.nativeElement.removeEventListener('change', that.eventHandlers['changeHandler']); } if (that.eventHandlers['applyHandler']) { that.nativeElement.removeEventListener('apply', that.eventHandlers['applyHandler']); } } }