-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathColumnLayoutSpec.js
More file actions
1248 lines (1010 loc) · 46.1 KB
/
ColumnLayoutSpec.js
File metadata and controls
1248 lines (1010 loc) · 46.1 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
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
/*
* Copyright (c) 2019-2020 Future Internet Consulting and Development Solutions S.L.
*
* This file is part of Wirecloud Platform.
*
* Wirecloud Platform is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Wirecloud is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
* License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Wirecloud Platform. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
/* globals StyledElements, Wirecloud */
(function (ns, utils) {
"use strict";
describe("ColumnLayout", () => {
describe("new ColumnLayout(dragboard, columns, cellHeight, verticalMargin, horizontalMargin, scrollbarSpace)", () => {
it("should work by providing options", () => {
const dragboard = {};
const layout = new ns.ColumnLayout(
dragboard,
20,
13,
4,
4,
10
);
// Check initial values
expect(layout.columns).toBe(20);
expect(layout.rows).toBe(0);
expect(layout.topMargin).toBe(2);
expect(layout.bottomMargin).toBe(2);
expect(layout.leftMargin).toBe(2);
expect(layout.rightMargin).toBe(2);
});
it("should work by providing odd margins", () => {
const dragboard = {};
const layout = new ns.ColumnLayout(
dragboard,
20,
13,
5,
5,
10
);
// Check initial values
expect(layout.columns).toBe(20);
expect(layout.rows).toBe(0);
expect(layout.topMargin).toBe(2);
expect(layout.bottomMargin).toBe(3);
expect(layout.leftMargin).toBe(2);
expect(layout.rightMargin).toBe(3);
});
});
describe("initialize()", () => {
let layout;
const createWidgetMock = function createWidgetMock(data, insert) {
return {
id: data.id,
position: {
x: data.x,
y: data.y
},
shape: {
width: data.width,
height: data.height
},
addEventListener: jasmine.createSpy("addEventListener"),
repaint: jasmine.createSpy("repaint"),
setPosition: jasmine.createSpy('setPosition').and.callFake(function (newposition) {Object.assign(this.position, newposition);}),
setShape: jasmine.createSpy('setShape').and.callFake(function (newshape) {Object.assign(this.shape, newshape);})
};
};
beforeEach(() => {
const dragboard = {
update: jasmine.createSpy("update")
};
layout = new ns.ColumnLayout(
dragboard,
4,
13,
4,
4,
10
);
});
it("should work on empty layouts", () => {
expect(layout.initialize()).toBe(false);
});
it("should not save widget positions if is not needed to move widgets", () => {
const widget = createWidgetMock({
id: "1", x: 0, y: 0, width: 1, height: 1
});
layout.addWidget(widget);
// Check initial values
expect(layout.initialize()).toBe(false);
});
it("should shrink widgets that are too wide", () => {
const widget1 = createWidgetMock({
id: "1", x: 0, y: 0, width: 5, height: 1
});
layout.addWidget(widget1);
const widget2 = createWidgetMock({
id: "2", x: 1, y: 1, width: 5, height: 1
});
layout.addWidget(widget2);
// Check initial values
expect(layout.initialize()).toBe(true);
expect(widget1.setShape).toHaveBeenCalledWith({width: 4});
expect(widget2.setShape).toHaveBeenCalledWith({width: 4});
expect(widget2.setPosition).toHaveBeenCalledWith({relx: true, x: 0, rely: true, y: 1});
});
it("should move colliding widgets", () => {
const widget1 = createWidgetMock({
id: "1", x: 0, y: 0, width: 3, height: 2
});
layout.addWidget(widget1);
const widget2 = createWidgetMock({
id: "2", x: 1, y: 1, width: 2, height: 1
});
layout.addWidget(widget2);
// Check initial values
expect(layout.initialize()).toBe(true);
});
});
describe("initializeMove(widget, draggable)", () => {
const return_this = function () {return this;};
const draggable = {setXOffset: return_this, setYOffset: return_this};
let layout;
const createWidgetMock = function createWidgetMock(data) {
return new Wirecloud.ui.WidgetView(data);
};
beforeEach(() => {
spyOn(Wirecloud.ui, "WidgetView").and.callFake(function (data) {
this.id = data.id;
this.position = {
x: data.x,
y: data.y
};
this.shape = {
width: data.width,
height: data.height
};
this.addEventListener = jasmine.createSpy("addEventListener");
this.repaint = jasmine.createSpy("repaint");
this.setPosition = jasmine.createSpy('setPosition').and.callFake(function (newposition) {this.position = Object.assign({}, this.position, newposition);});
this.setShape = jasmine.createSpy('setShape').and.callFake(function (newshape) {Object.assign(this.shape, newshape);});
this.wrapperElement = document.createElement('div');
this.tab = {
wrapperElement: document.createElement('div')
};
this.tab.wrapperElement.appendChild(this.wrapperElement);
});
const dragboard = {
_notifyWindowResizeEvent: jasmine.createSpy("_notifyWindowResizeEvent"),
update: jasmine.createSpy("update"),
getWidth: jasmine.createSpy("getWidth").and.returnValue(800)
};
layout = new ns.ColumnLayout(dragboard, 4, 13, 4, 4, 10);
spyOn(layout, "updatePosition");
layout.initialize();
});
it("should throw an exception if widget is not a widget instance", () => {
expect(() => {
layout.initializeMove();
}).toThrowError(TypeError);
expect(() => {
layout.initializeMove("patata");
}).toThrowError(TypeError);
});
it("should ignore not initialized movements", () => {
layout.moveTemporally(1, 0);
});
it("should ignore not initialized movement cancelations", () => {
layout.cancelMove();
});
it("should ignore not initialized movement cancelations", () => {
layout.acceptMove();
});
it("should cancel current move operation", () => {
const widget = createWidgetMock({id: "1", x: 0, y: 0, width: 1, height: 1});
layout.addWidget(widget);
layout.initializeMove(widget, draggable);
spyOn(layout, "cancelMove");
layout.initializeMove(widget, draggable);
expect(layout.cancelMove).toHaveBeenCalledWith();
});
it("should work on empty layouts (no real move)", () => {
const widget = createWidgetMock({id: "1", x: 0, y: 0, width: 1, height: 1});
layout.addWidget(widget);
layout.initializeMove(widget, draggable);
layout.acceptMove();
});
it("should work on empty layouts (basic move)", () => {
const widget = createWidgetMock({id: "1", x: 0, y: 0, width: 3, height: 1});
layout.addWidget(widget);
layout.initializeMove(widget, draggable);
layout.moveTemporally(200, 0);
layout.moveTemporally(420, 0);
layout.acceptMove();
expect(widget.position).toEqual({x: 1, y: 0});
expect(layout.dragboard.update).toHaveBeenCalledWith();
});
it("should work on empty layouts (move outside layout - right side)", () => {
const widget = createWidgetMock({id: "1", x: 0, y: 0, width: 2, height: 1});
layout.addWidget(widget);
layout.initializeMove(widget, draggable);
layout.moveTemporally(1000, 0);
layout.acceptMove();
expect(widget.position).toEqual({x: 2, y: 0});
expect(layout.dragboard.update).toHaveBeenCalledWith();
});
it("should work on empty layouts (move outside layout - top left side)", () => {
const width = 700 * layout.MAX_HLU / 800;
const widget = createWidgetMock({id: "1", x: 400, y: 600, width: width, height: 1});
layout.addWidget(widget);
layout.initializeMove(widget, draggable);
layout.moveTemporally(-100, -100);
layout.acceptMove();
expect(widget.position).toEqual({x: 0, y: 0});
expect(layout.dragboard.update).toHaveBeenCalledWith();
});
it("should work on empty layouts (move between tabs)", () => {
const widget = createWidgetMock({id: "1", x: 0, y: 0, width: 1, height: 1});
layout.addWidget(widget);
layout.initializeMove(widget, draggable);
layout.disableCursor();
layout.moveTemporally(1, 0);
layout.acceptMove();
});
it("should work on empty layouts (cancel move)", () => {
const widget = createWidgetMock({id: "1", x: 0, y: 0, width: 1, height: 1});
layout.addWidget(widget);
layout.initializeMove(widget, draggable);
layout.moveTemporally(1, 0);
layout.cancelMove();
});
});
describe("adaptColumnOffset(size[, width])", () => {
it("should return 0 LU as minimum", () => {
const layout = new ns.ColumnLayout({leftMargin: 4}, 4, 13, 4, 4, 10);
layout.getColumnOffset = jasmine.createSpy("getColumnOffset").and.returnValue(0);
const value = layout.adaptColumnOffset(0);
expect(value.inPixels).toBe(0);
expect(value.inLU).toBe(0);
});
it("should take into account left margin", () => {
const layout = new ns.ColumnLayout({leftMargin: 4}, 4, 13, 4, 4, 10);
layout.getWidth = jasmine.createSpy("getWidth").and.returnValue(80);
layout.getColumnOffset = jasmine.createSpy("getColumnOffset").and.returnValue(0);
layout.fromPixelsToHCells = jasmine.createSpy("fromPixelsToHCells").and.returnValue(0);
const value = layout.adaptColumnOffset("2px");
expect(layout.fromPixelsToHCells).toHaveBeenCalledWith(0, undefined);
expect(value.inPixels).toBe(0);
expect(value.inLU).toBe(0);
});
it("should handle pixels offsets", () => {
const layout = new ns.ColumnLayout({leftMargin: 4}, 4, 13, 4, 4, 10);
layout.getWidth = jasmine.createSpy("getWidth").and.returnValue(80);
layout.getColumnOffset = jasmine.createSpy("getColumnOffset").and.returnValue(200);
layout.fromPixelsToHCells = jasmine.createSpy("fromPixelsToHCells").and.returnValue(1);
const value = layout.adaptColumnOffset("204px");
expect(layout.fromPixelsToHCells).toHaveBeenCalledWith(200, undefined);
expect(value.inPixels).toBe(200);
expect(value.inLU).toBe(1);
});
it("should support percentages", () => {
const layout = new ns.ColumnLayout({leftMargin: 4}, 4, 13, 4, 4, 10);
layout.getWidth = jasmine.createSpy("getWidth").and.returnValue(40);
layout.getColumnOffset = jasmine.createSpy("getColumnOffset").and.returnValue(60);
layout.fromPixelsToHCells = jasmine.createSpy("fromPixelsToHCells").and.returnValue(3);
const value = layout.adaptColumnOffset("75%");
expect(value.inPixels).toBe(60);
expect(value.inLU).toBe(3);
});
});
describe("adaptRowOffset(value)", () => {
it("should return 0 LU as minimum", () => {
const layout = new ns.ColumnLayout({topMargin: 4}, 4, 13, 4, 4, 10);
layout.getHeight = jasmine.createSpy("getHeight").and.returnValue(40);
layout.getRowOffset = jasmine.createSpy("getRowOffset").and.returnValue(0);
const value = layout.adaptRowOffset("2px");
expect(value.inPixels).toBe(0);
expect(value.inLU).toBe(0);
});
it("should manage cell values", () => {
const layout = new ns.ColumnLayout({}, 4, 13, 4, 4, 10);
layout.getHeight = jasmine.createSpy("getHeight").and.returnValue(40);
layout.getRowOffset = jasmine.createSpy("getRowOffset").and.returnValue(0);
const value = layout.adaptRowOffset(0);
expect(value.inPixels).toBe(0);
expect(value.inLU).toBe(0);
});
it("should floor cells", () => {
const layout = new ns.ColumnLayout({}, 4, 20, 4, 4, 10);
layout.getHeight = jasmine.createSpy("getHeight").and.returnValue(80);
layout.getRowOffset = jasmine.createSpy("getRowOffset").and.returnValue(60);
layout.fromPixelsToVCells = jasmine.createSpy("fromPixelsToVCells").and.returnValue(3.2);
const value = layout.adaptRowOffset("65px");
expect(value.inPixels).toBe(60);
expect(value.inLU).toBe(3);
});
it("should ceil cells", () => {
const layout = new ns.ColumnLayout({}, 4, 13, 4, 4, 10);
layout.getHeight = jasmine.createSpy("getHeight").and.returnValue(80);
layout.getRowOffset = jasmine.createSpy("getRowOffset").and.returnValue(60);
layout.fromPixelsToVCells = jasmine.createSpy("fromPixelsToVCells").and.returnValue(2.5);
const value = layout.adaptRowOffset("55px");
expect(value.inPixels).toBe(60);
expect(value.inLU).toBe(3);
});
it("should support percentages", () => {
const layout = new ns.ColumnLayout({}, 4, 13, 4, 4, 10);
layout.getHeight = jasmine.createSpy("getHeight").and.returnValue(80);
layout.getRowOffset = jasmine.createSpy("getRowOffset").and.returnValue(60);
layout.fromPixelsToVCells = jasmine.createSpy("fromPixelsToVCells").and.returnValue(3);
const value = layout.adaptRowOffset("75%");
expect(value.inPixels).toBe(60);
expect(value.inLU).toBe(3);
});
});
describe("addWidget(widget, affectsDragboard)", () => {
let dragboard, layout;
const createWidgetMock = function createWidgetMock(data, insert) {
return {
id: data.id,
position: {
x: data.x,
y: data.y
},
shape: {
width: data.width,
height: data.height
},
addEventListener: jasmine.createSpy("addEventListener"),
repaint: jasmine.createSpy("repaint"),
setPosition: jasmine.createSpy('setPosition').and.callFake(function (newposition) {Object.assign(this.position, newposition);}),
setShape: jasmine.createSpy('setShape').and.callFake(function (newshape) {Object.assign(this.shape, newshape);})
};
};
beforeEach(() => {
layout = new ns.ColumnLayout(dragboard, 4, 10, 4, 4, 10);
layout.initialized = true;
spyOn(Wirecloud.ui.DragboardLayout.prototype, "addWidget");
});
it("should add widgets", () => {
const widget = createWidgetMock({id: "1", x: 0, y: 0, width: 1, height: 1});
expect(layout.addWidget(widget, true)).toEqual(new Set());
expect(Wirecloud.ui.DragboardLayout.prototype.addWidget).toHaveBeenCalledWith(widget, true);
expect(layout.matrix[0][0]).toBe(widget);
});
it("should shrink widgets that are too wide", () => {
const widget = createWidgetMock({id: "1", x: 0, y: 0, width: 5, height: 1});
expect(layout.addWidget(widget, true)).toEqual(new Set());
expect(Wirecloud.ui.DragboardLayout.prototype.addWidget).toHaveBeenCalledWith(widget, true);
expect(widget.setShape).toHaveBeenCalledWith({width: 4});
expect(layout.matrix[0][0]).toBe(widget);
});
it("should make widgets fit current column scheme", () => {
const widget = createWidgetMock({id: "1", x: 1, y: 0, width: 4, height: 1});
layout.addWidget(widget, true);
expect(Wirecloud.ui.DragboardLayout.prototype.addWidget).toHaveBeenCalledWith(widget, true);
expect(widget.setPosition).toHaveBeenCalledWith(new Wirecloud.DragboardPosition(0, 0));
});
});
describe("disableCursor()", () => {
it("should work when the cursor is already disabled", () => {
const layout = new ns.ColumnLayout({}, 20, 13, 4, 4, 10);
layout.disableCursor();
});
});
describe("fromPixelsToHCells(pixels)", () => {
let dragboard, layout;
beforeEach(() => {
dragboard = {};
layout = new ns.ColumnLayout(
dragboard,
20,
13,
4,
4,
10
);
spyOn(layout, "fromHCellsToPixels").and.returnValue(10);
});
it("should work with integer cells", () => {
expect(layout.fromPixelsToHCells(20)).toBe(2);
});
it("should truncate cell values", () => {
layout.fromHCellsToPixels.and.returnValues(83.5, 417.5);
expect(layout.fromPixelsToHCells(418)).toBe(5);
});
it("should use zero as minimum value", () => {
expect(layout.fromPixelsToHCells(-1)).toBe(0);
});
});
describe("fromPixelsToVCells(pixels)", () => {
let dragboard, layout;
beforeEach(() => {
dragboard = {};
layout = new ns.ColumnLayout(
dragboard,
20,
13,
4,
4,
10
);
});
it("should return a value", () => {
expect(layout.fromPixelsToVCells(26)).toBe(2);
});
it("should check minimum value is zero", () => {
expect(layout.fromPixelsToVCells(-1)).toBe(0);
});
});
describe("getCellAt(x, y)", () => {
it("should be able to return origin position", () => {
const layout = new ns.ColumnLayout({}, 4, 10, 4, 4, 10);
layout.getWidth = jasmine.createSpy("getWidth").and.returnValue(40);
expect(layout.getCellAt(0, 0)).toEqual(new Wirecloud.DragboardPosition(0, 0));
});
it("should be able to return intermediate positions", () => {
const layout = new ns.ColumnLayout({}, 4, 10, 4, 4, 10);
layout.getWidth = jasmine.createSpy("getWidth").and.returnValue(40);
expect(layout.getCellAt(38, 12)).toEqual(new Wirecloud.DragboardPosition(3, 1));
});
});
describe("getHeightInPixels(cells)", () => {
it("should work", () => {
const dragboard = {};
const layout = new ns.ColumnLayout(
dragboard,
20,
13,
4,
4,
10
);
expect(layout.getHeightInPixels(2)).toBe(26 - 4);
});
});
describe("getColumnOffset(cells[, width, css])", () => {
it("should work", () => {
const dragboard = {
getWidth: jasmine.createSpy("getWidth").and.returnValue(800),
leftMargin: 4
};
const layout = new ns.ColumnLayout(
dragboard,
4,
13,
4,
4,
10
);
expect(layout.getColumnOffset({x: 2})).toBe(400 + 4 + 2);
expect(layout.getColumnOffset({x: 2}, undefined, true)).toBe("406px");
});
});
describe("getRowOffset(value[, css])", () => {
it("should work", () => {
const dragboard = {
topMargin: 4
};
const layout = new ns.ColumnLayout(
dragboard,
4,
13,
4,
4,
10
);
expect(layout.getRowOffset({y: 2})).toBe((2 * 13) + 4 + 2);
expect(layout.getRowOffset({y: 2}, true)).toBe("32px");
});
});
describe("insertAt(widget, x, y, matrix)", () => {
let layout;
const createWidgetMock = function createWidgetMock(data, insert) {
const widget = {
position: {
x: data.x,
y: data.y
},
shape: {
width: data.width,
height: data.height
},
setPosition: jasmine.createSpy('setPosition').and.callFake(function (newposition) {this.position = newposition;})
};
if (insert) {
layout._reserveSpace2(
layout.matrix,
widget,
widget.position.x, widget.position.y,
widget.shape.width, widget.shape.height
);
}
return widget;
};
beforeEach(() => {
const dragboard = {
update: jasmine.createSpy("update")
};
layout = new ns.ColumnLayout(
dragboard,
4,
13,
4,
4,
10
);
});
it("should support adding widgets on free space", () => {
const widget = createWidgetMock({
x: 0,
y: 0,
width: 2,
height: 2
}, false);
layout._insertAt(widget, 0, 0, layout._buffers.base);
expect(layout.matrix[0][0]).toBe(widget);
expect(layout.matrix[1][1]).toBe(widget);
});
it("should move affected widgets", () => {
const widget1 = createWidgetMock({
x: 1,
y: 1,
width: 2,
height: 2
}, true);
const widget2 = createWidgetMock({
x: 0,
y: 0,
width: 2,
height: 2
}, false);
layout._insertAt(widget2, 0, 0, layout._buffers.base);
expect(layout.matrix[0][0]).toBe(widget2);
expect(layout.matrix[1][1]).toBe(widget2);
expect(layout.matrix[1][2]).toBe(widget1);
});
});
describe("moveSpaceDown(buffer, widget, offset)", () => {
let layout;
const createWidgetMock = function createWidgetMock(data) {
const widget = {
id: data.id,
position: {
x: data.x,
y: data.y
},
shape: {
width: data.width,
height: data.height
},
setPosition: jasmine.createSpy('setPosition').and.callFake(function (newposition) {this.position = newposition;})
};
layout._reserveSpace2(
layout.matrix,
widget,
widget.position.x, widget.position.y,
widget.shape.width, widget.shape.height
);
layout.widgets[widget.id] = widget;
return widget;
};
beforeEach(() => {
const dragboard = {
update: jasmine.createSpy("update")
};
layout = new ns.ColumnLayout(
dragboard,
4,
13,
4,
4,
10
);
});
it("should work on layouts with widgets", () => {
const widget1 = createWidgetMock({
id: "1", x: 0, y: 0, width: 2, height: 2
});
const widget2 = createWidgetMock({
id: "2", x: 0, y: 2, width: 1, height: 1
});
const widget3 = createWidgetMock({
id: "3", x: 0, y: 3, width: 2, height: 1
});
layout.moveSpaceDown(layout._buffers.base, widget2, 2);
expect(layout.matrix[0][0]).toBe(widget1);
expect(layout.matrix[0][1]).toBe(widget1);
expect(layout.matrix[0][2]).toBe(undefined);
expect(layout.matrix[0][3]).toBe(undefined);
expect(layout.matrix[0][4]).toBe(widget2);
expect(layout.matrix[0][5]).toBe(widget3);
expect(layout.matrix[1][0]).toBe(widget1);
expect(layout.matrix[1][1]).toBe(widget1);
expect(layout.matrix[1][2]).toBe(undefined);
expect(layout.matrix[1][3]).toBe(undefined);
expect(layout.matrix[1][4]).toBe(undefined);
expect(layout.matrix[1][5]).toBe(widget3);
});
});
describe("moveSpaceUp(buffer, widget)", () => {
let layout;
const createWidgetMock = function createWidgetMock(data) {
const widget = {
id: data.id,
position: {
x: data.x,
y: data.y
},
shape: {
width: data.width,
height: data.height
},
setPosition: jasmine.createSpy('setPosition').and.callFake(function (newposition) {this.position = newposition;})
};
layout._reserveSpace2(
layout.matrix,
widget,
widget.position.x, widget.position.y,
widget.shape.width, widget.shape.height
);
layout.widgets[widget.id] = widget;
return widget;
};
beforeEach(() => {
const dragboard = {
update: jasmine.createSpy("update")
};
layout = new ns.ColumnLayout(
dragboard,
4,
13,
4,
4,
10
);
});
it("should work on layouts with widgets", () => {
// | 2 | |112 |
// |112 | => | 2 |
// | 2 | | 2 |
// |333 | |333 |
// |44 | |44 |
const widget1 = createWidgetMock({
id: "1", x: 0, y: 1, width: 2, height: 1
});
const widget2 = createWidgetMock({
id: "2", x: 2, y: 0, width: 1, height: 3
});
const widget3 = createWidgetMock({
id: "3", x: 0, y: 3, width: 3, height: 1
});
const widget4 = createWidgetMock({
id: "4", x: 0, y: 4, width: 2, height: 1
});
layout.moveSpaceUp(layout._buffers.base, widget1);
expect(layout.matrix[0][0]).toBe(widget1);
expect(layout.matrix[0][1]).toBe(undefined);
expect(layout.matrix[0][2]).toBe(undefined);
expect(layout.matrix[0][3]).toBe(widget3);
expect(layout.matrix[0][4]).toBe(widget4);
expect(layout.matrix[1][0]).toBe(widget1);
expect(layout.matrix[1][1]).toBe(undefined);
expect(layout.matrix[1][2]).toBe(undefined);
expect(layout.matrix[1][3]).toBe(widget3);
expect(layout.matrix[1][4]).toBe(widget4);
expect(layout.matrix[2][0]).toBe(widget2);
expect(layout.matrix[2][1]).toBe(widget2);
expect(layout.matrix[2][2]).toBe(widget2);
expect(layout.matrix[2][3]).toBe(widget3);
});
});
describe("moveTo(destLayout)", () => {
const destLayout = "destLayout";
let layout;
beforeEach(() => {
layout = new ns.ColumnLayout({}, 4, 13, 4, 4, 10);
});
it("should work on empty layouts", () => {
layout.moveTo(destLayout);
});
it("should work on layouts with widgets", () => {
const widget1 = {
moveToLayout: jasmine.createSpy("moveToLayout")
};
const widget2 = {
moveToLayout: jasmine.createSpy("moveToLayout")
};
const widget3 = {
moveToLayout: jasmine.createSpy("moveToLayout")
};
layout.matrix[0][0] = widget1;
layout.matrix[3][0] = widget2;
layout.matrix[0][6] = widget3;
layout.moveTo(destLayout);
});
});
describe("_notifyResizeEvent(widget, oldWidth, oldHeight, newWidth, newHeight, resizeLeftSide, resizeTopSide, persist)", () => {
let layout;
const createWidgetMock = function createWidgetMock(data) {
const widget = {
position: {
x: data.x,
y: data.y
},
shape: {
width: data.width,
height: data.height
},
setPosition: jasmine.createSpy('setPosition').and.callFake(function (newposition) {this.position = newposition;})
};
layout._reserveSpace2(
layout.matrix,
widget,
widget.position.x, widget.position.y,
widget.shape.width, widget.shape.height
);
return widget;
};
beforeEach(() => {
const dragboard = {
update: jasmine.createSpy("update")
};
layout = new ns.ColumnLayout(
dragboard,
4,
13,
4,
4,
10
);
});
it("should work on empty layouts (width increase - right)", () => {
const widget = createWidgetMock({
x: 0, y: 0, width: 1, height: 4
});
layout._notifyResizeEvent(widget, 1, 4, 2, 4, false, false, false);
expect(layout.matrix[1][0]).toBe(widget);
});
it("should work on layouts with widgets (width increase - right)", () => {
// 1 2 11 2
// 1333 => 11
// 1 11
// 1 11
// 3333
const widget1 = createWidgetMock({
x: 0, y: 0, width: 1, height: 4
});
const widget2 = createWidgetMock({
x: 3, y: 0, width: 1, height: 1
});
const widget3 = createWidgetMock({
x: 1, y: 1, width: 3, height: 1
});
layout._notifyResizeEvent(widget1, 1, 4, 2, 4, false, false, false);
expect(layout.matrix[1][0]).toBe(widget1);
expect(layout.matrix[1][3]).toBe(widget1);
expect(layout.matrix[3][0]).toBe(widget2);
expect(layout.matrix[1][4]).toBe(widget3);
});
it("should work on empty layouts (width decrease - right)", () => {
const widget = createWidgetMock({
x: 0, y: 0, width: 2, height: 4
});
layout._notifyResizeEvent(widget, 2, 4, 1, 4, false, false, false);
expect(layout.matrix[1][0]).toBe(undefined);
});
it("should work on layouts with widgets (width decrease - right)", () => {
// |11 | |1 |
// |11 | => |1 |
// |11 | |1 |
// |11 | |1 |
// | 22 | | 22 |
const widget1 = createWidgetMock({
x: 0, y: 0, width: 2, height: 4
});
const widget2 = createWidgetMock({
x: 1, y: 4, width: 2, height: 4
});
layout._notifyResizeEvent(widget1, 2, 4, 1, 4, false, false, false);
expect(layout.matrix[0][0]).toBe(widget1);
expect(layout.matrix[1][0]).toBe(undefined);
expect(layout.matrix[1][4]).toBe(widget2);
});
it("should work on empty layouts (height increase - right)", () => {
const widget = createWidgetMock({
x: 0, y: 0, width: 1, height: 1
});
layout._notifyResizeEvent(widget, 1, 1, 1, 4, false, false, false);
expect(layout.matrix[0][3]).toBe(widget);
});
it("should work on layouts with widgets (height increase - right)", () => {
// |1 2 | |1 2 |
// | 2 | |1 2 |
// |3333| => |1 |
// | | |1 |
// | | |3333|
const widget1 = createWidgetMock({
x: 0, y: 0, width: 1, height: 1
});
const widget2 = createWidgetMock({
x: 2, y: 0, width: 1, height: 2
});
const widget3 = createWidgetMock({
x: 0, y: 2, width: 4, height: 1
});