Welcome to mirror list, hosted at ThFree Co, Russian Federation.

content-block.directive.js « content-block « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab4f2e5082c9d30c1b09f331d98c4c4231e97102 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*!
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

/**
 * Usage:
 * <div piwik-content-block>
 */
(function () {
    angular.module('piwikApp').directive('piwikContentBlock', piwikContentBlock);

    piwikContentBlock.$inject = ['piwik'];

    function piwikContentBlock(piwik){

        var contentTopPosition = null;

        return {
            restrict: 'A',
            replace: true,
            transclude: true,
            scope: {
                contentTitle: '@',
                feature: '@',
                helpUrl: '@',
                helpText: '@'
            },
            templateUrl: 'plugins/CoreHome/angularjs/content-block/content-block.directive.html?cb=' + piwik.cacheBuster,
            controllerAs: 'contentBlock',
            compile: function (element, attrs) {

                if (attrs.feature === 'true') {
                    attrs.feature = true;
                }

                return function (scope, element, attrs) {
                    var inlineHelp = element.find('[ng-transclude] > .contentHelp');
                    if (inlineHelp.size()) {
                        scope.helpText = inlineHelp.html();
                        inlineHelp.remove();
                    }

                    if (scope.feature && (scope.feature===true || scope.feature ==='true')) {
                        scope.feature = scope.contentTitle;
                    }

                    if (contentTopPosition !== false) {
                        if (contentTopPosition === null) {
                            var $content = $('#content.admin');
                            if ($content.size()) {
                                // cache top position for further content blocks
                                contentTopPosition = $content.offset().top;
                            } else {
                                contentTopPosition = false;
                            }
                        }

                        if (contentTopPosition || contentTopPosition === 0) {
                            var topThis = element.offset().top;
                            if ((topThis - contentTopPosition) < 17) {
                                // we make sure to display the first card with no margin-top to have it on same as line as
                                // navigation
                                element.css('marginTop', '0');
                            }
                        }
                    }

                };
            }
        };
    }
})();