Additional corrections to latest js changes.
[fa-stable.git] / js / utils.js
1 /**********************************************************************
2     Copyright (C) FrontAccounting, LLC.
3         Released under the terms of the GNU General Public License, GPL, 
4         as published by the Free Software Foundation, either version 3 
5         of the License, or (at your option) any later version.
6     This program is distributed in the hope that it will be useful,
7     but WITHOUT ANY WARRANTY; without even the implied warranty of
8     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
9     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
10 ***********************************************************************/
11 function set_mark(img) {
12         var box = document.getElementById('ajaxmark');
13         if(img) box.src = user.theme+'images/'+ img;
14         box.style.visibility = img ? 'visible' : 'hidden'
15 }
16
17 //
18 //      JsHttpRequest class extensions.
19 //
20 // Main functions for asynchronus form submitions
21 //      Trigger is the source of request and can have following forms:
22 //      - input object - all form values are also submited
23 //  - arbitrary string - POST var trigger with value 1 is added to request;
24 //              if form parameter exists also form values are submited, otherwise
25 //              request is directed to current location 
26 // 
27 JsHttpRequest.request= function(trigger, form, tout) {
28         tout = tout | 3000;     // default timeout value
29         set_mark(tout>5000 ? 'progressbar.gif' : 'ajax-loader.gif');
30         JsHttpRequest._request(trigger, form, tout, 2);
31 }
32
33 JsHttpRequest._request = function(trigger, form, tout, retry) {
34
35                 if (trigger.tagName=='A') {
36                         var content = {};
37                         var upload = 0;
38                         var url = trigger.href;
39                         if (trigger.id) content[trigger.id] = 1;
40                 } else {
41                 var submitObj = typeof(trigger) == "string" ? 
42                         document.getElementsByName(trigger)[0] : trigger;
43                 
44                 form = form || (submitObj && submitObj.form);
45
46                 var upload = form && form.enctype=='multipart/form-data';
47                 
48                 var url = form ? form.action : 
49                   window.location.toString();
50
51                 var content = this.formInputs(trigger, form, upload);
52
53                 if (!form) url = url.substring(0, url.indexOf('?'));
54                 
55                 if (!submitObj) {
56                         content[trigger] = 1;
57                         }
58                 }
59                         // this is to avoid caching problems
60                 content['_random'] = Math.random()*1234567;
61         
62                 var tcheck = setTimeout(
63                         function() {
64                                 for(var id in JsHttpRequest.PENDING)  {
65                                         var call = JsHttpRequest.PENDING[id];
66                                         if (call != false) {
67                                         if (call._ldObj.xr) // needed for gecko
68                                                 call._ldObj.xr.onreadystatechange = function(){};
69                                         call.abort(); // why this doesn't kill request in firebug?
70 //                                              call._ldObj.xr.abort();
71                                                 delete JsHttpRequest.PENDING[id];
72                                         }
73                                 }
74                                 set_mark(retry ? 'ajax-loader2.gif':'warning.png' );
75                                 if(retry)
76                                         JsHttpRequest._request(trigger, form, tout, retry-1);
77                         }, tout );
78
79         JsHttpRequest.query(
80             (upload ? "form." : "")+"POST "+url, // force form loader
81                 content,
82             // Function is called when an answer arrives. 
83             function(result, errors) {
84                 // Write the answer.
85                         var newwin = 0;
86                 if (result) {
87                           for(var i in result ) { 
88                           atom = result[i];
89                           cmd = atom['n'];
90                           property = atom['p'];
91                           type = atom['c'];
92                           id = atom['t'];
93                           data = atom['data'];
94 //                              debug(cmd+':'+property+':'+type+':'+id);
95                         // seek element by id if there is no elemnt with given name
96                           objElement = document.getElementsByName(id)[0] || document.getElementById(id);
97                   if(cmd=='as') {
98                                   eval("objElement.setAttribute('"+property+"',"+data+");");
99                           } else if(cmd=='up') {
100 //                              if(!objElement) alert('No element "'+id+'"');
101                                 if(objElement) {
102                             if (objElement.tagName == 'INPUT' || objElement.tagName == 'TEXTAREA')
103                                   objElement.value = data;
104                             else
105                                   objElement.innerHTML = data; // selector, div, span etc
106                                 }
107                           } else if(cmd=='di') { // disable/enable element
108                                   objElement.disabled = data;
109                           } else if(cmd=='fc') { // set focus
110                                   _focus = data;
111                           } else if(cmd=='js') {        // evaluate js code
112                                   eval(data);
113                           } else if(cmd=='rd') {        // client-side redirection
114                                   window.location = data;
115                           } else if(cmd=='pu') {        // pop-up
116                                   newwin = 1;
117                                   window.open(data,'REP_WINDOW','toolbar=no,scrollbar=no,resizable=yes,menubar=no');
118                           } else {
119                                   errors = errors+'<br>Unknown ajax function: '+cmd;
120                         }
121                   }
122                  if(tcheck)
123                    JsHttpRequest.clearTimeout(tcheck);
124         // Write errors to the debug div.
125                   document.getElementById('msgbox').innerHTML = errors;
126                   set_mark();
127
128                   Behaviour.apply();
129
130                   if (errors.length>0)
131                         window.scrollTo(0,0);
132                         //document.getElementById('msgbox').scrollIntoView(true);
133           // Restore focus if we've just lost focus because of DOM element refresh
134                         if(!newwin) { 
135                                 setFocus();
136                         }
137                 }
138             },
139                 false  // do not disable caching
140         );
141         }
142         // collect all form input values plus inp trigger value
143         JsHttpRequest.formInputs = function(inp, objForm, upload)
144         {
145                 var submitObj = inp;
146                 var q = {};
147
148                 if (typeof(inp) == "string")
149                         submitObj = document.getElementsByName(inp)[0];
150                 else
151                         submitObj = inp;
152                 
153                 objForm = objForm || (submitObj && submitObj.form);
154
155                 if (objForm)
156                 {
157                         var formElements = objForm.elements;
158                         for( var i=0; i < formElements.length; i++)
159                         {
160                           var el = formElements[i];
161                           var name = el.name;
162                                 if (!el.name) continue;
163                                 if(upload) { // for form containing file inputs collect all 
164                                         // form elements and add value of trigger submit button
165                                         // (internally form is submitted via form.submit() not button click())
166                                         q[name] = submitObj.type=='submit' && el==submitObj ? el.value : el;
167                                         continue;
168                                 }
169                                 if (el.type )
170                                   if( 
171                                   ((el.type == 'radio' || el.type == 'checkbox') && el.checked == false)
172                                   || (el.type == 'submit' && (!submitObj || el.name!=submitObj.name)))
173                                         continue;
174                                 if (el.disabled && el.disabled == true)
175                                         continue;
176                                 if (name)
177                                 {
178                                         if(el.type=='select-multiple')
179                                         {
180                                                 for (var j = 0; j < el.length; j++)
181                                                 {
182                                                         if (el.options[j].selected == true)
183                                                                 q[name] = el.options[j].value;
184                                                 }
185                                         }
186                                         else
187                                         {
188                                                 q[name] = el.value;
189                                         }
190                                 } 
191                         }
192                 }
193                 return q;
194         }
195 //
196 //      User price formatting
197 //
198 function price_format(post, num, dec, label, color) {
199         var el = label ? document.getElementById(post) : document.getElementsByName(post)[0];
200         //num = num.toString().replace(/\$|\,/g,'');
201         if(isNaN(num))
202                 num = "0";
203         sign = (num == (num = Math.abs(num)));
204         if(dec<0) dec = 2;
205         decsize = Math.pow(10, dec);
206         num = Math.floor(num*decsize+0.50000000001);
207         cents = num%decsize;
208         num = Math.floor(num/decsize).toString();
209         for( i=cents.toString().length; i<dec; i++){
210                 cents = "0" + cents;
211         }
212         for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
213                 num = num.substring(0,num.length-(4*i+3))+user.ts+
214                         num.substring(num.length-(4*i+3));
215          num = ((sign)?'':'-') + num;
216          if(dec!=0) num = num + user.ds + cents;
217         if(label)
218             el.innerHTML = num;
219         else
220             el.value = num;
221         if(color) {
222                         el.style.color = (sign) ? '' : '#FF0000';
223         }
224 }
225
226 function get_amount(doc, label) {
227             if(label)
228                 var val = document.getElementById(doc).innerHTML;
229             else
230                 var val = document.getElementsByName(doc)[0].value;
231                 val = val.replace(new RegExp('\\'+user.ts, 'g'),'');
232                 val = +val.replace(new RegExp('\\'+user.ds, 'g'),'.');
233                 return isNaN(val) ? 0 : val;
234 }
235
236 function goBack() {
237         if (window.history.length <= 1)
238          window.close();
239         else
240          window.history.go(-1);
241 }
242
243 function setFocus(name, byId) {
244   if(document.location.pathname.indexOf('index.php') != -1) {
245         // this is application menu page - set focus on first link
246         // var el = document.getElementById('msgbox');
247         // TODO find first link after msgbox and set focus
248   }
249   if(!name) {
250         if (_focus)     
251                 name = _focus;  // last focus set in onfocus handlers
252         else 
253          if (document.forms.length) {   // no current focus (first page display) -  set it from from last form
254           var cur = document.getElementsByName('_focus')[document.forms.length-1];
255           if(cur) name = cur.value;
256         }
257   }
258   if(byId)
259         el = document.getElementById(name);
260   else
261         el = document.getElementsByName(name)[0];
262
263   if(el && el.focus) {
264     // The timeout is needed to prevent unpredictable behaviour on IE & Gecko.
265     // Using tmp var prevents crash on IE5
266         
267     var tmp = function() {el.focus(); if (el.select) el.select();};
268         setTimeout(tmp, 0);
269   }
270 }