Undefined variable
[phpmyadmin/last10db.git] / js / tbl_change.js
bloba6d4be933e6e9bdff0a5177856a4f5699629c812
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 form controls when the "NULL" checkbox is checked
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;
159 function verificationsAfterFieldChange(urlField, multi_edit, theType){
160     var evt = window.event || arguments.callee.caller.arguments[0];
161     var target = evt.target || evt.srcElement;
163     // Unchecks the corresponding "NULL" control
164     $("input[name='fields_null[multi_edit][" + multi_edit + "][" + urlField + "]']").attr({'checked': false});
166     // Unchecks the Ignore checkbox for the current row
167     $("input[name='insert_ignore_" + multi_edit + "']").attr({'checked': false});
168     var $this_input = $("input[name='fields[multi_edit][" + multi_edit + "][" + urlField + "]']");
170     // Does this field come from datepicker?
171     if ($this_input.data('comes_from') == 'datepicker') {
172         // Yes, so do not validate because the final value is not yet in
173         // the field and hopefully the datepicker returns a valid date+time
174         $this_input.data('comes_from', '');
175         return true;
176     }
178     if(target.name.substring(0,6)=="fields") {
179         // validate for date time
180         if(theType=="datetime"||theType=="time"||theType=="date"||theType=="timestamp") {
181             $this_input.removeClass("invalid_value");
182             var dt_value = $this_input.val();
183             if(theType=="date"){
184                 if (! isDate(dt_value)) {
185                     $this_input.addClass("invalid_value");
186                     return false;
187                 }
188             } else if(theType=="time") {
189                 if (! isTime(dt_value)) {
190                     $this_input.addClass("invalid_value");
191                     return false;
192                 }
193             } else if(theType=="datetime"||theType=="timestamp") {
194                 tmstmp=false;
195                 if(dt_value == "CURRENT_TIMESTAMP") {
196                     return true;
197                 }
198                 if(theType=="timestamp") {
199                     tmstmp=true;
200                 }
201                 if(dt_value=="0000-00-00 00:00:00") {
202                     return true;
203                 }
204                 var dv=dt_value.indexOf(" ");
205                 if(dv==-1) {
206                     $this_input.addClass("invalid_value");
207                     return false;
208                 } else {
209                     if (! (isDate(dt_value.substring(0,dv),tmstmp) && isTime(dt_value.substring(dv+1)))) {
210                         $this_input.addClass("invalid_value");
211                         return false;
212                     }
213                 }
214             }
215         }
216         //validate for integer type
217         if(theType.substring(0,3) == "int"){
218             if(isNaN($this_input.val())){
219                 $this_input.addClass("invalid_value");
220                 return false;
221             }
222         }
223     }
225  /* End of datetime validation*/
228  * Ajax handlers for Change Table page
230  * Actions Ajaxified here:
231  * Submit Data to be inserted into the table
232  * Restart insertion with 'N' rows.
233  */
234 $(document).ready(function() {
236     // these were hidden via the "hide" class
237     $('.foreign_values_anchor').show();
239     /**
240      * Handles all current checkboxes for Null; this only takes care of the
241      * checkboxes on currently displayed rows as the rows generated by 
242      * "Continue insertion" are handled in the "Continue insertion" code 
243      * 
244      */
245     $('.checkbox_null').bind('click', function(e) {
246             nullify(
247                 // use hidden fields populated by tbl_change.php
248                 $(this).siblings('.nullify_code').val(),
249                 $(this).closest('tr').find('input:hidden').first().val(), 
250                 $(this).siblings('.hashed_field').val(),
251                 $(this).siblings('.multi_edit').val()
252             );
253     });
255     /**
256      * Submission of data to be inserted or updated 
257      * 
258      * @uses    PMA_ajaxShowMessage()
259      *
260      * This section has been deactivated. Here are the problems that I've
261      * noticed:
262      *
263      * 1. If the form contains a file upload field, the data does not reach
264      *    tbl_replace.php. This is because AJAX does not support file upload.
265      *    As a workaround I tried jquery.form.js version 2.49. The file
266      *    upload worked but afterwards the browser presented a tbl_replace.php
267      *    file and a choice to open or save.
268      *
269      * 2. This code can be called if we are editing or inserting. If editing,
270      *    the "and then" action can be "go back to this page" or "edit next
271      *    row", in which cases it makes sense to use AJAX. But the "go back
272      *    to previous page" and "insert another new row" actions, using AJAX 
273      *    has no obvious advantage. If inserting, the "go back to previous"
274      *    action needs a page refresh anyway. 
275      */
276     $("#insertFormDEACTIVATED").live('submit', function(event) {
278         /**
279          * @var the_form    Object referring to the insertion form
280          */
281         var $form = $(this);
282         event.preventDefault();
284         PMA_ajaxShowMessage();
285         PMA_prepareForAjaxRequest($form);
287         $.post($form.attr('action'), $form.serialize(), function(data) {
288             if (typeof data.success != 'undefined') {
289                 if(data.success == true) {
290                     PMA_ajaxShowMessage(data.message);
292                     $("#topmenucontainer")
293                     .next('div')
294                     .remove()
295                     .end()
296                     .after(data.sql_query);
298                     //Remove the empty notice div generated due to a NULL query passed to PMA_showMessage()
299                     var $notice_class = $("#topmenucontainer").next("div").find('.notice');
300                     if ($notice_class.text() == '') {
301                         $notice_class.remove();
302                     }
304                     var submit_type = $form.find("select[name='submit_type']").val();
305                     if ('insert' == submit_type || 'insertignore' == submit_type) {
306                         //Clear the data in the forms
307                         $form.find('input:reset').trigger('click');
308                     }
309                 } else {
310                     PMA_ajaxShowMessage(PMA_messages['strErrorProcessingRequest'] + " : "+data.error, "7000");
311                 }
312             } else {
313                 //happens for example when no change was done while editing
314                 $('#insertForm').remove();
315                 $('#topmenucontainer').after('<div id="sqlqueryresults"></div>');
316                 $('#sqlqueryresults').html(data);
317             }
318         })
319     }) // end submission of data to be inserted into table
321     /**
322      * Continue Insertion form
323      */
324     $("#insert_rows").live('change', function(event) {
325         event.preventDefault();
327         /**
328          * @var curr_rows   Number of current insert rows already on page
329          */
330         var curr_rows = $(".insertRowTable").length;
331         /**
332          * @var target_rows Number of rows the user wants
333          */
334         var target_rows = $("#insert_rows").val();
336         // remove all datepickers
337         $('.datefield,.datetimefield').each(function(){
338             $(this).datepicker('destroy');
339         });
341         if(curr_rows < target_rows ) {
342             while( curr_rows < target_rows ) {
344                 /**
345                  * @var $last_row    Object referring to the last row
346                  */
347                 var $last_row = $("#insertForm").find(".insertRowTable:last");
349                 // need to access this at more than one level
350                 // (also needs improvement because it should be calculated
351                 //  just once per cloned row, not once per column)
352                 var new_row_index = 0;
354                 //Clone the insert tables
355                 $last_row
356                 .clone()
357                 .insertBefore("#actions_panel")
358                 .find('input[name*=multi_edit],select[name*=multi_edit],textarea[name*=multi_edit]')
359                 .each(function() {
361                     var $this_element = $(this);
362                     /**
363                      * Extract the index from the name attribute for all input/select fields and increment it
364                      * name is of format funcs[multi_edit][10][<long random string of alphanum chars>]
365                      */
367                     /**
368                      * @var this_name   String containing name of the input/select elements
369                      */
370                     var this_name = $this_element.attr('name');
371                     /** split {@link this_name} at [10], so we have the parts that can be concatenated later */
372                     var name_parts = this_name.split(/\[\d+\]/);
373                     /** extract the [10] from  {@link name_parts} */
374                     var old_row_index_string = this_name.match(/\[\d+\]/)[0];
375                     /** extract 10 - had to split into two steps to accomodate double digits */
376                     var old_row_index = parseInt(old_row_index_string.match(/\d+/)[0]);
378                     /** calculate next index i.e. 11 */
379                     new_row_index = old_row_index + 1;
380                     /** generate the new name i.e. funcs[multi_edit][11][foobarbaz] */
381                     var new_name = name_parts[0] + '[' + new_row_index + ']' + name_parts[1];
383                     var hashed_field = name_parts[1].match(/\[(.+)\]/)[1];
384                     $this_element.attr('name', new_name);
386                     if ($this_element.is('.textfield')) {
387                         // do not remove the 'value' attribute for ENUM columns
388                         if ($this_element.closest('tr').find('span.column_type').html() != 'enum') {
389                             $this_element.attr('value', '');
390                         }
391                         $this_element
392                         .unbind('change')
393                         // Remove onchange attribute that was placed
394                         // by tbl_change.php; it refers to the wrong row index
395                         .attr('onchange', null)
396                         // Keep these values to be used when the element
397                         // will change
398                         .data('hashed_field', hashed_field)
399                         .data('new_row_index', new_row_index)
400                         .bind('change', function(e) {
401                             var $changed_element = $(this);
402                             verificationsAfterFieldChange(
403                                 $changed_element.data('hashed_field'), 
404                                 $changed_element.data('new_row_index'), 
405                                 $changed_element.closest('tr').find('span.column_type').html()
406                                 );
407                         });
408                     }
410                     if ($this_element.is('.checkbox_null')) {
411                         $this_element
412                         // this event was bound earlier by jQuery but
413                         // to the original row, not the cloned one, so unbind()
414                         .unbind('click')
415                         // Keep these values to be used when the element
416                         // will be clicked 
417                         .data('hashed_field', hashed_field)
418                         .data('new_row_index', new_row_index)
419                         .bind('click', function(e) {
420                                 var $changed_element = $(this);
421                                 nullify(
422                                     $changed_element.siblings('.nullify_code').val(),
423                                     $this_element.closest('tr').find('input:hidden').first().val(), 
424                                     $changed_element.data('hashed_field'), 
425                                     '[multi_edit][' + $changed_element.data('new_row_index') + ']'
426                                     );
427                         });
428                     }
429                 }) // end each
430                 .end()
431                 .find('.foreign_values_anchor')
432                 .each(function() {
433                         $anchor = $(this);
434                         var new_value = 'rownumber=' + new_row_index;
435                         // needs improvement in case something else inside
436                         // the href contains this pattern
437                         var new_href = $anchor.attr('href').replace(/rownumber=\d+/, new_value);
438                         $anchor.attr('href', new_href );
439                     });
441                 //Insert/Clone the ignore checkboxes
442                 if(curr_rows == 1 ) {
443                     $('<input id="insert_ignore_1" type="checkbox" name="insert_ignore_1" checked="checked" />')
444                     .insertBefore(".insertRowTable:last")
445                     .after('<label for="insert_ignore_1">' + PMA_messages['strIgnore'] + '</label>');
446                 }
447                 else {
449                     /**
450                      * @var last_checkbox   Object reference to the last checkbox in #insertForm
451                      */
452                     var last_checkbox = $("#insertForm").children('input:checkbox:last');
454                     /** name of {@link last_checkbox} */
455                     var last_checkbox_name = $(last_checkbox).attr('name');
456                     /** index of {@link last_checkbox} */
457                     var last_checkbox_index = parseInt(last_checkbox_name.match(/\d+/));
458                     /** name of new {@link last_checkbox} */
459                     var new_name = last_checkbox_name.replace(/\d+/,last_checkbox_index+1);
461                     $(last_checkbox)
462                     .clone()
463                     .attr({'id':new_name, 'name': new_name, 'checked': true})
464                     .add('label[for^=insert_ignore]:last')
465                     .clone()
466                     .attr('for', new_name)
467                     .before('<br />')
468                     .insertBefore(".insertRowTable:last");
469                 }
470                 curr_rows++;
471             }
472         // recompute tabindex for text fields and other controls at footer;
473         // IMO it's not really important to handle the tabindex for
474         // function and Null
475         var tabindex = 0;
476         $('.textfield') 
477         .each(function() {
478                 tabindex++;
479                 $(this).attr('tabindex', tabindex);
480                 // update the IDs of textfields to ensure that they are unique
481                 $(this).attr('id', "field_" + tabindex + "_3");
482             });
483         $('.control_at_footer')
484         .each(function() {
485                 tabindex++;
486                 $(this).attr('tabindex', tabindex);
487             });
488         // Add all the required datepickers back
489         $('.datefield,.datetimefield').each(function(){
490             PMA_addDatepicker($(this));
491             });
492         }
493         else if( curr_rows > target_rows) {
494             while(curr_rows > target_rows) {
495                 $("input[id^=insert_ignore]:last")
496                 .nextUntil("fieldset")
497                 .andSelf()
498                 .remove();
499                 curr_rows--;
500             }
501         }
502     })
503 }, 'top.frame_content'); //end $(document).ready()