| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*jshint globalstrict:true */
- /*global angular:true */
- /*
- ## Column
- ### Parameters
- * panels :: an array of panel objects. All of their spans should be set to 12
-
- */
- 'use strict';
- angular.module('kibana.column', [])
- .controller('column', function($scope, $rootScope, $timeout) {
- $scope.panelMeta = {
- status : "Stable",
- description : "A pseudo panel that lets you add other panels to be arranged in a column with"+
- "defined heights."
- };
- // Set and populate defaults
- var _d = {
- panels : []
- };
- _.defaults($scope.panel,_d);
- $scope.init = function(){
- $scope.reset_panel();
- };
- $scope.toggle_row = function(panel) {
- panel.collapse = panel.collapse ? false : true;
- if (!panel.collapse) {
- $timeout(function() {
- $scope.send_render();
- });
- }
- };
- $scope.send_render = function() {
- $scope.$broadcast('render');
- };
- $scope.add_panel = function(panel) {
- $scope.panel.panels.push(panel);
- };
- $scope.reset_panel = function(type) {
- $scope.new_panel = {
- loading: false,
- error: false,
- sizeable: false,
- span: 12,
- height: "150px",
- editable: true,
- group: ['default'],
- type: type,
- };
- };
- })
- .directive('columnEdit', function($compile,$timeout) {
- return {
- scope : {
- new_panel:"=panel",
- row:"=",
- config:"=",
- dashboards:"=",
- type:"=type"
- },
- link: function(scope, elem, attrs, ctrl) {
- scope.$on('render', function () {
- // Make sure the digest has completed and populated the attributes
- $timeout(function() {
- // Create a reference to the new_panel as panel so that the existing
- // editors work with our isolate scope
- scope.panel = scope.new_panel;
- var template = '<div ng-include src="\'panels/column/panelgeneral.html\'"></div>';
- if(!(_.isUndefined(scope.type)) && scope.type !== "") {
- template = template+'<div ng-include src="\'panels/'+scope.type+'/editor.html\'"></div>';
- }
- elem.html($compile(angular.element(template))(scope));
- });
- });
- }
- };
- }).filter('withoutColumn', function() {
- return function() {
- return _.without(config.modules,'column');
- };
- });
|