-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathdashboard-layout.ts
3452 lines (3257 loc) · 148 KB
/
dashboard-layout.ts
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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* eslint-disable @typescript-eslint/no-explicit-any */
import { Component, Property, NotifyPropertyChanges, INotifyPropertyChanged, isUndefined } from '@syncfusion/ej2-base';
import { Collection, Draggable, isNullOrUndefined, DragEventArgs, append, setValue } from '@syncfusion/ej2-base';
import { EmitType, Event, formatUnit, ChildProperty, compile, closest, SanitizeHtmlHelper, getValue } from '@syncfusion/ej2-base';
import { setStyleAttribute as setStyle, addClass, detach, removeClass, EventHandler, Browser, extend } from '@syncfusion/ej2-base';
import { DashboardLayoutModel, PanelModel } from './dashboard-layout-model';
// constant class definitions
const preventSelect: string = 'e-prevent';
const dragging: string = 'e-dragging';
const dragRestrict: string = 'e-drag-restrict';
const drag: string = 'e-drag';
const resize: string = 'e-resize';
const resizeicon: string = 'e-dl-icon';
const responsive: string = 'e-responsive';
const east: string = 'e-east';
const west: string = 'e-west';
const north: string = 'e-north';
const south: string = 'e-south';
const single: string = 'e-single';
const double: string = 'e-double';
const northEast: string = 'e-north-east';
const southEast: string = 'e-south-east';
const northWest: string = 'e-north-west';
const southWest: string = 'e-south-west';
const panel: string = 'e-panel';
const panelContent: string = 'e-panel-content';
const panelContainer: string = 'e-panel-container';
const disable: string = 'e-disabled';
const header: string = 'e-panel-header';
const panelTransition: string = 'e-panel-transition';
/**
* Defines the panel of the DashboardLayout component.
*/
export class Panel extends ChildProperty<Panel> {
/**
* Defines the id of the panel.
*
* @default ''
*/
@Property('')
public id: string;
/**
* Defines the CSS class name that can be appended with each panel element.
*
* @default ''
*/
@Property('')
public cssClass: string;
/**
* Defines the template value that should be displayed as the panel's header.
*
* @aspType string
*/
@Property('')
public header: string | HTMLElement | Function;
/**
* Defines the template value that should be displayed as the panel's content.
*
* @aspType string
*/
@Property('')
public content: string | HTMLElement | Function;
/**
* Defines whether to the panel should be enabled or not.
*
* @default true
*/
@Property(true)
public enabled: boolean;
/**
* Defines a row value where the panel should be placed.
*
* @default 0
* @aspType int
*/
@Property(0)
public row: number;
/**
* Defines the column value where the panel to be placed.
*
* @default 0
* @aspType int
*/
@Property(0)
public col: number;
/**
* Specifies the width of the panel in the layout in cells count.
*
* @default 1
*/
@Property(1)
public sizeX: number;
/**
* Specifies the height of the panel in the layout in cells count.
*
* @default 1
*/
@Property(1)
public sizeY: number;
/**
* Specifies the minimum height of the panel in cells count.
*
* @default 1
*/
@Property(1)
public minSizeY: number;
/**
* Specifies the minimum width of the panel in cells count.
*
* @default 1
*/
@Property(1)
public minSizeX: number;
/**
* Specifies the maximum height of the panel in cells count.
*
* @default null
* @aspType int
*
*/
@Property(null)
public maxSizeY: number;
/**
* Specifies the maximum width of the panel in cells count.
*
* @default null
* @aspType int
*/
@Property(null)
public maxSizeX: number;
/**
* Specifies the z-index of the panel
*
* @default 1000
* @aspType double
*/
@Property(1000)
public zIndex: number;
}
/**
* The DashboardLayout is a grid structured layout control, that helps to create a dashboard with panels.
* Panels hold the UI components or data to be visualized with flexible options like resize, reorder, drag-n-drop, remove and add,
* that allows users to easily place the panels at a desired position within the grid layout.
* ```html
* <div id="default-layout">
* ```
* ```typescript
* <script>
* let dashBoardObject : DashboardLayout = new DashboardLayout();
* dashBoardObject.appendTo('#default-layout');
* </script>
* ```
*/
@NotifyPropertyChanges
export class DashboardLayout extends Component<HTMLElement> implements INotifyPropertyChanged {
protected panelCollection: HTMLElement[];
protected checkCollision: HTMLElement[];
protected mainElement: HTMLElement;
protected rows: number = 1;
protected dragobj: Draggable;
protected dragStartArgs: DragStartArgs;
protected dragStopEventArgs: DragStopArgs;
protected draggedEventArgs: DraggedEventArgs;
protected updatedRows: number;
protected tempObject: DashboardLayout;
protected sortedArray: HTMLElement[][];
protected cloneArray: HTMLElement[][];
protected panelID: number = 0;
protected movePanelCalled: boolean = false;
protected resizeCalled: boolean = false;
protected gridPanelCollection: PanelModel[];
protected overlapElement: HTMLElement[];
protected shouldRestrict: boolean;
protected shouldSubRestrict: boolean;
protected overlapElementClone: HTMLElement[];
protected overlapSubElementClone: HTMLElement[];
protected dragCollection: Draggable[];
protected iterationValue: number;
protected shadowEle: HTMLElement;
protected elementRef: {
top: string;
left: string;
height: string;
width: string;
};
protected allItems: HTMLElement[];
protected dimensions: (string | number)[];
protected oldRowCol: {
[key: string]: {
row: number,
col: number
};
};
protected collisionChecker: {
[key: string]: {
ele: HTMLElement,
row: number,
srcEle: HTMLElement
};
};
protected availableClasses: string[];
protected addPanelCalled: boolean;
protected isSubValue: boolean;
protected direction: number;
protected directionRow: number;
protected lastMouseX: number;
protected lastMouseY: number;
protected elementX: number;
protected elementY: number;
protected elementWidth: number;
protected elementHeight: number;
protected previousRow: number;
protected originalWidth: number;
protected originalHeight: number;
protected handleClass: string;
protected mOffX: number = 0;
protected mOffY: number = 0;
protected maxTop: number = 9999;
protected maxRows: number = 100;
protected maxLeft: number;
protected mouseX: number = 0;
protected mouseY: number = 0;
protected minTop: number = 0;
protected minLeft: number = 0;
protected moveTarget: HTMLElement;
protected upTarget: HTMLElement;
protected downTarget: HTMLElement;
protected leftAdjustable: boolean;
protected rightAdjustable: boolean;
protected topAdjustable: boolean;
protected restrictDynamicUpdate: boolean;
protected spacedColumnValue: number;
protected checkingElement: HTMLElement;
protected panelContent: HTMLElement;
protected panelHeaderElement: HTMLElement;
protected panelBody: HTMLElement;
protected startRow: number;
protected startCol: number;
protected maxColumnValue: number;
protected checkColumnValue: number;
protected spacedRowValue: number;
protected cellSize: number[];
protected table: HTMLElement;
protected cloneObject: {
[key: string]: {
row: number,
col: number
};
};
private panelsInitialModel: PanelModel[];
protected isRenderComplete: boolean;
protected isMouseUpBound: boolean;
protected isMouseMoveBound: boolean;
protected contentTemplateChild: HTMLElement[];
private isInlineRendering: boolean = false;
private removeAllCalled: boolean = false;
// to check whether removePanel is executed in mobile device
private isPanelRemoved: boolean = false;
// to maintain sizeY in mobile device
private panelsSizeY: number = 0;
private resizeHeight: boolean = false;
private refreshListener: Function;
private eventVar: boolean = false;
/**
* If allowDragging is set to true, then the DashboardLayout allows you to drag and reorder the panels.
*
* @default true
*/
@Property(true)
public allowDragging: boolean;
/**
* If allowResizing is set to true, then the DashboardLayout allows you to resize the panels.
*
* @default false
*/
@Property(false)
public allowResizing: boolean;
/**
* If pushing is set to true, then the DashboardLayout allow to push the panels when panels collide
* while dragging or resizing the panels.
*
* @default true
* @private
*/
@Property(true)
private allowPushing: boolean;
/**
* Defines whether to allow the cross-scripting site or not.
*
* @default true
*/
@Property(true)
public enableHtmlSanitizer: boolean;
/**
* If allowFloating is set to true, then the DashboardLayout automatically move the panels upwards to fill the empty available
* cells while dragging or resizing the panels.
*
* @default true
*/
@Property(true)
public allowFloating: boolean;
/**
* Defines the cell aspect ratio of the panel.
*
* @default 1
*/
@Property(1)
public cellAspectRatio: number;
/**
* Defines the spacing between the panels.
*
* @default [5,5]
*/
@Property([5, 5])
public cellSpacing: number[];
/**
* Defines the number of columns to be created in the DashboardLayout.
*
* @default 1
*/
@Property(1)
public columns: number;
/**
* Enables or disables the grid lines for the Dashboard Layout panels.
*
* @default false
*/
@Property(false)
public showGridLines: boolean;
/**
* Defines the draggable handle selector which will act as dragging handler for the panels.
*
* @default null
*/
@Property(null)
public draggableHandle: string;
/**
* Locale property.
* This is not a dashboard layout property.
*
* @default 'en-US'
* @private
*/
@Property('en-US')
public locale: string;
/**
* Defines the media query value where the dashboardlayout becomes stacked layout when the resolution meets.
*
* @default 'max-width:600px'
*/
@Property('max-width: 600px')
public mediaQuery: string;
/**
*
* Defines the panels property of the DashboardLayout component.
*
* @default null
*/
@Collection<PanelModel>([], Panel)
public panels: PanelModel[];
/**
* Defines the resizing handles directions used for resizing the panels.
*
* @default 'e-south-east'
*
*/
@Property(['e-south-east'])
public resizableHandles: string[];
/**
* Triggers whenever the panels positions are changed.
*
* @event 'object'
*/
@Event()
public change: EmitType<ChangeEventArgs>;
/**
* Triggers when a panel is about to drag.
*
* @event 'object'
*/
@Event()
public dragStart: EmitType<DragStartArgs>;
/**
* Triggers while a panel is dragged continuously.
*
* @event 'object'
*/
@Event()
public drag: EmitType<DraggedEventArgs>;
/**
* Triggers when a dragged panel is dropped.
*
* @event 'object'
*/
@Event()
public dragStop: EmitType<DragStopArgs>;
/**
* Triggers when a panel is about to resize.
*
* @event 'object'
*/
@Event()
public resizeStart: EmitType<ResizeArgs>;
/**
* Triggers when a panel is being resized continuously.
*
* @event 'object'
*/
@Event()
public resize: EmitType<ResizeArgs>;
/**
* Triggers when a panel resize ends.
*
* @event 'object'
*/
@Event()
public resizeStop: EmitType<ResizeArgs>;
/**
* Triggers when Dashboard Layout is created.
*
* @event 'object'
*/
@Event()
public created: EmitType<Object>;
/**
* Triggers when Dashboard Layout is destroyed.
*
* @event 'object'
*/
@Event()
public destroyed: EmitType<Object>;
/**
* Initialize the event handler
*
* @private
*/
protected preRender(): void {
this.panelCollection = [];
this.sortedArray = [];
this.gridPanelCollection = [];
this.overlapElement = [];
this.overlapElementClone = [];
this.overlapSubElementClone = [];
this.collisionChecker = {};
this.dragCollection = [];
this.elementRef = { top: '', left: '', height: '', width: '' };
this.dimensions = [];
this.allItems = [];
this.oldRowCol = {};
this.availableClasses = [];
this.setOldRowCol();
this.calculateCellSize();
this.contentTemplateChild = [].slice.call(this.element.children);
}
protected setOldRowCol(): void {
for (let i: number = 0; i < this.panels.length; i++) {
if (!this.panels[i as number].id) {
this.panelPropertyChange(this.panels[i as number], { id: 'layout_' + this.panelID.toString() });
this.panelID = this.panelID + 1;
}
this.oldRowCol[this.panels[i as number].id] = { row: this.panels[i as number].row, col: this.panels[i as number].col };
}
}
protected createPanelElement(cssClass: string[], idValue: string): HTMLElement {
const ele: HTMLElement = <HTMLElement>this.createElement('div');
if (cssClass && cssClass.length > 0) { addClass([ele], cssClass); }
if (idValue) { ele.setAttribute('id', idValue); }
return ele;
}
/**
* To Initialize the control rendering.
*
* @returns void
* @private
*/
protected render(): void {
this.element.setAttribute('role', 'list');
this.initialize();
this.isRenderComplete = true;
if (this.showGridLines && !this.checkMediaQuery()) {
this.initGridLines();
}
this.updateDragArea();
this.renderComplete();
this.renderReactTemplates();
}
private initGridLines(): void {
this.table = document.createElement('table');
const tbody: HTMLElement = document.createElement('tbody');
this.table.classList.add('e-dashboard-gridline-table');
this.table.setAttribute('role', 'presentation');
for (let i: number = 0; i < this.maxRow(); i++) {
const tr: HTMLElement = document.createElement('tr');
for (let j: number = 0; j < this.columns; j++) {
const td: HTMLElement = document.createElement('td');
td.classList.add('e-dashboard-gridline');
this.setAttributes({ value: { row: i.toString(), col: j.toString(), sizeX: '1', sizeY: '1' } }, td);
this.setPanelPosition(td, i, j);
this.setHeightAndWidth(td, { row: i, col: j, sizeX: 1, sizeY: 1 });
tr.appendChild(td);
}
tbody.appendChild(tr);
}
this.table.appendChild(tbody);
this.element.appendChild(this.table);
this.renderReactTemplates();
}
private initialize(): void {
this.updateRowHeight();
if (this.element.childElementCount > 0 && this.element.querySelectorAll('.e-panel').length > 0) {
const panelElements: HTMLElement[] = [];
this.setProperties({ panels: [] }, true);
this.isInlineRendering = true;
for (let i: number = 0; i < this.element.querySelectorAll('.e-panel').length; i++) {
panelElements.push(<HTMLElement>(this.element.querySelectorAll('.e-panel')[i as number]));
}
for (let i: number = 0; i < panelElements.length; i++) {
const panelElement: HTMLElement = <HTMLElement>panelElements[i as number];
if (this.enableRtl) {
addClass([panelElement], 'e-rtl');
}
this.getInlinePanels(panelElement);
this.maxCol();
this.maxRow();
}
for (let i: number = 0; i < this.panels.length; i++) {
const panelElement: HTMLElement = this.element.querySelector('#' + this.panels[i as number].id);
this.setMinMaxValues(this.panels[i as number]);
if (this.maxColumnValue < this.panels[i as number].col ||
this.maxColumnValue < (this.panels[i as number].col + this.panels[i as number].sizeX)) {
const colValue: number = this.maxColumnValue - this.panels[i as number].sizeX;
this.panelPropertyChange(this.panels[i as number], { col: colValue < 0 ? 0 : colValue });
}
this.setXYAttributes(panelElement, this.panels[i as number]);
const panel: HTMLElement = this.renderPanels(panelElement, this.panels[i as number], this.panels[i as number].id, false);
this.panelCollection.push(panel);
this.setHeightAndWidth(panelElement, this.panels[i as number]);
this.tempObject = this;
if (this.mediaQuery && !window.matchMedia('(' + this.mediaQuery + ')').matches) {
this.setPanelPosition(panelElement, this.panels[i as number].row, this.panels[i as number].col);
this.mainElement = panelElement;
this.updatePanelLayout(panelElement, this.panels[i as number]);
this.mainElement = null;
}
this.setClasses([panelElement]);
}
this.updateOldRowColumn();
if (this.checkMediaQuery()) {
this.checkMediaQuerySizing();
}
} else {
this.renderDashBoardCells(this.panels);
}
if (this.allowDragging && (this.mediaQuery ? !window.matchMedia('(' + this.mediaQuery + ')').matches : true)) {
this.enableDraggingContent(this.panelCollection);
}
this.sortedPanel();
this.bindEvents();
this.updatePanels();
this.updateCloneArrayObject();
this.checkColumnValue = this.maxColumnValue;
if (!(this.checkMediaQuery())) {
this.panelResponsiveUpdate();
}
this.setEnableRtl();
}
protected checkMediaQuery(): boolean {
return (this.mediaQuery && window.matchMedia('(' + this.mediaQuery + ')').matches);
}
protected calculateCellSize(): void {
this.cellSize = [];
if ((this.checkMediaQuery())) {
this.cellSize[1] = this.element.parentElement
&& ((this.element.parentElement.offsetWidth)) / this.cellAspectRatio;
} else {
this.cellSize[0] = this.element.parentElement &&
((this.element.parentElement.offsetWidth));
if (!isNullOrUndefined(this.cellSpacing)) {
this.cellSize[0] = this.element.parentElement
&& ((this.element.parentElement.offsetWidth - ((this.maxCol() - 1) * this.cellSpacing[0]))
/ (this.maxCol()));
}
this.cellSize[1] = <number>this.cellSize[0] / this.cellAspectRatio;
}
}
protected maxRow(recheck?: boolean): number {
let maxRow: number = 1;
if (this.rows > 1 && isNullOrUndefined(recheck)) {
maxRow = this.rows;
return maxRow;
}
for (let i: number = 0; i < this.panels.length; i++) {
if (this.panels[i as number].sizeY + this.panels[i as number].row > maxRow) {
maxRow = this.panels[i as number].sizeY + this.panels[i as number].row;
}
}
if (this.panels.length === 0) {
maxRow = this.columns;
}
return maxRow;
}
protected maxCol(): number {
let maxCol: number = 1;
maxCol = this.columns;
this.maxColumnValue = maxCol;
return maxCol;
}
protected updateOldRowColumn(): void {
for (let i: number = 0; i < this.panels.length; i++) {
const id: string = this.panels[i as number].id;
if (this.element.querySelector('[id=\'' + id + '\']')) {
const row: number = parseInt(this.element.querySelector('[id=\'' + id + '\']').getAttribute('data-row'), 10);
const col: number = parseInt(this.element.querySelector('[id=\'' + id + '\']').getAttribute('data-col'), 10);
this.oldRowCol[this.panels[i as number].id] = { row: row, col: col };
} else {
continue;
}
}
}
protected createSubElement(cssClass: string[], idValue: string, className: string): HTMLElement {
const element: HTMLElement = <HTMLElement>this.createElement('div');
if (className) { addClass([element], [className]); }
if (cssClass && cssClass.length > 0) { addClass([element], cssClass); }
if (idValue) { element.setAttribute('id', idValue); }
return element;
}
private templateParser(template: string | Function): Function {
if (template) {
try {
if (typeof template !== 'function' && document.querySelectorAll(template).length) {
return compile(document.querySelector(template).innerHTML.trim());
}
else {
return compile(template);
}
} catch (error) {
const sanitizedValue: string = SanitizeHtmlHelper.sanitize(template as string);
return compile((this.enableHtmlSanitizer && typeof (template) === 'string') ? sanitizedValue : template);
}
}
return undefined;
}
protected renderTemplate(content: string, appendElement: HTMLElement, type: string, isStringTemplate: boolean, prop: string): void {
const templateFn: Function = this.templateParser(content);
const templateElements: HTMLElement[] = [];
if (((<string>content)[0] === '.' || (<string>content)[0] === '#') &&
document.querySelector(<string>content).tagName !== 'SCRIPT') {
const eleVal: HTMLElement = <HTMLElement>document.querySelector(<string>content);
if (!isNullOrUndefined(eleVal)) {
if (eleVal.style.display === 'none') {
eleVal.style.removeProperty('display');
}
if (eleVal.getAttribute('style') === '') {
eleVal.removeAttribute('style');
}
appendElement.appendChild(eleVal);
return;
} else {
content = (content as string).trim();
}
} else {
const compilerFn: HTMLElement[] = templateFn({}, this, prop, type, isStringTemplate, null, appendElement) as HTMLElement[];
if (compilerFn) {
for (const item of compilerFn) {
templateElements.push(item);
}
append([].slice.call(templateElements), appendElement);
}
}
}
protected renderPanels(cellElement: HTMLElement, panelModel: PanelModel, panelId: string, isStringTemplate: boolean): HTMLElement {
addClass([cellElement], [panel, panelTransition]);
cellElement.setAttribute('role', 'listitem');
if (this.allowDragging) {
cellElement.setAttribute('aria-grabbed', 'false');
}
const cssClass: string[] = panelModel.cssClass ? panelModel.cssClass.split(' ') : null;
this.panelContent = cellElement.querySelector('.e-panel-container') ?
cellElement.querySelector('.e-panel-container') :
this.createSubElement(cssClass, cellElement.id + '_content', panelContainer);
cellElement.appendChild(this.panelContent);
if (!panelModel.enabled) { this.disablePanel(cellElement); }
if (panelModel.header) {
const headerTemplateElement: HTMLElement = cellElement.querySelector('.e-panel-header') ?
cellElement.querySelector('.e-panel-header') : this.createSubElement([], cellElement.id + 'template', '');
addClass([headerTemplateElement], [header]);
if (!cellElement.querySelector('.e-panel-header')) {
const id: string = this.element.id + 'HeaderTemplate' + panelId;
this.renderTemplate(<string>panelModel.header, headerTemplateElement, id, isStringTemplate, 'header');
this.panelContent.appendChild(headerTemplateElement);
this.renderReactTemplates();
}
}
if (panelModel.content) {
const cssClass: string[] = panelModel.cssClass ? panelModel.cssClass.split(' ') : null;
this.panelBody = cellElement.querySelector('.e-panel-content') ? cellElement.querySelector('.e-panel-content') :
this.createSubElement(cssClass, cellElement.id + '_body', panelContent);
const headerHeight: string = this.panelContent.querySelector('.e-panel-header') ?
window.getComputedStyle(this.panelContent.querySelector('.e-panel-header')).height : '0px';
const contentHeightValue: string = 'calc( 100% - ' + headerHeight + ')';
setStyle(this.panelBody, { height: contentHeightValue });
if (!cellElement.querySelector('.e-panel-content')) {
const id: string = this.element.id + 'ContentTemplate' + panelId;
this.renderTemplate(<string>panelModel.content, this.panelBody, id, isStringTemplate, 'content');
this.panelContent.appendChild(this.panelBody);
this.renderReactTemplates();
}
}
return cellElement;
}
protected disablePanel(panelElement: HTMLElement): void {
addClass([panelElement], [disable]);
}
protected getInlinePanels(panelElement: HTMLElement): void {
const model: PanelModel = {
sizeX: panelElement.hasAttribute('data-sizex') ? parseInt(panelElement.getAttribute('data-sizex'), 10) : 1,
sizeY: panelElement.hasAttribute('data-sizey') ? parseInt(panelElement.getAttribute('data-sizey'), 10) : 1,
minSizeX: panelElement.hasAttribute('data-minsizex') ? parseInt(panelElement.getAttribute('data-minsizex'), 10) : 1,
minSizeY: panelElement.hasAttribute('data-minsizey') ? parseInt(panelElement.getAttribute('data-minsizey'), 10) : 1,
maxSizeX: panelElement.hasAttribute('data-maxsizex') ? parseInt(panelElement.getAttribute('data-maxsizex'), 10) : null,
maxSizeY: panelElement.hasAttribute('data-maxsizey') ? parseInt(panelElement.getAttribute('data-maxsizey'), 10) : null,
row: panelElement.hasAttribute('data-row') ? parseInt(panelElement.getAttribute('data-row'), 10) : 0,
col: panelElement.hasAttribute('data-col') ? parseInt(panelElement.getAttribute('data-col'), 10) : 0,
id: panelElement.getAttribute('id'),
zIndex: panelElement.hasAttribute('data-zindex') ? parseInt(panelElement.getAttribute('data-zIndex'), 10) : 1000,
header: panelElement.querySelector('.e-panel-header') && '.e-panel-header',
content: panelElement.querySelector('.e-panel-content') && '.e-panel-content'
};
if (!model.id) {
model.id = 'layout_' + this.panelID.toString();
panelElement.setAttribute('id', model.id);
this.panelID = this.panelID + 1;
}
if (isUndefined(model.enabled)) {
model.enabled = true;
}
panelElement.style.zIndex = '' + model.zIndex;
const panelProp: Panel = new Panel((<any>this), 'panels', model, true);
this.panels.push(panelProp);
this.oldRowCol[model.id] = { row: model.row, col: model.col };
}
private resizeEvents(): void {
if (this.allowResizing) {
const panelElements: NodeList = this.element.querySelectorAll('.e-panel .e-panel-container .e-resize');
for (let i: number = 0; i < panelElements.length; i++) {
const eventName: string = (Browser.info.name === 'msie') ? 'mousedown pointerdown' : 'mousedown';
EventHandler.add((<HTMLElement>panelElements[i as number]), eventName, this.downResizeHandler, this);
if (Browser.info.name !== 'msie') {
EventHandler.add((<HTMLElement>panelElements[i as number]), 'touchstart', this.touchDownResizeHandler, this);
}
}
}
}
protected bindEvents(): void {
this.refreshListener = this.refresh.bind(this);
EventHandler.add(<HTMLElement & Window><unknown>window, 'resize', this.refreshListener);
this.resizeEvents();
}
protected downResizeHandler(e: MouseEvent): void {
const el: HTMLElement = (<HTMLElement>closest(<HTMLElement>(<HTMLElement>(e.currentTarget)), '.e-panel'));
for (let i: number = 0; this.panels.length > i; i++) {
if (this.panels[i as number].enabled && this.panels[i as number].id === el.id) {
this.downHandler(e);
this.lastMouseX = e.pageX;
this.lastMouseY = e.pageY;
const moveEventName: string = (Browser.info.name === 'msie') ? 'mousemove pointermove' : 'mousemove';
const upEventName: string = (Browser.info.name === 'msie') ? 'mouseup pointerup' : 'mouseup';
if (!this.isMouseMoveBound) {
EventHandler.add(document, moveEventName, this.moveResizeHandler, this);
this.isMouseMoveBound = true;
}
if (!this.isMouseUpBound) {
EventHandler.add(document, upEventName, this.upResizeHandler, this);
this.isMouseUpBound = true;
}
}
}
}
protected downHandler(e: MouseEvent | TouchEvent): void {
this.resizeCalled = false;
this.panelsInitialModel = this.cloneModels(this.panels);
const el: HTMLElement = (<HTMLElement>closest(<HTMLElement>(<HTMLElement>(e.currentTarget)), '.e-panel'));
const args: ResizeArgs = { event: e, element: el, isInteracted: true };
this.trigger('resizeStart', args);
this.downTarget = (<HTMLElement>e.currentTarget);
this.shadowEle = document.createElement('div');
this.shadowEle.classList.add('e-holder');
addClass([this.element], [preventSelect]);
this.element.appendChild(this.shadowEle);
this.renderReactTemplates();
this.elementX = parseFloat(el.style.left);
this.elementY = parseFloat(el.style.top);
this.elementWidth = el.offsetWidth;
this.elementHeight = el.offsetHeight;
this.originalWidth = this.getCellInstance(el.id).sizeX;
this.originalHeight = this.getCellInstance(el.id).sizeY;
this.previousRow = this.getCellInstance(el.id).row;
}
protected touchDownResizeHandler(e: TouchEvent): void {
this.downHandler(e);
this.lastMouseX = e.changedTouches[0].pageX;
this.lastMouseY = e.changedTouches[0].pageY;
if (!this.isMouseMoveBound) {
EventHandler.add(document, 'touchmove', this.touchMoveResizeHandler, this);
this.isMouseMoveBound = true;
}
if (!this.isMouseUpBound) {
EventHandler.add(document, 'touchend', this.upResizeHandler, this);
this.isMouseUpBound = true;
}
}
private getCellSize(): number[] {
return [this.cellSize[0], this.cellSize[1]];
}
protected updateMaxTopLeft(e: MouseEvent | TouchEvent): void {
this.moveTarget = this.downTarget;
const el: HTMLElement = (<HTMLElement>closest(<HTMLElement>(this.moveTarget), '.e-panel'));
const args: ResizeArgs = { event: e, element: el, isInteracted: true };
this.trigger('resize', args);
}
protected updateResizeElement(el: HTMLElement): void {
this.maxLeft = this.element.offsetWidth - 1;
this.maxTop = <number>this.cellSize[1] * this.maxRows - 1;
removeClass([el], 'e-panel-transition');
addClass([el], [dragging]);
const handleArray: string[] = [east, west, north, south, southEast, northEast, northWest, southWest];
for (let i: number = 0; i < (<HTMLElement>this.moveTarget).classList.length; i++) {
if (handleArray.indexOf((<HTMLElement>this.moveTarget).classList[i as number]) !== -1) {
this.handleClass = ((<HTMLElement>this.moveTarget).classList[i as number]);
}
}
}
protected moveResizeHandler(e: MouseEvent): void {
this.updateMaxTopLeft(e);
const el: HTMLElement = (<HTMLElement>closest(<HTMLElement>(this.moveTarget), '.e-panel'));
if (this.lastMouseX === e.pageX || this.lastMouseY === e.pageY) {
return;
}
this.updateResizeElement(el);
const panelModel: PanelModel = this.getCellInstance(el.getAttribute('id'));
this.mouseX = e.pageX;
this.mouseY = e.pageY;
const diffY: number = this.mouseY - this.lastMouseY + this.mOffY;
const diffX: number = this.mouseX - this.lastMouseX + this.mOffX;
this.mOffX = this.mOffY = 0;
this.lastMouseY = this.mouseY;
this.lastMouseX = this.mouseX;
this.resizingPanel(el, panelModel, diffX, diffY);
}
protected touchMoveResizeHandler(e: TouchEvent): void {
this.updateMaxTopLeft(e);
const el: HTMLElement = (<HTMLElement>closest(<HTMLElement>(this.moveTarget), '.e-panel'));
if (this.lastMouseX === e.changedTouches[0].pageX || this.lastMouseY === e.changedTouches[0].pageY) {
return;
}
this.updateResizeElement(el);
const panelModel: PanelModel = this.getCellInstance(el.getAttribute('id'));
this.mouseX = e.changedTouches[0].pageX;
this.mouseY = e.changedTouches[0].pageY;
const diffX: number = this.mouseX - this.lastMouseX + this.mOffX;
const diffY: number = this.mouseY - this.lastMouseY + this.mOffY;
this.mOffX = this.mOffY = 0;
this.lastMouseX = this.mouseX;
this.lastMouseY = this.mouseY;
this.resizingPanel(el, panelModel, diffX, diffY);
}
/* istanbul ignore next */
protected resizingPanel(el: HTMLElement, panelModel: PanelModel, currentX: number, currentY: number): void {
let oldSizeX: number = this.getCellInstance(el.id).sizeX;
let oldSizeY: number = this.getCellInstance(el.id).sizeY;
const dY: number = currentY;
const dX: number = currentX;
if (this.handleClass.indexOf('north') >= 0) {
if (this.elementHeight - dY < this.getMinHeight(panelModel)) {
currentY = this.elementHeight - this.getMinHeight(panelModel);
this.mOffY = dY - currentY;
} else if (panelModel.maxSizeY && this.elementHeight - dY > this.getMaxHeight(panelModel)) {
currentY = this.elementHeight - this.getMaxHeight(panelModel);
this.mOffY = dY - currentY;
} else if (this.elementY + dY < this.minTop) {
currentY = this.minTop - this.elementY;
this.mOffY = dY - currentY;
}
this.elementY += currentY;
this.elementHeight -= currentY;
}
if (this.handleClass.indexOf('south') >= 0) {
if (this.elementHeight + dY < this.getMinHeight(panelModel)) {
currentY = this.getMinHeight(panelModel) - this.elementHeight;
this.mOffY = dY - currentY;
} else if (panelModel.maxSizeY && this.elementHeight + dY > this.getMaxHeight(panelModel)) {
currentY = this.getMaxHeight(panelModel) - this.elementHeight;
this.mOffY = dY - currentY;
}
this.elementHeight += currentY;
}
if (this.handleClass.indexOf('west') >= 0) {
if (this.elementWidth - dX < this.getMinWidth(panelModel)) {
currentX = this.elementWidth - this.getMinWidth(panelModel);
this.mOffX = dX - currentX;
} else if (panelModel.maxSizeX && this.elementWidth - dX > this.getMaxWidth(panelModel)) {
currentX = this.elementWidth - this.getMaxWidth(panelModel);
this.mOffX = dX - currentX;
} else if (this.elementX + dX < this.minLeft) {
currentX = this.minLeft - this.elementX;
this.mOffX = dX - currentX;
}
this.elementX += currentX;
this.elementWidth -= currentX;
}
if (this.handleClass.indexOf('east') >= 0) {
if (this.elementWidth + dX < this.getMinWidth(panelModel)) {
currentX = this.getMinWidth(panelModel) - this.elementWidth;
this.mOffX = dX - currentX;
} else if (panelModel.maxSizeX && this.elementWidth + dX > this.getMaxWidth(panelModel)) {
currentX = this.getMaxWidth(panelModel) - this.elementWidth;
this.mOffX = dX - currentX;
}
const initialWidth: number = this.elementWidth;
this.elementWidth += currentX;
const newSizeX: number = this.pixelsToColumns(this.elementWidth - (panelModel.sizeX) * this.cellSpacing[1], true);
if (this.columns < panelModel.col + newSizeX) {