bug #3138572 "Continue insertion" problems
[phpmyadmin-themes.git] / js / tbl_change.js
blob758add1c9c95f94e71f763a70be8dbf77f4911c7
1 /* vim: set expandtab sw=4 ts=4 sts=4: */
2 /**
3  * @fileoverview    function used in table data manipulation pages
4  *
5  * @requires    jQuery
6  * @requires    jQueryUI
7  * @requires    js/functions.js
8  *
9  */
11 /**
12  * Modify from controls when the "NULL" checkbox is selected
13  *
14  * @param   theType     string   the MySQL field type
15  * @param   urlField    string   the urlencoded field name - OBSOLETE
16  * @param   md5Field    string   the md5 hashed field name
17  * @param   multi_edit  string   the multi_edit row sequence number
18  *
19  * @return  boolean  always true
20  */
21 function nullify(theType, urlField, md5Field, multi_edit)
23     var rowForm = document.forms['insertForm'];
25     if (typeof(rowForm.elements['funcs' + multi_edit + '[' + md5Field + ']']) != 'undefined') {
26         rowForm.elements['funcs' + multi_edit + '[' + md5Field + ']'].selectedIndex = -1;
27     }
29     // "SET" field , "ENUM" field with more than 20 characters
30     // or foreign key field (drop-down)
31     if (theType == 1 || theType == 3 || theType == 4) {
32         rowForm.elements['field_' + md5Field + multi_edit + '[]'].selectedIndex = -1;
33     }
34     // Other "ENUM" field
35     else if (theType == 2) {
36         var elts     = rowForm.elements['field_' + md5Field + multi_edit + '[]'];
37         // when there is just one option in ENUM:
38         if (elts.checked) {
39             elts.checked = false;
40         } else {
41             var elts_cnt = elts.length;
42             for (var i = 0; i < elts_cnt; i++ ) {
43                 elts[i].checked = false;
44             } // end for
46         } // end if
47     }
48     // foreign key field (with browsing icon for foreign values)
49     else if (theType == 6) {
50         rowForm.elements['field_' + md5Field + multi_edit + '[]'].value = '';
51     }
52     // Other field types
53     else /*if (theType == 5)*/ {
54         rowForm.elements['fields' + multi_edit + '[' + md5Field + ']'].value = '';
55     } // end if... else if... else
57     return true;
58 } // end of the 'nullify()' function
61 /**
62  * javascript DateTime format validation.
63  * its used to prevent adding default (0000-00-00 00:00:00) to database when user enter wrong values
64  * Start of validation part
65  */
66 //function checks the number of days in febuary
67 function daysInFebruary (year){
68     return (((year % 4 == 0) && ( (!(year % 100 == 0)) || (year % 400 == 0))) ? 29 : 28 );
70 //function to convert single digit to double digit
71 function fractionReplace(num)
73     num=parseInt(num);
74     var res="00";
75     switch(num)
76     {
77         case 1:res= "01";break;
78         case 2:res= "02";break;
79         case 3:res= "03";break;
80         case 4:res= "04";break;
81         case 5:res= "05";break;
82         case 6:res= "06";break;
83         case 7:res= "07";break;
84         case 8:res= "08";break;
85         case 9:res= "09";break;
86         }
87     return res;
90 /* function to check the validity of date
91 * The following patterns are accepted in this validation (accepted in mysql as well)
92 * 1) 2001-12-23
93 * 2) 2001-1-2
94 * 3) 02-12-23
95 * 4) And instead of using '-' the following punctuations can be used (+,.,*,^,@,/) All these are accepted by mysql as well. Therefore no issues
97 function isDate(val,tmstmp)
99     val=val.replace(/[.|*|^|+|//|@]/g,'-');
100     var arrayVal=val.split("-");
101     for(var a=0;a<arrayVal.length;a++)
102     {
103         if(arrayVal[a].length==1)
104             arrayVal[a]=fractionReplace(arrayVal[a]);
105     }
106     val=arrayVal.join("-");
107     var pos=2;
108             dtexp=new RegExp(/^([0-9]{4})-(((01|03|05|07|08|10|12)-((0[0-9])|([1-2][0-9])|(3[0-1])))|((02|04|06|09|11)-((0[0-9])|([1-2][0-9])|30)))$/);
109         if(val.length==8)
110         {
111             dtexp=new RegExp(/^([0-9]{2})-(((01|03|05|07|08|10|12)-((0[0-9])|([1-2][0-9])|(3[0-1])))|((02|04|06|09|11)-((0[0-9])|([1-2][0-9])|30)))$/);
112             pos=0;
113         }
114         if(dtexp.test(val))
115         {
116             var month=parseInt(val.substring(pos+3,pos+5));
117             var day=parseInt(val.substring(pos+6,pos+8));
118             var year=parseInt(val.substring(0,pos+2));
119             if(month==2&&day>daysInFebruary(year))
120                 return false;
121             if(val.substring(0,pos+2).length==2)
122             {
123                 if(val.substring(0,pos+2).length==2)
124                     year=parseInt("20"+val.substring(0,pos+2));
125                 else
126                     year=parseInt("19"+val.substring(0,pos+2));
127             }
128             if(tmstmp==true)
129             {
130                 if(year<1978) return false;
131                 if(year>2038||(year>2037&&day>19&&month>=1)||(year>2037&&month>1)) return false;
132                 }
133         }
134         else
135             return false;
136         return true;
139 /* function to check the validity of time
140 * The following patterns are accepted in this validation (accepted in mysql as well)
141 * 1) 2:3:4
142 * 2) 2:23:43
144 function isTime(val)
146     var arrayVal=val.split(":");
147     for(var a=0;a<arrayVal.length;a++)
148     {
149         if(arrayVal[a].length==1)
150             arrayVal[a]=fractionReplace(arrayVal[a]);
151     }
152     val=arrayVal.join(":");
153     tmexp=new RegExp(/^(([0-1][0-9])|(2[0-3])):((0[0-9])|([1-5][0-9])):((0[0-9])|([1-5][0-9]))$/);
154         if(!tmexp.test(val))
155             return false;
156         return true;
158 //validate the datetime and integer
159 function Validator(urlField, multi_edit,theType){
160     var rowForm = document.forms['insertForm'];
161     var evt = window.event || arguments.callee.caller.arguments[0];
162     var target = evt.target || evt.srcElement;
163     unNullify(urlField, multi_edit);
165     if(target.name.substring(0,6)=="fields")
166     {
167         var dt=rowForm.elements['fields[multi_edit][' + multi_edit + '][' + urlField + ']'];
168         // validate for date time
169         if(theType=="datetime"||theType=="time"||theType=="date"||theType=="timestamp")
170         {
171             if(theType=="date"){
172                 if(!isDate(dt.value))
173                     {
174                         dt.className="invalid_value";
175                         return false;
176                     }
177             }
178             else if(theType=="time")
179             {
180                 if(!isTime(dt.value))
181                 {
182                     dt.className="invalid_value";
183                     return false;
184                 }
185             }
186             else if(theType=="datetime"||theType=="timestamp")
187             {
188                 tmstmp=false;
189                 if(dt.value=="CURRENT_TIMESTAMP")
190                 {
191                     dt.className="";
192                     return true;
193                 }
194                 if(theType=="timestamp")
195                 {
196                     tmstmp=true;
197                 }
198                 if(dt.value=="0000-00-00 00:00:00")
199                     return true;
200                 var dv=dt.value.indexOf(" ");
201                 if(dv==-1)
202                 {
203                     dt.className="invalid_value";
204                     return false;
205                 }
206                 else
207                 {
208                     if(!(isDate(dt.value.substring(0,dv),tmstmp)&&isTime(dt.value.substring(dv+1))))
209                     {
210                         dt.className="invalid_value";
211                         return false;
212                     }
213                 }
214             }
215         }
216         //validate for integer type
217         if(theType.substring(0,3)=="int"){
219             if(isNaN(dt.value)){
220                     dt.className="invalid_value";
221                     return false;
222             }
223         }
224     }
226  /* End of datetime validation*/
229  * Unchecks the "NULL" control when a function has been selected or a value
230  * entered
232  * @param   string   the urlencoded field name
233  * @param   string   the multi_edit row sequence number
235  * @return  boolean  always true
236  */
237 function unNullify(urlField, multi_edit)
239     var rowForm = document.forms['insertForm'];
241     if (typeof(rowForm.elements['fields_null[multi_edit][' + multi_edit + '][' + urlField + ']']) != 'undefined') {
242         rowForm.elements['fields_null[multi_edit][' + multi_edit + '][' + urlField + ']'].checked = false
243     } // end if
245     if (typeof(rowForm.elements['insert_ignore_' + multi_edit]) != 'undefined') {
246         rowForm.elements['insert_ignore_' + multi_edit].checked = false
247     } // end if
249     return true;
250 } // end of the 'unNullify()' function
253  * Ajax handlers for Change Table page
255  * Actions Ajaxified here:
256  * Submit Data to be inserted into the table
257  * Restart insertion with 'N' rows.
258  */
259 $(document).ready(function() {
261     /**
262      * Handles all current checkboxes for Null 
263      * 
264      */
265     $('.checkbox_null').bind('click', function(e) {
266             nullify(
267                 // use hidden fields populated by tbl_change.php
268                 $(this).siblings('.nullify_code').val(),
269                 $(this).closest('tr').find('input:hidden').first().val(), 
270                 $(this).siblings('.hashed_field').val(),
271                 $(this).siblings('.multi_edit').val()
272             );
273     });
275     /**
276      * Submission of data to be inserted or updated 
277      * 
278      * @uses    PMA_ajaxShowMessage()
279      *
280      * This section has been deactivated. Here are the problems that I've
281      * noticed:
282      *
283      * 1. If the form contains a file upload field, the data does not reach
284      *    tbl_replace.php. This is because AJAX does not support file upload.
285      *    As a workaround I tried jquery.form.js version 2.49. The file
286      *    upload worked but afterwards the browser presented a tbl_replace.php
287      *    file and a choice to open or save.
288      *
289      * 2. This code can be called if we are editing or inserting. If editing,
290      *    the "and then" action can be "go back to this page" or "edit next
291      *    row", in which cases it makes sense to use AJAX. But the "go back
292      *    to previous page" and "insert another new row" actions, using AJAX 
293      *    has no obvious advantage. If inserting, the "go back to previous"
294      *    action needs a page refresh anyway. 
295      */
296     $("#insertFormDEACTIVATED").live('submit', function(event) {
298         /**
299          * @var the_form    Object referring to the insertion form
300          */
301         var $form = $(this);
302         event.preventDefault();
304         PMA_ajaxShowMessage();
305         if (! $form.find('input:hidden').is('#ajax_request_hidden')) {
306             $form.append('<input type="hidden" id="ajax_request_hidden" name="ajax_request" value="true" />');
307         }
309         $.post($form.attr('action'), $form.serialize(), function(data) {
310             if (typeof data.success != 'undefined') {
311                 if(data.success == true) {
312                     PMA_ajaxShowMessage(data.message);
314                     $("#topmenucontainer")
315                     .next('div')
316                     .remove()
317                     .end()
318                     .after(data.sql_query);
320                     //Remove the empty notice div generated due to a NULL query passed to PMA_showMessage()
321                     var $notice_class = $("#topmenucontainer").next("div").find('.notice');
322                     if ($notice_class.text() == '') {
323                         $notice_class.remove();
324                     }
326                     var submit_type = $form.find("select[name='submit_type']").val();
327                     if ('insert' == submit_type || 'insertignore' == submit_type) {
328                         //Clear the data in the forms
329                         $form.find('input:reset').trigger('click');
330                     }
331                 } else {
332                     PMA_ajaxShowMessage(PMA_messages['strErrorProcessingRequest'] + " : "+data.error, "7000");
333                 }
334             } else {
335                 //happens for example when no change was done while editing
336                 $('#insertForm').remove();
337                 $('#topmenucontainer').after('<div id="sqlqueryresults"></div>');
338                 $('#sqlqueryresults').html(data);
339             }
340         })
341     }) // end submission of data to be inserted into table
343     /**
344      * Continue Insertion form
345      */
346     $("#insert_rows").live('change', function(event) {
347         event.preventDefault();
349         /**
350          * @var curr_rows   Number of current insert rows already on page
351          */
352         var curr_rows = $(".insertRowTable").length;
353         /**
354          * @var target_rows Number of rows the user wants
355          */
356         var target_rows = $("#insert_rows").val();
358         if(curr_rows < target_rows ) {
359             while( curr_rows < target_rows ) {
361                 /**
362                  * @var last_row    Object referring to the last row
363                  */
364                 var last_row = $("#insertForm").find(".insertRowTable:last");
366                 //Clone the insert tables
367                 $(last_row)
368                 .clone()
369                 .insertBefore("#insertForm > fieldset")
370                 .find('input[name*=multi_edit],select[name*=multi_edit]')
371                 .each(function() {
373                     /**
374                      * Extract the index from the name attribute for all input/select fields and increment it
375                      * name is of format funcs[multi_edit][10][<long random string of alphanum chars>]
376                      */
378                     /**
379                      * @var this_name   String containing name of the input/select elements
380                      */
381                     var this_name = $(this).attr('name');
382                     /** split {@link this_name} at [10], so we have the parts that can be concatenated later */
383                     var name_parts = this_name.split(/\[\d+\]/);
384                     /** extract the [10] from  {@link name_parts} */
385                     var old_row_index_string = this_name.match(/\[\d+\]/)[0];
386                     /** extract 10 - had to split into two steps to accomodate double digits */
387                     var old_row_index = parseInt(old_row_index_string.match(/\d+/)[0]);
389                     /** calculate next index i.e. 11 */
390                     var new_row_index = old_row_index + 1;
391                     /** generate the new name i.e. funcs[multi_edit][11][foobarbaz] */
392                     var new_name = name_parts[0] + '[' + new_row_index + ']' + name_parts[1];
394                     var hashed_field = name_parts[1].match(/\[(.+)\]/)[1];
395                     $(this).attr('name', new_name);
397                     $(this).filter('.textfield')
398                         .attr('value', '')
399                         .unbind('change')
400                         .attr('onchange', null)
401                         .bind('change', function(e) {
402                             Validator(
403                                 hashed_field, 
404                                 new_row_index, 
405                                 $(this).closest('tr').find('span.column_type').html()
406                                 );
407                         })
408                         .end();
410                     $(this).filter('.checkbox_null')
411                         .bind('click', function(e) {
412                                 nullify(
413                                     $(this).siblings('.nullify_code').val(),
414                                     $(this).closest('tr').find('input:hidden').first().val(), 
415                                     hashed_field, 
416                                     '[multi_edit][' + new_row_index + ']'
417                                     );
418                         }) 
419                         .end();
421                 });
423                 //Insert/Clone the ignore checkboxes
424                 if(curr_rows == 1 ) {
425                     $('<input id="insert_ignore_1" type="checkbox" name="insert_ignore_1" checked="checked" />')
426                     .insertBefore(".insertRowTable:last")
427                     .after('<label for="insert_ignore_1">' + PMA_messages['strIgnore'] + '</label>');
428                 }
429                 else {
431                     /**
432                      * @var last_checkbox   Object reference to the last checkbox in #insertForm
433                      */
434                     var last_checkbox = $("#insertForm").children('input:checkbox:last');
436                     /** name of {@link last_checkbox} */
437                     var last_checkbox_name = $(last_checkbox).attr('name');
438                     /** index of {@link last_checkbox} */
439                     var last_checkbox_index = parseInt(last_checkbox_name.match(/\d+/));
440                     /** name of new {@link last_checkbox} */
441                     var new_name = last_checkbox_name.replace(/\d+/,last_checkbox_index+1);
443                     $(last_checkbox)
444                     .clone()
445                     .attr({'id':new_name, 'name': new_name, 'checked': true})
446                     .add('label[for^=insert_ignore]:last')
447                     .clone()
448                     .attr('for', new_name)
449                     .before('<br />')
450                     .insertBefore(".insertRowTable:last");
451                 }
452                 curr_rows++;
453             }
454         // recompute tabindex for text fields and other controls at footer;
455         // IMO it's not really important to handle the tabindex for
456         // function and Null
457         var tabindex = 0;
458         $('.textfield') 
459         .each(function() {
460                 tabindex++;
461                 $(this).attr('tabindex', tabindex);
462             });
463         $('.control_at_footer')
464         .each(function() {
465                 tabindex++;
466                 $(this).attr('tabindex', tabindex);
467             });
468         }
469         else if( curr_rows > target_rows) {
470             while(curr_rows > target_rows) {
471                 $("input[id^=insert_ignore]:last")
472                 .nextUntil("fieldset")
473                 .andSelf()
474                 .remove();
475                 curr_rows--;
476             }
477         }
478     })
479 }, 'top.frame_content'); //end $(document).ready()