jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
404 lines (340 loc) • 11.7 kB
text/typescript
/*
jQWidgets v22.0.0 (2025-Jan)
Copyright (c) 2011-2025 jQWidgets.
License: https://jqwidgets.com/license/
*/
/* eslint-disable */
/// <reference path="jqwidgets.d.ts" />
import '../jqwidgets/jqxcore.js';
import '../jqwidgets/jqxdata.js';
import '../jqwidgets/jqxbuttons.js';
import '../jqwidgets/jqxscrollbar.js';
import '../jqwidgets/jqxtextarea.js';
import { Component, Input, Output, EventEmitter, ElementRef, forwardRef, OnChanges, SimpleChanges, ChangeDetectionStrategy } from '@angular/core';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
const noop = () => { };
declare let JQXLite: any;
const CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR: any = {
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => jqxTextAreaComponent),
multi: true
}
export class jqxTextAreaComponent implements ControlValueAccessor, OnChanges
{
attrDisabled: boolean;
attrDisplayMember: string;
attrDropDownWidth: number | string;
attrItems: number;
attrMaxLength: number;
attrMinLength: number;
attrOpened: boolean;
attrPlaceHolder: string;
attrPopupZIndex: number;
attrQuery: string;
attrRenderer: (itemValue: any, inputValue: any) => any;
attrRoundedCorners: boolean;
attrRtl: boolean;
attrScrollBarSize: number;
attrSearchMode: string;
attrSource: any;
attrTheme: string;
attrValueMember: string;
attrWidth: string | number;
attrHeight: string | number;
autoCreate: boolean = true;
properties: string[] = ['disabled','displayMember','dropDownWidth','height','items','maxLength','minLength','opened','placeHolder','popupZIndex','query','renderer','roundedCorners','rtl','scrollBarSize','searchMode','source','theme','valueMember','width'];
host: any;
elementRef: ElementRef;
widgetObject: jqwidgets.jqxTextArea;
private onTouchedCallback: () => void = noop;
private onChangeCallback: (_: any) => void = noop;
constructor(containerElement: ElementRef) {
this.elementRef = containerElement;
}
ngOnInit() {
if (this.autoCreate) {
this.createComponent();
}
};
ngOnChanges(changes: SimpleChanges) {
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: boolean = false;
if (this[attrName] !== undefined) {
if (typeof this[attrName] === 'object') {
if (this[attrName] instanceof Array) {
areEqual = this.arraysEqual(this[attrName], this.host.jqxTextArea(this.properties[i]));
}
if (areEqual) {
return false;
}
this.host.jqxTextArea(this.properties[i], this[attrName]);
continue;
}
if (this[attrName] !== this.host.jqxTextArea(this.properties[i])) {
this.host.jqxTextArea(this.properties[i], this[attrName]);
}
}
}
}
}
arraysEqual(attrValue: any, hostValue: any): boolean {
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(): any {
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: HTMLElement, childEl: HTMLElement): void {
let classes: any = parentEl.classList;
if (classes.length > 0) {
childEl.classList.add(...classes);
}
parentEl.className = '';
}
moveStyles(parentEl: HTMLElement, childEl: HTMLElement): void {
let style = parentEl.style.cssText;
childEl.style.cssText = style
parentEl.style.cssText = '';
}
createComponent(options?: any): void {
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.__wireEvents__();
this.widgetObject = jqwidgets.createInstance(this.host, 'jqxTextArea', options);
}
createWidget(options?: any): void {
this.createComponent(options);
}
__updateRect__() : void {
if(this.host) this.host.css({ width: this.attrWidth, height: this.attrHeight });
}
writeValue(value: any): void {
if(this.widgetObject) {
if (value !== null && value !== undefined)
this.host.jqxTextArea('val', value);
}
if (this.host && (value === null || value === undefined)) {
this.host.jqxTextArea('val', '');
}
}
registerOnChange(fn: any): void {
this.onChangeCallback = fn;
}
registerOnTouched(fn: any): void {
this.onTouchedCallback = fn;
}
setOptions(options: any) : void {
this.host.jqxTextArea('setOptions', options);
}
// jqxTextAreaComponent properties
disabled(arg?: boolean): boolean {
if (arg !== undefined) {
this.host.jqxTextArea('disabled', arg);
} else {
return this.host.jqxTextArea('disabled');
}
}
displayMember(arg?: string): string {
if (arg !== undefined) {
this.host.jqxTextArea('displayMember', arg);
} else {
return this.host.jqxTextArea('displayMember');
}
}
dropDownWidth(arg?: number | string): number | string {
if (arg !== undefined) {
this.host.jqxTextArea('dropDownWidth', arg);
} else {
return this.host.jqxTextArea('dropDownWidth');
}
}
height(arg?: string | number): string | number {
if (arg !== undefined) {
this.host.jqxTextArea('height', arg);
} else {
return this.host.jqxTextArea('height');
}
}
items(arg?: number): number {
if (arg !== undefined) {
this.host.jqxTextArea('items', arg);
} else {
return this.host.jqxTextArea('items');
}
}
maxLength(arg?: number): number {
if (arg !== undefined) {
this.host.jqxTextArea('maxLength', arg);
} else {
return this.host.jqxTextArea('maxLength');
}
}
minLength(arg?: number): number {
if (arg !== undefined) {
this.host.jqxTextArea('minLength', arg);
} else {
return this.host.jqxTextArea('minLength');
}
}
opened(arg?: boolean): boolean {
if (arg !== undefined) {
this.host.jqxTextArea('opened', arg);
} else {
return this.host.jqxTextArea('opened');
}
}
placeHolder(arg?: string): string {
if (arg !== undefined) {
this.host.jqxTextArea('placeHolder', arg);
} else {
return this.host.jqxTextArea('placeHolder');
}
}
popupZIndex(arg?: number): number {
if (arg !== undefined) {
this.host.jqxTextArea('popupZIndex', arg);
} else {
return this.host.jqxTextArea('popupZIndex');
}
}
query(arg?: string): string {
if (arg !== undefined) {
this.host.jqxTextArea('query', arg);
} else {
return this.host.jqxTextArea('query');
}
}
renderer(arg?: (itemValue: any, inputValue: any) => any): (itemValue: any, inputValue: any) => any {
if (arg !== undefined) {
this.host.jqxTextArea('renderer', arg);
} else {
return this.host.jqxTextArea('renderer');
}
}
roundedCorners(arg?: boolean): boolean {
if (arg !== undefined) {
this.host.jqxTextArea('roundedCorners', arg);
} else {
return this.host.jqxTextArea('roundedCorners');
}
}
rtl(arg?: boolean): boolean {
if (arg !== undefined) {
this.host.jqxTextArea('rtl', arg);
} else {
return this.host.jqxTextArea('rtl');
}
}
scrollBarSize(arg?: number): number {
if (arg !== undefined) {
this.host.jqxTextArea('scrollBarSize', arg);
} else {
return this.host.jqxTextArea('scrollBarSize');
}
}
searchMode(arg?: string): string {
if (arg !== undefined) {
this.host.jqxTextArea('searchMode', arg);
} else {
return this.host.jqxTextArea('searchMode');
}
}
source(arg?: any): any {
if (arg !== undefined) {
this.host.jqxTextArea('source', arg);
} else {
return this.host.jqxTextArea('source');
}
}
theme(arg?: string): string {
if (arg !== undefined) {
this.host.jqxTextArea('theme', arg);
} else {
return this.host.jqxTextArea('theme');
}
}
valueMember(arg?: string): string {
if (arg !== undefined) {
this.host.jqxTextArea('valueMember', arg);
} else {
return this.host.jqxTextArea('valueMember');
}
}
width(arg?: string | number): string | number {
if (arg !== undefined) {
this.host.jqxTextArea('width', arg);
} else {
return this.host.jqxTextArea('width');
}
}
// jqxTextAreaComponent functions
destroy(): void {
this.host.jqxTextArea('destroy');
}
focus(): void {
this.host.jqxTextArea('focus');
}
refresh(): void {
this.host.jqxTextArea('refresh');
}
render(): void {
this.host.jqxTextArea('render');
}
selectAll(): void {
this.host.jqxTextArea('selectAll');
}
val(value?: string): any {
if (value !== undefined) {
return this.host.jqxTextArea('val', value);
} else {
return this.host.jqxTextArea('val');
}
};
// jqxTextAreaComponent events
onChange = new EventEmitter();
onClose = new EventEmitter();
onOpen = new EventEmitter();
onSelect = new EventEmitter();
__wireEvents__(): void {
this.host.on('change', (eventData: any) => { this.onChange.emit(eventData); this.onChangeCallback(this.host.val()); });
this.host.on('close', (eventData: any) => { this.onClose.emit(eventData); });
this.host.on('open', (eventData: any) => { this.onOpen.emit(eventData); });
this.host.on('select', (eventData: any) => { this.onSelect.emit(eventData); });
this.host.on('keyup', () => { this.onChangeCallback(this.host.val()); });
}
} //jqxTextAreaComponent