-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathangular-jtable.js
More file actions
380 lines (277 loc) · 9.68 KB
/
angular-jtable.js
File metadata and controls
380 lines (277 loc) · 9.68 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
//directive begin
var angularjtable = angular.module('angularjtable', []);
angularjtable.filter('toArray', function () {
return function (obj, addKey) {
if (!(obj instanceof Object)) {
return obj;
}
if (addKey === false) {
return Object.values(obj);
} else {
return Object.keys(obj).map(function (key) {
return Object.defineProperty(obj[key], '$key', { enumerable: false, value: key });
});
}
};
});
angularjtable.filter('range', function () {
return function (input, total) {
total = parseInt(total);
for (var i = 1; i <= total; i++) {
input.push(i);
}
return input;
};
});
angularjtable.directive('escKey', function () {
return function (scope, element, attrs) {
element.bind('keydown keypress', function (event) {
if (event.which === 27) { // 27 = esc key
scope.$apply(function () {
scope.$eval(attrs.escKey);
});
event.preventDefault();
}
});
};
})
angularjtable.directive('clearable', function ($compile, $timeout) {
return {
require: 'ngModel',
link: function (scope, elem, attrs, ctrl) {
elem.addClass('clearable');
elem.bind('input', function () {
elem[toggleClass(elem.val())]('x');
});
elem.on('mousemove', function (e) {
if (elem.hasClass('x')) {
elem[toggleClass(this.offsetWidth - 25 < e.clientX - this.getBoundingClientRect().left)]('onX');
}
});
elem.on('click', function (e) {
if (elem.hasClass('onX')) {
elem.removeClass('x onX').val(undefined);
ctrl.$setViewValue(undefined);
ctrl.$render();
scope.$digest();
}
});
function toggleClass(v) {
return v ? 'addClass' : 'removeClass';
}
}
};
});
angularjtable.directive('dynamic', function ($compile) {
return {
restrict: 'A',
replace: true,
link: function (scope, ele, attrs) {
if (attrs.dynamic !== "") {
var template = $compile(attrs.dynamic)(scope);
ele.replaceWith(template);
}
}
};
});
angularjtable.directive('jtable', function () {
return {
restrict: 'E',
scope: {
items: '=',
selecteditems:'=?',
options: '=',
parentItem: '=?',
vm: '=?'
},
controller: function($scope,$filter, orderByFilter){
if (!$scope.options) {
console.warn('angular jtable options not passed');
return;
}
if (!$scope.options.fields) {
console.warn('angular jtable fields not passed');
return;
}
if ($scope.options.fields.children) {
$scope.options.children = $scope.options.fields.children;
delete $scope.options.fields.children;
}
if (!$scope.items)
$scope.items = [];
if (!$scope.selecteditems)
$scope.selecteditems = [];
if (!$scope.model)
$scope.model = {};
$scope.pager = {};
var PagerService = getPagerService();
$scope.expandAll = function (items, flag) {
angular.forEach(items, function (row, index) {
row.isExpanded = flag;
if (row.items && row.items.length > 0)
$scope.expandAll(row.items, flag);
});
}
initController();
function initController() {
if (!$scope.options.pageSize)
$scope.options.pageSize = 10;
$scope.setPage = setPage;
$scope.setPage(1);
}
//#region events
$scope.filterTable = function () {
$scope.filteredItems = $filter('filter')($scope.items, $scope.model.filter);
$scope.setPage(1, $scope.filteredItems);
};
$scope.selectAll = function (items, flag) {
angular.forEach(items, function (row, index) {
row.isSelected = flag;
});
};
$scope.selectItem = function (item) {
if (item.isSelected)
$scope.selecteditems.push(item);
else {
var index = $scope.filteredItems.indexOf(item);
$scope.selecteditems.splice(index, 1);
}
var allSelected = true;
angular.forEach($scope.filteredItems, function (row, index) {
if (allSelected) {
if (!row.isSelected) {
allSelected = false;
}
}
});
$scope.model.IsAllSelected = allSelected;
};
$scope.$watch('model.filter', function (newNames, oldNames) {
if ($scope.model.filter === "")
$scope.filterTable();
});
$scope.$watchCollection('items', function (newcollection, oldcollection) {
$scope.filteredItems = newcollection;
$scope.setPage(1, $scope.filteredItems);
});
$scope.getNofPages = function (items, pageSize) {
if (!items)
return 1;
var result = Math.round(items.length / pageSize);
return result <= 0 ? 1 : result;
};
$scope.editItem = function (editAction, item) {
if (typeof editAction === "function") {
editAction(item);
}
};
$scope.deleteItem = function (deleteAction, item) {
if (typeof deleteAction === "function")
deleteAction(item);
};
$scope.addItem = function (addAction, item) {
if (typeof addAction === "function")
addAction(item);
};
$scope.sortData = function (header) {
header.isASC = !header.isASC;
header.isDESC = !header.isASC;
if (!$scope.options.sorting)
return;
var propertyName = header.$key;
$scope.reverse = (propertyName !== null && $scope.propertyName === propertyName)
? !$scope.reverse : false;
$scope.propertyName = propertyName;
$scope.items = orderByFilter($scope.items, $scope.propertyName, $scope.reverse);
};
$scope.getPreviousRowCount = function () {
return ($scope.pager.currentPage - 1) * $scope.options.pageSize;
};
$scope.options.columns = Object.getOwnPropertyNames($scope.options.fields);
$scope.getAllColumnCount = function () {
var count = $scope.options.columns.length;
if ($scope.options.actions && $scope.options.actions.deleteAction)
count++;
if ($scope.options.actions && $scope.options.actions.editAction)
count++;
return count + 1;
};
//#endregion
//#region private functions
function getPagerService() {
// service definition
var service = {
};
service.GetPager = GetPager;
return service;
// service implementation
function GetPager(totalItems, currentPage, pageSize) {
// default to first page
currentPage = currentPage || 1;
// default page size is 10
pageSize = pageSize || 10;
// calculate total pages
var totalPages = Math.ceil(totalItems / pageSize);
var startPage, endPage;
if (totalPages <= 10) {
// less than 10 total pages so show all
startPage = 1;
endPage = totalPages;
} else {
// more than 10 total pages so calculate start and end pages
if (currentPage <= 6) {
startPage = 1;
endPage = 10;
} else if (currentPage + 4 >= totalPages) {
startPage = totalPages - 9;
endPage = totalPages;
} else {
startPage = currentPage - 5;
endPage = currentPage + 4;
}
}
// calculate start and end item indexes
var startIndex = (currentPage - 1) * pageSize;
var endIndex = Math.min(startIndex + pageSize - 1, totalItems - 1);
// create an array of pages to ng-repeat in the pager control
var pages = _.range(startPage, endPage + 1);
// return object with all pager properties required by the view
return {
totalItems: totalItems,
currentPage: currentPage,
pageSize: pageSize,
totalPages: totalPages,
startPage: startPage,
endPage: endPage,
startIndex: startIndex,
endIndex: endIndex,
pages: pages
};
}
}
function setPage(page, items) {
if (!$scope.options.paging) {
$scope.filteredItems = $scope.items;
return;
}
if (!items)
items = $filter('filter')($scope.items, $scope.model.filter);
if (items === null || items.length <= 0 || page < 1 || page > $scope.pager.totalPages) {
return;
}
// get pager object from service
$scope.pager = PagerService.GetPager(items.length, page, $scope.options.pageSize);
// get current page of items
$scope.filteredItems = items.slice($scope.pager.startIndex, $scope.pager.endIndex + 1);
$scope.expandAll($scope.filteredItems, false);
}
//#endregion
console.log("jtable options passed :");
console.log($scope.options);
},
link: function (scope, element, attrs, controllers) {
}
,
templateUrl:"angular-jtable-tpl.html",
};
});