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

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

angular.module('piwikApp').directive('sitesManagerMultilineField', function () {

    return {
        restrict: 'A',
        replace: true,
        scope: {
            managedValue: '=field',
            rows: '@?',
            cols: '@?'
        },
        templateUrl: 'plugins/SitesManager/templates/directives/multiline-field.html?cb=' + piwik.cacheBuster,
        link: function (scope) {

            var separator = '\n';

            var init = function () {

                scope.field = {};
                scope.onChange = updateManagedScopeValue;

                scope.$watch('managedValue', updateInputValue);
            };

            var updateManagedScopeValue = function () {
                scope.managedValue = scope.field.value.trim().split(separator);
            };

            var updateInputValue = function () {

                if(angular.isUndefined(scope.managedValue))
                    return;

                scope.field.value = scope.managedValue.join(separator);
            };

            init();
        }
    };
});