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

feedback-popup.controller.js « feedback-popup « angularjs « Feedback « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02c669805f9f6439b5131b186fab06e858614728 (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
/*!
 * Matomo - free/libre analytics platform
 *
 * @link http://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */
(function () {
    angular.module('piwikApp').controller('FeedbackPopupController', FeedbackPopupController);

    FeedbackPopupController.$inject = ['$scope', '$timeout', 'piwikApi'];

    function FeedbackPopupController($scope, $timeout, piwikApi) {

        var saveNextReminder = function(nextReminder) {
            var ajaxHandler = new ajaxHelper();
            ajaxHandler.addParams({'module': 'Feedback', 'action': 'updateFeedbackReminderDate'}, 'GET');
            ajaxHandler.addParams({'nextReminder': nextReminder}, 'POST');
            ajaxHandler.send();
        };

        var remindMeLater = function() {
            saveNextReminder(90);
        };

        var dontShowAgain = function() {
            saveNextReminder(-1);
        };

        var init = function() {
            if ($scope.promptForFeedback === 1) {
                $timeout(function() {
                    $scope.feedbackPopup.dialog = {};
                    $scope.feedbackPopup.dialog.show = true;
                    $scope.feedbackPopup.remindMeLater = remindMeLater;
                    $scope.feedbackPopup.dontShowAgain = dontShowAgain;
                });
            }
        };

        init();
    }
})();