-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathauto-resize-grid.spec.js
227 lines (173 loc) · 6.98 KB
/
auto-resize-grid.spec.js
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
describe('ui.grid.autoResizeGrid', function () {
var gridScope, gridElm, viewportElm, $scope, $compile, recompile, uiGridConstants, $timeout;
var data = [
{ "name": "Ethel Price", "gender": "female", "company": "Enersol" },
{ "name": "Claudine Neal", "gender": "female", "company": "Sealoud" },
{ "name": "Beryl Rice", "gender": "female", "company": "Velity" },
{ "name": "Wilder Gonzales", "gender": "male", "company": "Geekko" }
];
beforeEach(module('ui.grid'));
beforeEach(module('ui.grid.autoResize'));
beforeEach(inject(function (_$compile_, _$timeout_, $rootScope, _uiGridConstants_) {
$scope = $rootScope;
$timeout = _$timeout_;
$compile = _$compile_;
uiGridConstants = _uiGridConstants_;
$scope.gridOpts = {
data: data
};
recompile = function () {
gridElm = angular.element('<div style="width: 500px; height: 300px" ui-grid="gridOpts" ui-grid-auto-resize></div>');
document.body.appendChild(gridElm[0]);
$compile(gridElm)($scope);
$scope.$digest();
gridScope = gridElm.isolateScope();
viewportElm = $(gridElm).find('.ui-grid-viewport');
};
recompile();
}));
afterEach(function () {
angular.element(gridElm).remove();
gridElm = null;
});
describe('on grid element width change to greater', function () {
var w;
beforeEach(function (done) {
w = $(viewportElm).width();
$(gridElm).width(600);
$scope.$digest();
setTimeout(done, 300);
});
it('adjusts the grid viewport size', function () {
var newW = $(viewportElm).width();
expect(newW).toBeGreaterThan(w);
});
});
describe('on grid element height change to greater', function () {
var h;
beforeEach(function (done) {
h = $(viewportElm).height();
$(gridElm).height(400);
$scope.$digest();
setTimeout(done, 300);
});
it('adjusts the grid viewport size', function () {
var newH = $(viewportElm).height();
expect(newH).toBeGreaterThan(h);
});
});
describe('on grid element width change to smaller', function () {
var w;
beforeEach(function (done) {
w = $(viewportElm).width();
$(gridElm).width(400);
$scope.$digest();
setTimeout(done, 300);
});
it('adjusts the grid viewport size', function () {
var newW = $(viewportElm).width();
expect(newW).toBeLessThan(w);
});
});
describe('on grid element height change to smaller', function () {
var h;
beforeEach(function (done) {
h = $(viewportElm).height();
$(gridElm).height(200);
$scope.$digest();
setTimeout(done, 300);
});
it('adjusts the grid viewport size', function () {
var newH = $(viewportElm).height();
expect(newH).toBeLessThan(h);
});
});
// Rebuild the grid as having 100% width and 100% height and being in a 400px wide and 300px height container, then change the container width to 500px and make sure it adjusts
describe('on grid container width change to greater', function () {
var gridContainerElm;
var w;
beforeEach(function (done) {
angular.element(gridElm).remove();
gridContainerElm = angular.element('<div style="width: 400px; height: 300px"><div style="width: 100%; height: 100%" ui-grid="gridOpts" ui-grid-auto-resize></div></div>');
document.body.appendChild(gridContainerElm[0]);
$compile(gridContainerElm)($scope);
$scope.$digest();
gridElm = gridContainerElm.find('[ui-grid]');
viewportElm = $(gridElm).find('.ui-grid-viewport');
w = $(viewportElm).width();
$(gridContainerElm).width(500);
$scope.$digest();
setTimeout(done, 300);
});
it('adjusts the grid viewport size', function() {
var newW = $(viewportElm).width();
expect(newW).toBeGreaterThan(w);
});
});
// Rebuild the grid as having 100% width and 100% height and being in a 400px wide and 300px height container, then change the container height to 400px and make sure it adjusts
describe('on grid container height change to greater', function () {
var gridContainerElm;
var h;
beforeEach(function (done) {
angular.element(gridElm).remove();
gridContainerElm = angular.element('<div style="width: 400px; height: 300px"><div style="width: 100%; height: 100%" ui-grid="gridOpts" ui-grid-auto-resize></div></div>');
document.body.appendChild(gridContainerElm[0]);
$compile(gridContainerElm)($scope);
$scope.$digest();
gridElm = gridContainerElm.find('[ui-grid]');
viewportElm = $(gridElm).find('.ui-grid-viewport');
h = $(viewportElm).height();
$(gridContainerElm).height(400);
$scope.$digest();
setTimeout(done, 300);
});
it('adjusts the grid viewport size', function() {
var newH = $(viewportElm).width();
expect(newH).toBeGreaterThan(h);
});
});
// Rebuild the grid as having 100% width and 100% height and being in a 400px wide and 300px height container, then change the container width to 300px and make sure it adjusts
describe('on grid container width change to smaller', function () {
var gridContainerElm;
var w;
beforeEach(function (done) {
angular.element(gridElm).remove();
gridContainerElm = angular.element('<div style="width: 400px; height: 300px"><div style="width: 100%; height: 100%" ui-grid="gridOpts" ui-grid-auto-resize></div></div>');
document.body.appendChild(gridContainerElm[0]);
$compile(gridContainerElm)($scope);
$scope.$digest();
gridElm = gridContainerElm.find('[ui-grid]');
viewportElm = $(gridElm).find('.ui-grid-viewport');
w = $(viewportElm).width();
$(gridContainerElm).width(300);
$scope.$digest();
setTimeout(done, 300);
});
it('adjusts the grid viewport size', function() {
var newW = $(viewportElm).width();
expect(newW).toBeLessThan(w);
});
});
// Rebuild the grid as having 100% width and 100% height and being in a 400px wide and 300px height container, then change the container height to 200px and make sure it adjusts
describe('on grid container height change to smaller', function () {
var gridContainerElm;
var h;
beforeEach(function (done) {
angular.element(gridElm).remove();
gridContainerElm = angular.element('<div style="width: 400px; height: 300px"><div style="width: 100%; height: 100%" ui-grid="gridOpts" ui-grid-auto-resize></div></div>');
document.body.appendChild(gridContainerElm[0]);
$compile(gridContainerElm)($scope);
$scope.$digest();
gridElm = gridContainerElm.find('[ui-grid]');
viewportElm = $(gridElm).find('.ui-grid-viewport');
h = $(viewportElm).height();
$(gridContainerElm).height(200);
$scope.$digest();
setTimeout(done, 300);
});
it('adjusts the grid viewport size', function() {
var newH = $(viewportElm).height();
expect(newH).toBeLessThan(h);
});
});
});