aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/utils/smart-tooltip/smart-tooltip.ts
blob: d0177b4094b01f95c27834ddfa1591f0ca9ec857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
'use strict';

export interface ISmartTooltipScope extends ng.IScope {
    sdcSmartToolip;
}

export class SmartTooltipDirective implements ng.IDirective {

    constructor(private $compile:ng.ICompileService) {
    }

    public replace = false;
    public restrict = 'A';
    public transclude = false;

    public link = (scope:ISmartTooltipScope, $elem:ng.IAugmentedJQuery, $attrs:angular.IAttributes) => {

        if ($elem[0].hasAttribute('style') === false) {
            $elem[0].setAttribute("style", "overflow: hidden; white-space: nowrap; text-overflow: ellipsis;");
        } else {
            let styles = $elem.attr('style');
            $elem[0].setAttribute("style", styles + ";overflow: hidden; white-space: nowrap; text-overflow: ellipsis;");
        }

        $elem.bind('mouseenter', () => {
            if ($elem[0].offsetWidth < $elem[0].scrollWidth && !$elem.attr('tooltips')) {
                $attrs.$set('tooltips', 'tooltips');
                if ($attrs['sdcSmartTooltip'] && $attrs['sdcSmartTooltip'].length > 0) {
                    $elem.attr('tooltip-content', $attrs['sdcSmartTooltip']);
                } else {
                    $attrs.$set('tooltip-content', $elem.text());
                }

                //One possible problem arises when the ngIf is placed on the root element of the template.
                //ngIf removes the node and places a comment in it's place. Then it watches over the expression and adds/removes the actual HTML element as necessary.
                //The problem seems to be that if it is placed on the root element of the template, then a single comment is what is left from the
                //whole template (even if only temporarily), which gets ignored (I am not sure if this is browser-specific behaviour), resulting in an empty template.

                // Remove ng-if attribute and its value (if we reach here, we pass ng-if (ng-if===true), so we can remove it).
                $elem.removeAttr('ng-if');
                $elem.removeAttr('data-ng-if');

                // Remove me (the directive from the element)
                let template = $elem[0].outerHTML;
                template = template.replace('sdc-smart-tooltip=""', '');
                template = template.replace('sdc-smart-tooltip="' + $elem.text() + '"', '');
                //console.log(template);

                let el = this.$compile(template)(scope);
                console.log(el);
                $elem.replaceWith(el);
            }
        });
    };

    public static factory = ($compile:ng.ICompileService)=> {
        return new SmartTooltipDirective($compile);
    };
}

SmartTooltipDirective.factory.$inject = ['$compile'];