123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- var App = require('app');
- // move this to models cause some errors
- App.Form = Em.View.extend({
- /**
- * generating fields from fieldsOptions
- */
- classNames:["form-horizontal"],
- i18nprefix:'form.',
- fields:[],
- field:{},
- messages:[],
- object:false,
- result:0, // save result var (-1 - error; 0 - init; 1 - success)
- templateName:require('templates/common/form'),
- tagName:'form',
- init:function () {
- var thisForm = this;
- if (!this.fields.length) {
- this.fieldsOptions.forEach(
- function (options) {
- var field = App.FormField.create(options);
- field.set('form', thisForm);
- thisForm.fields.push(field);
- thisForm.set("field." + field.get('name'), field);
- }
- );
- }
- this._super();
- },
- getField:function (name) {
- var field = false;
- $.each(this.fields, function () {
- if (this.get('name') == name) {
- return field = this;
- }
- });
- return field;
- },
- isValid:function () {
- var isValid = true;
- $.each(this.fields, function () {
- this.validate();
- if (!this.get('isValid')) {
- isValid = false;
- console.warn(this.get('name') + " IS INVALID : " + this.get('errorMessage'));
- }
- })
- return isValid;
- },
- updateValues:function () {
- var object = this.get('object');
- if (object instanceof Em.Object) {
- $.each(this.fields, function () {
- this.set('value', (this.get('displayType') == 'password') ? '' : object.get(this.get('name')));
- });
- } else {
- this.clearValues();
- }
- }.observes("object"),
- clearValues:function () {
- $.each(this.fields, function () {
- this.set('value', '');
- });
- },
- visibleFields:function () {
- var fields = this.get('fields');
- var visible = [];
- fields.forEach(function (field) {
- if (!field.get('isHiddenField')) {
- visible.push(field);
- }
- });
- return visible;
- }.property('fields'),
- resultText:function () {
- var text = "";
- switch (this.get('result')) {
- case -1:
- text = this.t("form.saveError");
- break;
- case 1:
- text = this.t("form.saveSuccess");
- break;
- }
- return text;
- }.property('result')
- });
- App.FormField = Em.Object.extend({ // try to realize this as view
- name:'',
- displayName:'',
- // defaultValue:'', NOT REALIZED YET
- description:'',
- disabled:false,
- displayType:'string', // string, digits, number, directories, textarea, checkbox
- disableRequiredOnPresent:false,
- errorMessage:'',
- form:false,
- isRequired:true, // by default a config property is required
- unit:'',
- value:'',
- observeValue:function () {
- if (this.get('displayType') == 'hidden')
- console.warn(" FORM FIELD VALUE: ", this.get('value'));
- }.observes('value'),
- isValid:function () {
- return this.get('errorMessage') === '';
- }.property('errorMessage'),
- viewClass:function () {
- var options = {};
- var element = Em.TextField;
- switch (this.get('displayType')) {
- case 'checkbox':
- element = Em.Checkbox;
- options.checkedBinding = "value";
- break;
- case 'select':
- element = Em.Select;
- options.content = this.get('values');
- options.valueBinding = "value";
- options.optionValuePath = "content.value";
- options.optionLabelPath = "content.label";
- break;
- case 'password':
- options['type'] = 'password';
- break;
- case 'textarea':
- element = Em.TextArea;
- break;
- case 'hidden':
- options.type = "hidden";
- break;
- }
- return element.extend(options);
- }.property('displayType'),
- validate:function () {
- var value = this.get('value');
- var isError = false;
- this.set('errorMessage', '');
- if (this.get('isRequired') && (typeof value === 'string' && value.trim().length === 0)) {
- this.set('errorMessage', 'This is required');
- isError = true;
- }
- if (typeof value === 'string' && value.trim().length === 0) { // this is not to validate empty field.
- isError = true;
- }
- if (!isError) {
- if(this.get('validator') === 'passwordRetype'){
- var form = this.get('form');
- var passwordField = form.getField('password');
- if (passwordField.get('isValid')
- && (passwordField.get('value') != this.get('value'))
- && passwordField.get('value') && this.get('value')
- ) {
- this.set('errorMessage', "Passwords are different");
- isError = true;
- }
- }
- }
- if (!isError) {
- this.set('errorMessage', '');
- }
- },
- isHiddenField:function () {
- return this.get('displayType') == 'hidden';
- }.property('type')
- });
|