UNPKG

@spalger/kibana

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

82 lines (68 loc) 2.82 kB
define(function (require) { var _ = require('lodash'); require('plugins/kibana/settings/sections/indices/_indexed_fields'); require('plugins/kibana/settings/sections/indices/_scripted_fields'); require('plugins/kibana/settings/sections/indices/_index_header'); require('ui/routes') .when('/settings/indices/:indexPatternId', { template: require('plugins/kibana/settings/sections/indices/_edit.html'), resolve: { indexPattern: function ($route, courier) { return courier.indexPatterns.get($route.current.params.indexPatternId) .catch(courier.redirectWhenMissing('/settings/indices')); } } }); require('ui/modules').get('apps/settings') .controller('settingsIndicesEdit', function ($scope, $location, $route, config, courier, Notifier, Private, AppState, docTitle) { var notify = new Notifier(); var $state = $scope.state = new AppState(); var refreshKibanaIndex = Private(require('plugins/kibana/settings/sections/indices/_refresh_kibana_index')); $scope.kbnUrl = Private(require('ui/url')); $scope.indexPattern = $route.current.locals.indexPattern; docTitle.change($scope.indexPattern.id); var otherIds = _.without($route.current.locals.indexPatternIds, $scope.indexPattern.id); var fieldTypes = Private(require('plugins/kibana/settings/sections/indices/_field_types')); $scope.$watch('indexPattern.fields', function () { $scope.fieldTypes = fieldTypes($scope.indexPattern); }); $scope.changeTab = function (obj) { $state.tab = obj.index; $state.save(); }; $scope.$watch('state.tab', function (tab) { if (!tab) $scope.changeTab($scope.fieldTypes[0]); }); $scope.$watchCollection('indexPattern.fields', function () { $scope.conflictFields = _.filter($scope.indexPattern.fields, {type: 'conflict'}); }); $scope.refreshFields = function () { $scope.indexPattern.refreshFields(); }; $scope.removePattern = function () { if ($scope.indexPattern.id === config.get('defaultIndex')) { config.delete('defaultIndex'); if (otherIds.length) { config.set('defaultIndex', otherIds[0]); } } courier.indexPatterns.delete($scope.indexPattern) .then(refreshKibanaIndex) .then(function () { $location.url('/settings/indices'); }) .catch(notify.fatal); }; $scope.setDefaultPattern = function () { config.set('defaultIndex', $scope.indexPattern.id); }; $scope.setIndexPatternsTimeField = function (field) { if (field.type !== 'date') { notify.error('That field is a ' + field.type + ' not a date.'); return; } $scope.indexPattern.timeFieldName = field.name; return $scope.indexPattern.save(); }; }); });