UNPKG

kibana-with-account

Version:

kibana-with-account is develop based kibana project

46 lines (39 loc) 1.26 kB
define(function (require) { var _ = require('lodash'); require('ui/modules') .get('kibana') .directive('fieldFormatEditorSamples', function ($sce, Promise) { return { restrict: 'E', template: require('ui/field_format_editor/samples/samples.html'), require: ['?^ngModel', '^fieldEditor'], scope: true, link: function ($scope, $el, attrs, cntrls) { var ngModelCntrl = cntrls[0]; $scope.samples = null; $scope.$bind('inputs', attrs.inputs); $scope.$watchMulti([ 'editor.field.format', '[]inputs' ], function () { $scope.samples = null; var field = $scope.editor.field; if (!field || !field.format) { return; } Promise.try(function () { var converter = field.format.getConverterFor('html'); $scope.samples = _.map($scope.inputs, function (input) { return [input, $sce.trustAsHtml(converter(input))]; }); }) .then(validity, validity); }); function validity(err) { $scope.error = err; ngModelCntrl && ngModelCntrl.$setValidity('patternExecutes', !err); } } }; }); });