Sha256: c4380fc14fe40addae4092833777ff9cffe43f2c444d38aa23be238299d42eb1

Contents?: true

Size: 1.86 KB

Versions: 12

Compression:

Stored size: 1.86 KB

Contents

/**
 * Copyright 2014 Red Hat, Inc.
 *
 * This software is licensed to you under the GNU General Public
 * License as published by the Free Software Foundation; either version
 * 2 of the License (GPLv2) or (at your option) any later version.
 * There is NO WARRANTY for this software, express or implied,
 * including the implied warranties of MERCHANTABILITY,
 * NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
 * have received a copy of GPLv2 along with this software; if not, see
 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
 */

/**
 * @ngdoc directive
 * @name Bastion.components.directive:bstFormButtons
 *
 * @description
 *   Encapsulates the standard structure and styling for create and cancel buttons
 *   when used with a form.
 *
 * @example
 *      <div bst-form-buttons
             on-cancel="transitionTo('product.index')"
             on-save="save(product)"
             working="working">
        </div>
 */
angular.module('Bastion.components').directive('bstFormButtons', function () {
    return {
        replace: true,
        require: '^form',
        templateUrl: 'components/views/bst-form-buttons.html',
        scope: {
            handleCancel: '&onCancel',
            handleSave: '&onSave',
            working: '='
        },
        link: function (scope, iElement, iAttrs, controller) {

            if (angular.isUndefined(scope.working)) {
                scope.working = false;
            }

            scope.isInvalid = function () {
                var invalid = controller.$invalid;

                angular.forEach(controller, function (value) {
                    if (value && value.$error) {
                        if (value.$error.server) {
                            invalid = false;
                        }
                    }
                });

                return invalid;
            };
        }
    };
});

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
bastion-0.3.3 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-1.0.1 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-0.3.2 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-1.0.0 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-0.3.1 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-0.3.0 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-0.2.9 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-0.2.8 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-0.2.7 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-0.2.6 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-0.2.5 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js
bastion-0.2.3 app/assets/javascripts/bastion/components/bst-form-buttons.directive.js