diff options
author | Petr VobornÃk <pvoborni@redhat.com> | 2012-02-22 17:12:11 +0100 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2012-02-29 12:59:13 +0100 |
commit | 52208e8b40f98e7a7cc0c91b15803003740efa92 (patch) | |
tree | bf513a356f7f440bfb5c9cf12303a974b0a405af /install/ui/field.js | |
parent | 25bda1e860a55faa7975cf37b69a74f2c138d309 (diff) | |
download | freeipa.git-52208e8b40f98e7a7cc0c91b15803003740efa92.tar.gz freeipa.git-52208e8b40f98e7a7cc0c91b15803003740efa92.tar.xz freeipa.git-52208e8b40f98e7a7cc0c91b15803003740efa92.zip |
Moved is_empty method from field to IPA object
is_empty method represents IPA UI standard of evaluating whether value is empty. Therefore is should be placed in IPA object instead of IPA.field to allow reuse in different locations.
https://fedorahosted.org/freeipa/ticket/2351
Diffstat (limited to 'install/ui/field.js')
-rw-r--r-- | install/ui/field.js | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/install/ui/field.js b/install/ui/field.js index 2922ce0f..01a0c0f4 100644 --- a/install/ui/field.js +++ b/install/ui/field.js @@ -102,7 +102,7 @@ IPA.field = function(spec) { that.validate_required = function() { var values = that.save(); - if (that.is_empty(values) && that.is_required() && that.enabled) { + if (IPA.is_empty(values) && that.is_required() && that.enabled) { that.valid = false; that.show_error(IPA.messages.widget.validation.required); return false; @@ -123,7 +123,7 @@ IPA.field = function(spec) { var values = that.save(); - if (that.is_empty(values)) { + if (IPA.is_empty(values)) { return that.valid; } @@ -267,8 +267,8 @@ IPA.field = function(spec) { var values = that.save(); //check for empty value: null, [''], '', [] - var orig_empty = that.is_empty(that.values); - var new_empty= that.is_empty(values); + var orig_empty = IPA.is_empty(that.values); + var new_empty= IPA.is_empty(values); if (orig_empty && new_empty) return false; if (orig_empty != new_empty) return true; @@ -295,22 +295,6 @@ IPA.field = function(spec) { return true; }; - that.is_empty = function(value) { - - var empty = false; - - if (!value) empty = true; - - if (value instanceof Array) { - empty = empty || value.length === 0 || - (value.length === 1) && (value[0] === ''); - } - - if (value === '') empty = true; - - return empty; - }; - /** * This function compares the original values and the * values entered in the UI. If the values have changed @@ -560,7 +544,7 @@ IPA.multivalued_field = function(spec) { that.hide_error(); that.valid = true; - if (that.is_empty(values)) { + if (IPA.is_empty(values)) { return that.valid; } |