UNPKG

kibana-123

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

97 lines (84 loc) 2.64 kB
import _ from 'lodash'; import AggConfigResult from 'ui/vis/agg_config_result'; import uiModules from 'ui/modules'; import paginatedTableTemplate from 'ui/paginated_table/paginated_table.html'; uiModules .get('kibana') .directive('paginatedTable', function ($filter) { const orderBy = $filter('orderBy'); return { restrict: 'E', template: paginatedTableTemplate, transclude: true, scope: { rows: '=', columns: '=', perPage: '=?', sortHandler: '=?', sort: '=?', showSelector: '=?', showTotal: '=', totalFunc: '=' }, controllerAs: 'paginatedTable', controller: function ($scope) { const self = this; self.sort = { columnIndex: null, direction: null }; self.sortColumn = function (colIndex, sortDirection = 'asc') { const col = $scope.columns[colIndex]; if (!col) return; if (col.sortable === false) return; if (self.sort.columnIndex === colIndex) { const directions = { null: 'asc', 'asc': 'desc', 'desc': null }; sortDirection = directions[self.sort.direction]; } self.sort.columnIndex = colIndex; self.sort.direction = sortDirection; if ($scope.sort) { _.assign($scope.sort, self.sort); } }; function valueGetter(row) { let value = row[self.sort.columnIndex]; if (value && value.value != null) value = value.value; if (typeof value === 'boolean') value = value ? 0 : 1; if (value instanceof AggConfigResult && value.valueOf() === null) value = false; return value; } // Set the sort state if it is set if ($scope.sort && $scope.sort.columnIndex !== null) { self.sortColumn($scope.sort.columnIndex, $scope.sort.direction); } function resortRows() { const newSort = $scope.sort; if (newSort && !_.isEqual(newSort, self.sort)) { self.sortColumn(newSort.columnIndex, newSort.direction); } if (!$scope.rows || !$scope.columns) { $scope.sortedRows = false; return; } const sort = self.sort; if (sort.direction == null) { $scope.sortedRows = $scope.rows.slice(0); } else { $scope.sortedRows = orderBy($scope.rows, valueGetter, sort.direction === 'desc'); } } // update the sortedRows result $scope.$watchMulti([ 'rows', 'columns', '[]sort', '[]paginatedTable.sort' ], resortRows); } }; });