UNPKG

kibana-with-account

Version:

kibana-with-account is develop based kibana project

40 lines (35 loc) 1.29 kB
define(function (require) { require('ui/compile_recursive_directive'); require('ui/agg_table'); require('ui/modules') .get('kibana') .directive('kbnAggTableGroup', function (compileRecursiveDirective) { return { restrict: 'E', template: require('ui/agg_table/agg_table_group.html'), scope: { group: '=', perPage: '=?', exportTitle: '=?' }, compile: function ($el) { // Use the compile function from the RecursionHelper, // And return the linking function(s) which it returns return compileRecursiveDirective.compile($el, { post: function ($scope) { $scope.$watch('group', function (group) { // clear the previous "state" $scope.rows = $scope.columns = false; if (!group || !group.tables.length) return; var firstTable = group.tables[0]; var params = firstTable.aggConfig && firstTable.aggConfig.params; // render groups that have Table children as if they were rows, because iteration is cleaner var childLayout = (params && !params.row) ? 'columns' : 'rows'; $scope[childLayout] = group.tables; }); } }); } }; }); });