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

dashboards-model.js « services « common « angularjs « Dashboard « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0d861c2ba77018de187b2f51fa9148ec00be3ec (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
/*!
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */
(function () {
    angular.module('piwikApp.service').factory('dashboardsModel', dashboardsModel);

    dashboardsModel.$inject = ['piwikApi'];

    function dashboardsModel (piwikApi) {

        var dashboardsPromise = null;

        var model = {
            dashboards: [],
            getAllDashboards: getAllDashboards,
            reloadAllDashboards: reloadAllDashboards,
            getDashboard: getDashboard,
            getDashboardLayout: getDashboardLayout
        };

        return model;

        function getDashboard(dashboardId)
        {
            return getAllDashboards().then(function (dashboards) {
                var dashboard = null;
                angular.forEach(dashboards, function (board) {
                    if (parseInt(board.id, 10) === parseInt(dashboardId, 10)) {
                        dashboard = board;
                    }
                });
                return dashboard;
            });
        }

        function getDashboardLayout(dashboardId)
        {
            return piwikApi.fetch({module: 'Dashboard', action: 'getDashboardLayout', idDashboard: dashboardId});
        }

        function reloadAllDashboards()
        {
            if (dashboardsPromise) {
                dashboardsPromise = null;
            }

            return getAllDashboards();
        }

        function getAllDashboards()
        {
            if (!dashboardsPromise) {
                dashboardsPromise = piwikApi.fetch({method: 'Dashboard.getDashboards'}).then(function (response) {
                    if (response) {
                        model.dashboards = response;
                    }

                    return response;
                });
            }

            return dashboardsPromise;
        }
    }
})();