| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- /**
- * AngularStrap - Twitter Bootstrap directives for AngularJS
- * @version v0.7.5 - 2013-07-21
- * @link http://mgcrea.github.com/angular-strap
- * @author Olivier Louvignes <olivier@mg-crea.com>
- * @license MIT License, http://www.opensource.org/licenses/MIT
- */
- angular.module('$strap.config', []).value('$strapConfig', {});
- angular.module('$strap.filters', ['$strap.config']);
- angular.module('$strap.directives', ['$strap.config']);
- angular.module('$strap', [
- '$strap.filters',
- '$strap.directives',
- '$strap.config'
- ]);
- 'use strict';
- angular.module('$strap.directives').factory('$modal', [
- '$rootScope',
- '$compile',
- '$http',
- '$timeout',
- '$q',
- '$templateCache',
- '$strapConfig',
- function ($rootScope, $compile, $http, $timeout, $q, $templateCache, $strapConfig) {
- var ModalFactory = function ModalFactory(config) {
- function Modal(config) {
- var options = angular.extend({ show: true }, $strapConfig.modal, config);
- var scope = options.scope ? options.scope : $rootScope.$new()
- var templateUrl = options.template;
- return $q.when(options.templateHtml || $templateCache.get(templateUrl) || $http.get(templateUrl, { cache: true }).then(function (res) {
- return res.data;
- })).then(function onSuccess(template) {
- var id = scope.$id;
- if (templateUrl) {
- id += templateUrl.replace('.html', '').replace(/[\/|\.|:]/g, '-');
- }
- // grafana change, removed fade
- var $modal = $('<div class="modal hide" tabindex="-1"></div>').attr('id', id).html(template);
- if (options.modalClass)
- $modal.addClass(options.modalClass);
- $('body').append($modal);
- $timeout(function () {
- $compile($modal)(scope);
- });
- scope.$modal = function (name) {
- $modal.modal(name);
- };
- angular.forEach([
- 'show',
- 'hide'
- ], function (name) {
- scope[name] = function () {
- $modal.modal(name);
- };
- });
- scope.dismiss = scope.hide;
- angular.forEach([
- 'show',
- 'shown',
- 'hide',
- 'hidden'
- ], function (name) {
- $modal.on(name, function (ev) {
- scope.$emit('modal-' + name, ev);
- });
- });
- $modal.on('shown', function (ev) {
- $('input[autofocus], textarea[autofocus]', $modal).first().trigger('focus');
- });
- $modal.on('hidden', function (ev) {
- if (!options.persist)
- scope.$destroy();
- });
- scope.$on('$destroy', function () {
- $modal.remove();
- });
- $modal.modal(options);
- return $modal;
- });
- }
- return new Modal(config);
- };
- return ModalFactory;
- }
- ])
- 'use strict';
- angular.module('$strap.directives').directive('bsTooltip', [
- '$parse',
- '$compile',
- function ($parse, $compile) {
- return {
- restrict: 'A',
- scope: true,
- link: function postLink(scope, element, attrs, ctrl) {
- var getter = $parse(attrs.bsTooltip), setter = getter.assign, value = getter(scope);
- scope.$watch(attrs.bsTooltip, function (newValue, oldValue) {
- if (newValue !== oldValue) {
- value = newValue;
- }
- });
- // Grafana change, always hide other tooltips
- if (true) {
- element.on('show', function (ev) {
- $('.tooltip.in').each(function () {
- var $this = $(this), tooltip = $this.data('tooltip');
- if (tooltip && !tooltip.$element.is(element)) {
- $this.tooltip('hide');
- }
- });
- });
- }
- element.tooltip({
- title: function () {
- return angular.isFunction(value) ? value.apply(null, arguments) : value;
- },
- html: true,
- container: 'body', // Grafana change
- });
- var tooltip = element.data('tooltip');
- tooltip.show = function () {
- var r = $.fn.tooltip.Constructor.prototype.show.apply(this, arguments);
- this.tip().data('tooltip', this);
- return r;
- };
- scope._tooltip = function (event) {
- element.tooltip(event);
- };
- scope.hide = function () {
- element.tooltip('hide');
- };
- scope.show = function () {
- element.tooltip('show');
- };
- scope.dismiss = scope.hide;
- }
- };
- }
- ]);
- 'use strict';
- angular.module('$strap.directives').directive('bsTypeahead', [
- '$parse',
- function ($parse) {
- return {
- restrict: 'A',
- require: '?ngModel',
- link: function postLink(scope, element, attrs, controller) {
- var getter = $parse(attrs.bsTypeahead), setter = getter.assign, value = getter(scope);
- scope.$watch(attrs.bsTypeahead, function (newValue, oldValue) {
- if (newValue !== oldValue) {
- value = newValue;
- }
- });
- element.attr('data-provide', 'typeahead');
- element.typeahead({
- source: function (query) {
- return angular.isFunction(value) ? value.apply(null, arguments) : value;
- },
- minLength: attrs.minLength || 1,
- items: attrs.items,
- updater: function (value) {
- if (controller) {
- scope.$apply(function () {
- controller.$setViewValue(value);
- });
- }
- scope.$emit('typeahead-updated', value);
- return value;
- }
- });
- var typeahead = element.data('typeahead');
- typeahead.lookup = function (ev) {
- var items;
- this.query = this.$element.val() || '';
- if (this.query.length < this.options.minLength) {
- return this.shown ? this.hide() : this;
- }
- items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source;
- return items ? this.process(items) : this;
- };
- if (!!attrs.matchAll) {
- typeahead.matcher = function (item) {
- return true;
- };
- }
- if (attrs.minLength === '0') {
- setTimeout(function () {
- element.on('focus', function () {
- element.val().length === 0 && setTimeout(element.typeahead.bind(element, 'lookup'), 200);
- });
- });
- }
- }
- };
- }
- ]);
|