var LSform = new Class({ initialize: function(){ this._modules=[]; this._fields=[]; this._elements=[]; this._tabBtns=[]; if ($type($('LSform_idform'))) { this.objecttype = $('LSform_objecttype').value; this.objectdn = $('LSform_objectdn').value; this.idform = $('LSform_idform').value; } this.initializeLSform(); this.initializeLSformLayout(); }, initializeLSform: function(el) { this.params={}; if (this.idform) { if (typeof(el) == 'undefined') { el = document; } el.getElements('ul.LSform').each(function(ul) { this._elements[ul.id] = new LSformElement(this,ul.id,ul); }, this); this.params=varLSdefault.LSjsConfig['LSform_'+this.idform]; if (!$type(this.params)) { this.params={}; } this._ajaxSubmit=this.params.ajaxSubmit; this.warnBox = new LSinfosBox({ name: 'LSformWarnBox', fxDuration: 600, closeBtn: 1, autoClose: 0 }); if ($type(this.params.warnings)) { this.warnTxt = ''; this.warnBox.display(this.warnTxt); } LSdebug(this.params); this.listAvailableDataEntryForm=$('LSform_listAvailableDataEntryForm'); if ($type(this.listAvailableDataEntryForm)) { this.listAvailableDataEntryForm.addEvent('change',this.onListAvailableDataEntryFormChange.bind(this)); } } LSforms = $$('form.LSform'); if ($type(LSforms[0])) { this.LSform = LSforms[0]; this.LSform.addEvent('submit',this.ajaxSubmit.bindWithEvent(this)); } }, initializeLSformLayout: function(el) { $$('.LSform_layout').each(function(el) { el.addClass('LSform_layout_active'); },this); var LIs = $$('li.LSform_layout'); LIs.each(function(li) { var Layout = this.getLayout(li); if ($type(Layout)) { if ($type(Layout.getElement('div.LSform-errors'))) { LSdebug('add'); li.addClass('LSform_layout_errors'); } else { if (!$type(Layout.getElement('div.LSform_attribute'))) { li.setStyle('display','none'); } } } li.getFirst('a').addEvent('click',this.onTabBtnClick.bindWithEvent(this,li)); },this); $$('li.LSform_layout a').each(function(a) { this._tabBtns[a.href]=a; },this); if (LIs.length != 0) { if ($type(this._tabBtns[window.location])) { this._currentTab = 'default_value'; this._tabBtns[window.location].fireEvent('click'); byDefault=0; } else { this._currentTab = 'default_value'; document.getElement('li.LSform_layout').getFirst('a').fireEvent('click'); } } var checkUrl = new RegExp('^(modify|create|view).php'); document.getElements('a.LSview-actions').each(function(a) { if (checkUrl.exec(a.get('href'))) { a.addEvent('click',this.onActionBtnClick.bindWithEvent(this,a)); } },this); }, onActionBtnClick: function(event,a) { if (!location.hash) { return true; } if ($type(event)) { event = new Event(event); event.stop(); } var href=a.href; var checkExistingHash=new RegExp('^([^#]+)#[^#]+$'); var cur = checkExistingHash.exec(href); if (cur) { href=cur[1]+location.hash; } else { href=href+location.hash; } window.location=href; }, getLayoutBtn: function(div) { var getName = new RegExp('LSform_layout_div_(.*)'); var name = getName.exec(div.id); if (!name) { return; } return $('LSform_layout_btn_'+name[1]); }, getLayoutNameFromBtn: function(btn) { var getName = new RegExp('LSform_layout_btn_(.*)'); var name = getName.exec(btn.id); if (!name) { return; } return name[1]; }, getLayout: function(btn) { var name = this.getLayoutNameFromBtn(btn); if (!name) { return; } return $('LSform_layout_div_'+name); }, onTabBtnClick: function(event,li) { if ($type(event)) { event = new Event(event); event.stop(); if ($type(event.target.blur)) { event.target.blur(); } } if (this._currentTab!=li) { if (this._currentTab!='default_value') { this._currentTab.removeClass('active'); var oldDiv = this.getLayout(this._currentTab); if ($type(oldDiv)) { oldDiv.removeClass('LSform_layout_current'); } } this._currentTab = li; li.addClass('active'); var a=li.getElement('a'); if ($type(a)) { location.hash='#'+this.getLayoutNameFromBtn(li); } var div = this.getLayout(li); if ($type(div)) { div.addClass('LSform_layout_current'); // Focus var ul = div.getElement('ul.LSform'); if ($type(ul)) { var el = ul.getElement('input'); if (!$type(el)) { el = ul.getElement('textarea'); } if (!$type(el)) { el = ul.getElement('select'); } if ($type(el)) { if(el.type!='hidden') { el.focus(); } } } } } }, addModule: function(name,obj) { this._modules[name]=obj; }, initializeModule: function(fieldType,li) { if ($type(this._modules[fieldType])) { try { this._modules[fieldType].reinitialize(li); } catch(e) { LSdebug('No reinitialize for ' + fieldType); } } }, addField: function(name,obj) { this._fields[name]=obj; }, clearFieldValue: function(name) { if ($type(this._fields[name]) && $type(this._fields[name].clearValue)) { this._fields[name].clearValue(); } }, getValue: function(fieldName) { var retVal = Array(); var inputs = this.getInput(fieldName); inputs.each(function(el){ if (el.value!="") { retVal.include(el.value); } },this); return retVal; }, getInput: function(fieldName) { var retVal = Array(); var ul = $(fieldName); if ($type(ul)) { var elements = ul.getElements('input'); elements.combine(ul.getElements('textarea')); elements.combine(ul.getElements('select')); var getName = new RegExp('([a-zA-Z0-9]*)(\[.*\])?'); elements.each(function(el){ var name = getName.exec(el.name); LSdebug(name); if (name) { if (name[1]==fieldName) { retVal.include(el); } } },this); } return retVal; }, ajaxSubmit: function(event) { this.checkUploadFileDefined(); if (this._ajaxSubmit) { event = new Event(event); event.stop(); this.LSformAjaxInput = new Element('input'); this.LSformAjaxInput.setProperties ({ type: 'hidden', name: 'ajax', value: '1' }); this.LSformAjaxInput.injectInside(this.LSform); this.LSform.set('send',{ data: this.LSform, onSuccess: this.onAjaxSubmitComplete.bind(this), url: this.LSform.get('action'), imgload: varLSdefault.loadingImgDisplay($(event.target),'inside') }); this.LSform.send(); } else { if($type(this.LSformAjaxInput)) { this.LSformAjaxInput.dispose(); } } }, checkUploadFileDefined: function() { this.LSform.getElements('input[type=file]').each(function(ipt) { if (ipt.files.length!=0) { this._ajaxSubmit=0; } }, this); }, onAjaxSubmitComplete: function(responseText, responseXML) { var data = JSON.decode(responseText); if ( varLSdefault.checkAjaxReturn(data) ) { this.resetErrors(); if ($type(data.LSformErrors) == 'object') { data.LSformErrors = new Hash(data.LSformErrors); data.LSformErrors.each(this.addError,this); } } }, resetErrors: function() { $$('div.LSform-errors').each(function(dd) { dd.destroy(); }); $$('div.LSform_attribute').each(function(div) { if (div.hasClass('has-error')) div.removeClass('has-error'); }); $$('li.LSform_layout_errors').each(function(li) { li.removeClass('LSform_layout_errors'); }); }, addError: function(errors,name) { var ul = $(name); if ($type(ul)) { errors = new Array(errors); errors.each(function(txt){ var div_group = new Element('div'); div_group.addClass('form-group'); div_group.addClass('LSform-errors'); var div_error = new Element('div'); div_error.addClass('col-md-offset-4'); div_error.addClass('col-md-8'); div_error.addClass('has-error'); div_error.set('html',txt); div_error.injectInside(div_group); div_group.injectAfter(this); },div_attr); if ($type(div_attr)) { div_attr.addClass('has-error'); } var layout = ul.getParent('div.LSform_layout_active'); if ($type(layout)) { var li = this.getLayoutBtn(layout); if($type(li)) { li.addClass('LSform_layout_errors'); } } } else { this.tmp=name+" :
"; this.warnBox.display(this.tmp); } }, onListAvailableDataEntryFormChange: function() { var url=window.location.pathname+"?LSobject="+this.objecttype if (this.listAvailableDataEntryForm.value!="") { url+="&LSform_dataEntryForm="+this.listAvailableDataEntryForm.value; } document.location=url; } }); window.addEvent(window.ie ? 'load' : 'domready', function() { varLSform = new LSform(); });