-
Notifications
You must be signed in to change notification settings - Fork 669
Expand file tree
/
Copy pathdrop-down-options.ts
More file actions
513 lines (433 loc) · 14.4 KB
/
drop-down-options.ts
File metadata and controls
513 lines (433 loc) · 14.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
/* tslint:disable:max-line-length */
import {
Component,
OnInit,
OnDestroy,
NgModule,
Host,
SkipSelf,
Input,
Output,
EventEmitter,
ContentChildren,
QueryList
} from '@angular/core';
import type dxOverlay from 'devextreme/ui/overlay';
import type DOMComponent from 'devextreme/core/dom_component';
import type { AnimationConfig, PositionConfig } from 'devextreme/common/core/animation';
import type { event } from 'devextreme/events/events.types';
import type { EventInfo } from 'devextreme/common/core/events';
import type { Component as CoreComponent } from 'devextreme/core/component';
import type { PositionAlignment } from 'devextreme/common';
import type { default as dxPopup, dxPopupToolbarItem } from 'devextreme/ui/popup';
import {
DxIntegrationModule,
NestedOptionHost,
CollectionNestedOption,
} from 'devextreme-angular/core';
import { NestedOption } from 'devextreme-angular/core';
import {
PROPERTY_TOKEN_toolbarItems,
} from 'devextreme-angular/core/tokens';
@Component({
selector: 'dxo-autocomplete-drop-down-options',
template: '',
styles: [''],
imports: [ DxIntegrationModule ],
providers: [NestedOptionHost]
})
export class DxoAutocompleteDropDownOptionsComponent extends NestedOption implements OnDestroy, OnInit {
@ContentChildren(PROPERTY_TOKEN_toolbarItems)
set _toolbarItemsContentChildren(value: QueryList<CollectionNestedOption>) {
this.setChildren('toolbarItems', value);
}
@Input()
get accessKey(): string | undefined {
return this._getOption('accessKey');
}
set accessKey(value: string | undefined) {
this._setOption('accessKey', value);
}
@Input()
get animation(): { hide?: AnimationConfig, show?: AnimationConfig } {
return this._getOption('animation');
}
set animation(value: { hide?: AnimationConfig, show?: AnimationConfig }) {
this._setOption('animation', value);
}
@Input()
get container(): any | string | undefined {
return this._getOption('container');
}
set container(value: any | string | undefined) {
this._setOption('container', value);
}
@Input()
get contentTemplate(): any {
return this._getOption('contentTemplate');
}
set contentTemplate(value: any) {
this._setOption('contentTemplate', value);
}
@Input()
get deferRendering(): boolean {
return this._getOption('deferRendering');
}
set deferRendering(value: boolean) {
this._setOption('deferRendering', value);
}
@Input()
get disabled(): boolean {
return this._getOption('disabled');
}
set disabled(value: boolean) {
this._setOption('disabled', value);
}
@Input()
get dragAndResizeArea(): any | string | undefined {
return this._getOption('dragAndResizeArea');
}
set dragAndResizeArea(value: any | string | undefined) {
this._setOption('dragAndResizeArea', value);
}
@Input()
get dragEnabled(): boolean {
return this._getOption('dragEnabled');
}
set dragEnabled(value: boolean) {
this._setOption('dragEnabled', value);
}
@Input()
get dragOutsideBoundary(): boolean {
return this._getOption('dragOutsideBoundary');
}
set dragOutsideBoundary(value: boolean) {
this._setOption('dragOutsideBoundary', value);
}
@Input()
get enableBodyScroll(): boolean {
return this._getOption('enableBodyScroll');
}
set enableBodyScroll(value: boolean) {
this._setOption('enableBodyScroll', value);
}
@Input()
get focusStateEnabled(): boolean {
return this._getOption('focusStateEnabled');
}
set focusStateEnabled(value: boolean) {
this._setOption('focusStateEnabled', value);
}
@Input()
get fullScreen(): boolean {
return this._getOption('fullScreen');
}
set fullScreen(value: boolean) {
this._setOption('fullScreen', value);
}
@Input()
get height(): number | string {
return this._getOption('height');
}
set height(value: number | string) {
this._setOption('height', value);
}
@Input()
get hideOnOutsideClick(): boolean | ((event: event) => boolean) {
return this._getOption('hideOnOutsideClick');
}
set hideOnOutsideClick(value: boolean | ((event: event) => boolean)) {
this._setOption('hideOnOutsideClick', value);
}
@Input()
get hideOnParentScroll(): boolean {
return this._getOption('hideOnParentScroll');
}
set hideOnParentScroll(value: boolean) {
this._setOption('hideOnParentScroll', value);
}
@Input()
get hint(): string | undefined {
return this._getOption('hint');
}
set hint(value: string | undefined) {
this._setOption('hint', value);
}
@Input()
get hoverStateEnabled(): boolean {
return this._getOption('hoverStateEnabled');
}
set hoverStateEnabled(value: boolean) {
this._setOption('hoverStateEnabled', value);
}
@Input()
get maxHeight(): number | string {
return this._getOption('maxHeight');
}
set maxHeight(value: number | string) {
this._setOption('maxHeight', value);
}
@Input()
get maxWidth(): number | string {
return this._getOption('maxWidth');
}
set maxWidth(value: number | string) {
this._setOption('maxWidth', value);
}
@Input()
get minHeight(): number | string {
return this._getOption('minHeight');
}
set minHeight(value: number | string) {
this._setOption('minHeight', value);
}
@Input()
get minWidth(): number | string {
return this._getOption('minWidth');
}
set minWidth(value: number | string) {
this._setOption('minWidth', value);
}
@Input()
get onContentReady(): ((e: EventInfo<any>) => void) {
return this._getOption('onContentReady');
}
set onContentReady(value: ((e: EventInfo<any>) => void)) {
this._setOption('onContentReady', value);
}
@Input()
get onDisposing(): ((e: EventInfo<any>) => void) {
return this._getOption('onDisposing');
}
set onDisposing(value: ((e: EventInfo<any>) => void)) {
this._setOption('onDisposing', value);
}
@Input()
get onHidden(): ((e: EventInfo<any>) => void) {
return this._getOption('onHidden');
}
set onHidden(value: ((e: EventInfo<any>) => void)) {
this._setOption('onHidden', value);
}
@Input()
get onHiding(): ((e: { cancel: boolean | any, component: dxOverlay<any>, element: any, model: any }) => void) {
return this._getOption('onHiding');
}
set onHiding(value: ((e: { cancel: boolean | any, component: dxOverlay<any>, element: any, model: any }) => void)) {
this._setOption('onHiding', value);
}
@Input()
get onInitialized(): ((e: { component: CoreComponent<any>, element: any }) => void) {
return this._getOption('onInitialized');
}
set onInitialized(value: ((e: { component: CoreComponent<any>, element: any }) => void)) {
this._setOption('onInitialized', value);
}
@Input()
get onOptionChanged(): ((e: { component: DOMComponent, element: any, fullName: string, model: any, name: string, previousValue: any, value: any }) => void) {
return this._getOption('onOptionChanged');
}
set onOptionChanged(value: ((e: { component: DOMComponent, element: any, fullName: string, model: any, name: string, previousValue: any, value: any }) => void)) {
this._setOption('onOptionChanged', value);
}
@Input()
get onResize(): ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void) {
return this._getOption('onResize');
}
set onResize(value: ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void)) {
this._setOption('onResize', value);
}
@Input()
get onResizeEnd(): ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void) {
return this._getOption('onResizeEnd');
}
set onResizeEnd(value: ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void)) {
this._setOption('onResizeEnd', value);
}
@Input()
get onResizeStart(): ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void) {
return this._getOption('onResizeStart');
}
set onResizeStart(value: ((e: { component: dxPopup, element: any, event: event, height: number, model: any, width: number }) => void)) {
this._setOption('onResizeStart', value);
}
@Input()
get onShowing(): ((e: { cancel: boolean | any, component: dxOverlay<any>, element: any, model: any }) => void) {
return this._getOption('onShowing');
}
set onShowing(value: ((e: { cancel: boolean | any, component: dxOverlay<any>, element: any, model: any }) => void)) {
this._setOption('onShowing', value);
}
@Input()
get onShown(): ((e: EventInfo<any>) => void) {
return this._getOption('onShown');
}
set onShown(value: ((e: EventInfo<any>) => void)) {
this._setOption('onShown', value);
}
@Input()
get onTitleRendered(): ((e: { component: dxPopup, element: any, model: any, titleElement: any }) => void) {
return this._getOption('onTitleRendered');
}
set onTitleRendered(value: ((e: { component: dxPopup, element: any, model: any, titleElement: any }) => void)) {
this._setOption('onTitleRendered', value);
}
@Input()
get position(): Function | PositionAlignment | PositionConfig {
return this._getOption('position');
}
set position(value: Function | PositionAlignment | PositionConfig) {
this._setOption('position', value);
}
@Input()
get resizeEnabled(): boolean {
return this._getOption('resizeEnabled');
}
set resizeEnabled(value: boolean) {
this._setOption('resizeEnabled', value);
}
@Input()
get restorePosition(): boolean {
return this._getOption('restorePosition');
}
set restorePosition(value: boolean) {
this._setOption('restorePosition', value);
}
@Input()
get rtlEnabled(): boolean {
return this._getOption('rtlEnabled');
}
set rtlEnabled(value: boolean) {
this._setOption('rtlEnabled', value);
}
@Input()
get shading(): boolean {
return this._getOption('shading');
}
set shading(value: boolean) {
this._setOption('shading', value);
}
@Input()
get shadingColor(): string {
return this._getOption('shadingColor');
}
set shadingColor(value: string) {
this._setOption('shadingColor', value);
}
@Input()
get showCloseButton(): boolean {
return this._getOption('showCloseButton');
}
set showCloseButton(value: boolean) {
this._setOption('showCloseButton', value);
}
@Input()
get showTitle(): boolean {
return this._getOption('showTitle');
}
set showTitle(value: boolean) {
this._setOption('showTitle', value);
}
@Input()
get tabFocusLoopEnabled(): boolean {
return this._getOption('tabFocusLoopEnabled');
}
set tabFocusLoopEnabled(value: boolean) {
this._setOption('tabFocusLoopEnabled', value);
}
@Input()
get tabIndex(): number {
return this._getOption('tabIndex');
}
set tabIndex(value: number) {
this._setOption('tabIndex', value);
}
@Input()
get title(): string {
return this._getOption('title');
}
set title(value: string) {
this._setOption('title', value);
}
@Input()
get titleTemplate(): any {
return this._getOption('titleTemplate');
}
set titleTemplate(value: any) {
this._setOption('titleTemplate', value);
}
@Input()
get toolbarItems(): Array<dxPopupToolbarItem> {
return this._getOption('toolbarItems');
}
set toolbarItems(value: Array<dxPopupToolbarItem>) {
this._setOption('toolbarItems', value);
}
@Input()
get visible(): boolean {
return this._getOption('visible');
}
set visible(value: boolean) {
this._setOption('visible', value);
}
@Input()
get width(): number | string {
return this._getOption('width');
}
set width(value: number | string) {
this._setOption('width', value);
}
@Input()
get wrapperAttr(): any {
return this._getOption('wrapperAttr');
}
set wrapperAttr(value: any) {
this._setOption('wrapperAttr', value);
}
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
@Output() heightChange: EventEmitter<number | string>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
@Output() positionChange: EventEmitter<Function | PositionAlignment | PositionConfig>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
@Output() visibleChange: EventEmitter<boolean>;
/**
* This member supports the internal infrastructure and is not intended to be used directly from your code.
*/
@Output() widthChange: EventEmitter<number | string>;
protected get _optionPath() {
return 'dropDownOptions';
}
constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost,
@Host() optionHost: NestedOptionHost) {
super();
this._createEventEmitters([
{ emit: 'heightChange' },
{ emit: 'positionChange' },
{ emit: 'visibleChange' },
{ emit: 'widthChange' }
]);
parentOptionHost.setNestedOption(this);
optionHost.setHost(this, this._fullOptionPath.bind(this));
}
ngOnInit() {
this._addRecreatedComponent();
}
ngOnDestroy() {
this._addRemovedOption(this._getOptionPath());
}
}
@NgModule({
imports: [
DxoAutocompleteDropDownOptionsComponent
],
exports: [
DxoAutocompleteDropDownOptionsComponent
],
})
export class DxoAutocompleteDropDownOptionsModule { }