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

rowaction.js « javascripts « PagePerformance « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df7dbca108e9ec45b2b9d3d49f8a85e869da713f (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*!
 * Matomo - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

/**
 * This file registers the page performance row action on the pages report.
 */

(function () {

    var actionName = 'PagePerformance';

    function getDataTableFromApiMethod(apiMethod)
    {
        var div = $(require('piwik/UI').DataTable.getDataTableByReport(apiMethod));
        if (div.length && div.data('uiControlObject')) {
            return div.data('uiControlObject');
        }
    }

    function DataTable_RowActions_PagePerformance(dataTable) {
        this.dataTable = dataTable;
        this.actionName = actionName;

        // has to be overridden in subclasses
        this.trEventName = 'matomoTriggerPagePerformanceAction';
    }

    DataTable_RowActions_PagePerformance.prototype = new DataTable_RowAction();

    DataTable_RowActions_PagePerformance.prototype.performAction = function (label, tr, e, originalRow) {
        var apiMethod = this.dataTable.param.module + '.' + this.dataTable.param.action;
        this.openPopover(apiMethod, label);
    };

    DataTable_RowActions_PagePerformance.prototype.openPopover = function (apiMethod, label) {
        var urlParam = apiMethod + ':' + label;
        DataTable_RowAction.prototype.openPopover.apply(this, [urlParam]);
    };

    DataTable_RowActions_PagePerformance.prototype.doOpenPopover = function (urlParam) {
        var urlParamParts = urlParam.split(':');
        var apiMethod = urlParamParts.shift();
        var label = decodeURIComponent(urlParamParts.shift());

        PagePerformance.show(apiMethod, label);
    };

    DataTable_RowActions_Registry.register({

        name: actionName,

        dataTableIcon: 'icon-page-performance',

        order: 50,

        dataTableIconTooltip: [
            _pk_translate('PagePerformance_RowActionTitle'),
            _pk_translate('PagePerformance_RowActionDescription')
        ],

        isAvailableOnReport: function (dataTableParams) {
            return dataTableParams.module == 'Actions'
                && (dataTableParams.action == 'getPageUrls' || dataTableParams.action == 'getEntryPageUrls' ||
                    dataTableParams.action == 'getExitPageUrls' || dataTableParams.action == 'getPageUrlsFollowingSiteSearch' ||
                    dataTableParams.action == 'getPageTitles' || dataTableParams.action == 'getPageTitlesFollowingSiteSearch');
        },

        isAvailableOnRow: function (dataTableParams, tr) {
            return true;
        },

        createInstance: function (dataTable, param) {
            if (dataTable !== null && typeof dataTable.pagePerformanceInstance != 'undefined') {
                return dataTable.pagePerformanceInstance;
            }

            if (dataTable === null && param) {
                // when row evolution is triggered from the url (not a click on the data table)
                // we look for the data table instance in the dom
                var report = param.split(':')[0];
                var div = $(require('piwik/UI').DataTable.getDataTableByReport(report));
                if (div.length && div.data('uiControlObject')) {
                    dataTable = div.data('uiControlObject');
                    if (typeof dataTable.pagePerformanceInstance != 'undefined') {
                        return dataTable.pagePerformanceInstance;
                    }
                }
            }

            var instance = new DataTable_RowActions_PagePerformance(dataTable);
            if (dataTable !== null) {
                dataTable.pagePerformanceInstance = instance;
            }
            return instance;
        },

    });

})();