diff options
author | st782s <statta@research.att.com> | 2017-05-04 07:48:42 -0400 |
---|---|---|
committer | st782s <statta@research.att.com> | 2017-05-04 12:28:17 -0400 |
commit | b54df0ddd0c6a0372327c5aa3668e5a6458fcd64 (patch) | |
tree | e69cfa9b314a801bd187cf0145d1d4306436229c /ecomp-portal-FE/client/bower_components/angular-smart-table/src/stPagination.js | |
parent | 39d1e62c84041831bfc52cca73b5ed5efaf57d27 (diff) |
[PORTAL-7] Rebase
This rebasing includes common libraries and common overlays projects
abstraction of components
Change-Id: I9a24a338665c7cd058978e8636bc412d9e2fdce8
Signed-off-by: st782s <statta@research.att.com>
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/angular-smart-table/src/stPagination.js')
-rw-r--r-- | ecomp-portal-FE/client/bower_components/angular-smart-table/src/stPagination.js | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stPagination.js b/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stPagination.js deleted file mode 100644 index fa27bfc2..00000000 --- a/ecomp-portal-FE/client/bower_components/angular-smart-table/src/stPagination.js +++ /dev/null @@ -1,80 +0,0 @@ -ng.module('smart-table') - .directive('stPagination', ['stConfig', function (stConfig) { - return { - restrict: 'EA', - require: '^stTable', - scope: { - stItemsByPage: '=?', - stDisplayedPages: '=?', - stPageChange: '&' - }, - templateUrl: function (element, attrs) { - if (attrs.stTemplate) { - return attrs.stTemplate; - } - return stConfig.pagination.template; - }, - link: function (scope, element, attrs, ctrl) { - - scope.stItemsByPage = scope.stItemsByPage ? +(scope.stItemsByPage) : stConfig.pagination.itemsByPage; - scope.stDisplayedPages = scope.stDisplayedPages ? +(scope.stDisplayedPages) : stConfig.pagination.displayedPages; - - scope.currentPage = 1; - scope.pages = []; - - function redraw () { - var paginationState = ctrl.tableState().pagination; - var start = 1; - var end; - var i; - var prevPage = scope.currentPage; - scope.totalItemCount = paginationState.totalItemCount; - scope.currentPage = Math.floor(paginationState.start / paginationState.number) + 1; - - start = Math.max(start, scope.currentPage - Math.abs(Math.floor(scope.stDisplayedPages / 2))); - end = start + scope.stDisplayedPages; - - if (end > paginationState.numberOfPages) { - end = paginationState.numberOfPages + 1; - start = Math.max(1, end - scope.stDisplayedPages); - } - - scope.pages = []; - scope.numPages = paginationState.numberOfPages; - - for (i = start; i < end; i++) { - scope.pages.push(i); - } - - if (prevPage !== scope.currentPage) { - scope.stPageChange({newPage: scope.currentPage}); - } - } - - //table state --> view - scope.$watch(function () { - return ctrl.tableState().pagination; - }, redraw, true); - - //scope --> table state (--> view) - scope.$watch('stItemsByPage', function (newValue, oldValue) { - if (newValue !== oldValue) { - scope.selectPage(1); - } - }); - - scope.$watch('stDisplayedPages', redraw); - - //view -> table state - scope.selectPage = function (page) { - if (page > 0 && page <= scope.numPages) { - ctrl.slice((page - 1) * scope.stItemsByPage, scope.stItemsByPage); - } - }; - - if (!ctrl.tableState().pagination.number) { - ctrl.slice(0, scope.stItemsByPage); - } - } - }; - }]); |