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

side-nav.js « directives « common « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 295a95838ab4dec46b9086501aa04897d09d9a3b (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
/*!
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

/**
 * Will activate the materialize side nav feature once rendered. We use this directive as it makes sure
 * the actual left menu is rendered at the time we init the side nav.
 *
 * Has to be set on a collaapsible element
 *
 * Example:
 * <div class="collapsible" piwik-side-nav="nav .activateLeftMenu">...</div>
 */
(function () {
    angular.module('piwikApp.directive').directive('piwikSideNav', piwikSideNav);

    piwikSideNav.$inject = ['$timeout'];
    var initialized = false;
    
    function piwikSideNav($timeout){
        return {
            restrict: 'A',
            priority: 10,
            link: function(scope, element, attr, ctrl) {

                if (attr.piwikSideNav) {
                    $timeout(function () {
                        if (!initialized) {
                            initialized = true;

                            var sideNavActivator = $(attr.piwikSideNav).show();

                            sideNavActivator.sideNav({
                                closeOnClick: true
                            });
                        }

                        if (element.hasClass('collapsible')) {
                            element.collapsible();
                        }
                    });
                }
            }
        };
    }
})();