| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import $ from 'jquery';
- import angular from 'angular';
- import _ from 'lodash';
- var $win = $(window);
- $.fn.place_tt = (function() {
- var defaults = {
- offset: 5,
- };
- return function(x, y, opts) {
- opts = $.extend(true, {}, defaults, opts);
- return this.each(function() {
- var $tooltip = $(this),
- width,
- height;
- $tooltip.addClass('grafana-tooltip');
- $('#tooltip').remove();
- $tooltip.appendTo(document.body);
- if (opts.compile) {
- angular
- .element(document)
- .injector()
- .invoke([
- '$compile',
- '$rootScope',
- function($compile, $rootScope) {
- var tmpScope = $rootScope.$new(true);
- _.extend(tmpScope, opts.scopeData);
- $compile($tooltip)(tmpScope);
- tmpScope.$digest();
- tmpScope.$destroy();
- },
- ]);
- }
- width = $tooltip.outerWidth(true);
- height = $tooltip.outerHeight(true);
- $tooltip.css('left', x + opts.offset + width > $win.width() ? x - opts.offset - width : x + opts.offset);
- $tooltip.css('top', y + opts.offset + height > $win.height() ? y - opts.offset - height : y + opts.offset);
- });
- };
- })();
|