Your IP : 216.73.216.95


Current Path : /var/www/alh/admin/view/journal2/js/directives/
Upload File :
Current File : /var/www/alh/admin/view/journal2/js/directives/j-opt-border.js

define(['./module', 'underscore'], function (module, _) {

    module
        .directive('jOptBorder', ['Rest', function () {
            return {
                replace: true,
                require: '?ngModel',
                scope: {
                    ngModel: '='
                },
                restrict: 'E',
                templateUrl: 'view/journal2/tpl/directives/j-opt-border.html?ver=' + Journal2Config.version,
                controller: ['$scope', '$attrs', '$modal', function ($scope, $attrs, $modal) {
                    $scope.ngModel = $scope.ngModel || {};
                    $scope.ngModel.value = $scope.ngModel.value || {};
                    $scope.edit = function () {
                        $modal.open({
                            templateUrl: 'view/journal2/tpl/directives/j-opt-border-editor.html?ver=' + Journal2Config.version,
                            resolve: {
                                ngModel: function () { return $scope.ngModel; },
                                editor: function () { return $attrs.editor; }
                            },
                            controller: function ($scope, $rootScope, $modalInstance, ngModel, editor) {
                                $scope.ngModel = ngModel.value;
                                $scope.editor = ngModel.editor || editor;

                                $scope.title = 'Border Settings';

                                if ($scope.editor === 'hide-style') {
                                    $scope.title = 'Border Radius';
                                }

                                if ($scope.editor === 'hide-radius') {
                                    $scope.title = 'Border Settings';
                                }

                                $scope.save = function () {
                                    $modalInstance.close();
                                };
                            }
                        });
                    };
                    $scope.$watch('ngModel', function (val) {
                        val = val || {};
                        val.value = val.value || {};
                        if (Object.prototype.toString.call(val.value) === '[object Array]') {
                            val.value = {};
                        }
                        if (val.value.border_rounded === undefined) {
                            val.value.border_rounded = 'px';
                        }
                        $scope.ngModel = val;
                    });
                }]

            };
        }]);

});