Merge remote-tracking branch 'origin/master'
This commit is contained in:
121
js/sql.js
121
js/sql.js
@@ -429,14 +429,57 @@ $(document).ready(function() {
|
||||
* @see getFieldName()
|
||||
*/
|
||||
var field_name = getFieldName($this_field, disp_mode);
|
||||
/**
|
||||
* @var relation_curr_value String current value of the field (for fields that are foreign keyed).
|
||||
*/
|
||||
var relation_curr_value = $this_field.find('a').text();
|
||||
/**
|
||||
* @var enum_curr_value String current value of the field (for fields that are of type enum).
|
||||
*/
|
||||
var enum_curr_value = $this_field.text();
|
||||
|
||||
if($this_field.is(':not(.not_null)')){
|
||||
// add a checkbox to mark null for all the field that are nullable.
|
||||
$this_field.html('<div class="null_div">Null :<input type="checkbox" class="checkbox_null_'+ field_name +'"></div>');
|
||||
// check the 'checkbox_null_<field_name>' if the value is null
|
||||
if($this_field.is('.null')) {
|
||||
$('.checkbox_null_' + field_name).attr('checked', true);
|
||||
}
|
||||
|
||||
// if the select/editor is changed un-check the 'checkbox_null_<field_name>'.
|
||||
if ($this_field.is('.enum, .set')) {
|
||||
var $editor = $this_field.find('select');
|
||||
} else if ($this_field.is('.relation')) {
|
||||
var $editor = $this_field.find('select');
|
||||
} else {
|
||||
var $editor = $this_field.find('textarea');
|
||||
}
|
||||
$editor.live('change', function(e) {
|
||||
$('.checkbox_null_' + field_name).attr('checked', false);
|
||||
})
|
||||
|
||||
// if 'chechbox_null_<field_name>' is clicked empty the select/editor.
|
||||
$('.checkbox_null_' + field_name).bind('click', function(e) {
|
||||
if ($this_field.is('.enum, .set')) {
|
||||
$this_field.find('select').selectedIndex = -1;
|
||||
} else if ($this_field.is('.relation')) {
|
||||
$this_field.find('select').attr('value', '');
|
||||
} else {
|
||||
$this_field.find('textarea').empty();
|
||||
}
|
||||
})
|
||||
|
||||
} else {
|
||||
$this_field.html('<div class="null_div"></div>');
|
||||
}
|
||||
|
||||
// In each input sibling, wrap the current value in a textarea
|
||||
// and store the current value in a hidden span
|
||||
if($this_field.is(':not(.truncated, .transformed, .relation, .enum, .null)')) {
|
||||
// handle non-truncated, non-transformed, non-relation values
|
||||
// We don't need to get any more data, just wrap the value
|
||||
$this_field.html('<textarea>'+data_value+'</textarea>')
|
||||
.append('<span class="original_data">'+data_value+'</span>');
|
||||
$this_field.append('<textarea>'+data_value+'</textarea>');
|
||||
$this_field.append('<span class="original_data">'+data_value+'</span>');
|
||||
$(".original_data").hide();
|
||||
}
|
||||
else if($this_field.is('.truncated, .transformed')) {
|
||||
@@ -457,8 +500,8 @@ $(document).ready(function() {
|
||||
'inline_edit' : true
|
||||
}, function(data) {
|
||||
if(data.success == true) {
|
||||
$this_field.html('<textarea>'+data.value+'</textarea>')
|
||||
.append('<span class="original_data">'+data_value+'</span>');
|
||||
$this_field.append('<textarea>'+data.value+'</textarea>');
|
||||
$this_field.append('<span class="original_data">'+data_value+'</span>');
|
||||
$(".original_data").hide();
|
||||
}
|
||||
else {
|
||||
@@ -470,11 +513,6 @@ $(document).ready(function() {
|
||||
/** @lends jQuery */
|
||||
//handle relations
|
||||
|
||||
/**
|
||||
* @var curr_value String containing the current value of this relational field
|
||||
*/
|
||||
var curr_value = $this_field.find('a').text();
|
||||
|
||||
/**
|
||||
* @var post_params Object containing parameters for the POST request
|
||||
*/
|
||||
@@ -485,22 +523,18 @@ $(document).ready(function() {
|
||||
'table' : window.parent.table,
|
||||
'column' : field_name,
|
||||
'token' : window.parent.token,
|
||||
'curr_value' : curr_value
|
||||
'curr_value' : relation_curr_value
|
||||
}
|
||||
|
||||
$.post('sql.php', post_params, function(data) {
|
||||
$this_field.html(data.dropdown)
|
||||
.append('<span class="original_data">'+data_value+'</span>');
|
||||
$this_field.append(data.dropdown);
|
||||
$this_field.append('<span class="original_data">'+data_value+'</span>');
|
||||
$(".original_data").hide();
|
||||
}) // end $.post()
|
||||
}
|
||||
else if($this_field.is('.enum')) {
|
||||
/** @lends jQuery */
|
||||
//handle enum fields
|
||||
/**
|
||||
* @var curr_value String containing the current value of this relational field
|
||||
*/
|
||||
var curr_value = $this_field.text();
|
||||
|
||||
/**
|
||||
* @var post_params Object containing parameters for the POST request
|
||||
@@ -512,19 +546,19 @@ $(document).ready(function() {
|
||||
'table' : window.parent.table,
|
||||
'column' : field_name,
|
||||
'token' : window.parent.token,
|
||||
'curr_value' : curr_value
|
||||
'curr_value' : enum_curr_value
|
||||
}
|
||||
|
||||
$.post('sql.php', post_params, function(data) {
|
||||
$this_field.html(data.dropdown)
|
||||
.append('<span class="original_data">'+data_value+'</span>');
|
||||
$this_field.append(data.dropdown);
|
||||
$this_field.append('<span class="original_data">'+data_value+'</span>');
|
||||
$(".original_data").hide();
|
||||
}) // end $.post()
|
||||
}
|
||||
else if($this_field.is('.null')) {
|
||||
//handle null fields
|
||||
$this_field.html('<textarea></textarea>')
|
||||
.append('<span class="original_data">NULL</span>');
|
||||
$this_field.append('<textarea></textarea>');
|
||||
$this_field.append('<span class="original_data">NULL</span>');
|
||||
$(".original_data").hide();
|
||||
}
|
||||
})
|
||||
@@ -584,10 +618,6 @@ $(document).ready(function() {
|
||||
}
|
||||
|
||||
// Collect values of all fields to submit, we don't know which changed
|
||||
/**
|
||||
* @var params_to_submit Array containing the name/value pairs of all fields
|
||||
*/
|
||||
var params_to_submit = {};
|
||||
/**
|
||||
* @var relation_fields Array containing the name/value pairs of relational fields
|
||||
*/
|
||||
@@ -601,6 +631,11 @@ $(document).ready(function() {
|
||||
*/
|
||||
var transformation_fields = false;
|
||||
|
||||
/**
|
||||
* @var sql_query String containing the SQL query to update this row
|
||||
*/
|
||||
var sql_query = 'UPDATE ' + window.parent.table + ' SET ';
|
||||
|
||||
$input_siblings.each(function() {
|
||||
/** @lends jQuery */
|
||||
/**
|
||||
@@ -621,7 +656,15 @@ $(document).ready(function() {
|
||||
if($this_field.is('.transformed')) {
|
||||
transformation_fields = true;
|
||||
}
|
||||
/**
|
||||
* @var is_null String capturing whether 'checkbox_null_<field_name>' is checked.
|
||||
*/
|
||||
var is_null = $this_field.find('input:checkbox').is(':checked');
|
||||
var value;
|
||||
|
||||
if (is_null) {
|
||||
sql_query += ' ' + field_name + "=NULL , ";
|
||||
} else {
|
||||
if($this_field.is(":not(.relation, .enum)")) {
|
||||
this_field_params[field_name] = $this_field.find('textarea').val();
|
||||
if($this_field.is('.transformed')) {
|
||||
@@ -646,25 +689,10 @@ $(document).ready(function() {
|
||||
}
|
||||
}
|
||||
|
||||
$.extend(params_to_submit, this_field_params);
|
||||
sql_query += ' ' + field_name + "='" + this_field_params[field_name].replace(/'/g, "''") + "' , ";
|
||||
}
|
||||
})
|
||||
|
||||
/**
|
||||
* @var sql_query String containing the SQL query to update this row
|
||||
*/
|
||||
var sql_query = 'UPDATE ' + window.parent.table + ' SET ';
|
||||
|
||||
// $.each() not used here since it cause problems when there is a column
|
||||
// in the table with the name 'length'. See bug #3184827
|
||||
var value;
|
||||
for (var key in params_to_submit) {
|
||||
value = params_to_submit[key];
|
||||
if (value.length == 0) {
|
||||
sql_query += ' ' + key + "=NULL, ";
|
||||
} else {
|
||||
sql_query += ' ' + key + "='" + value.replace(/'/g, "''") + "' , ";
|
||||
}
|
||||
}
|
||||
//Remove the last ',' appended in the above loop
|
||||
sql_query = sql_query.replace(/,\s$/, '');
|
||||
sql_query += ' WHERE ' + PMA_urldecode(where_clause);
|
||||
@@ -706,6 +734,13 @@ $(document).ready(function() {
|
||||
$input_siblings.each(function() {
|
||||
// Inline edit post has been successful.
|
||||
$this_sibling = $(this);
|
||||
|
||||
var is_null = $this_sibling.find('input:checkbox').is(':checked');
|
||||
if (is_null) {
|
||||
$this_sibling.html('NULL');
|
||||
$this_sibling.addClass('null');
|
||||
} else {
|
||||
$this_sibling.removeClass('null');
|
||||
if($this_sibling.is(':not(.relation, .enum)')) {
|
||||
/**
|
||||
* @var new_html String containing value of the data field after edit
|
||||
@@ -742,7 +777,6 @@ $(document).ready(function() {
|
||||
new_value = $test_element.text();
|
||||
}
|
||||
|
||||
|
||||
if($this_sibling.is('.relation')) {
|
||||
var field_name = getFieldName($this_sibling, disp_mode);
|
||||
$.each(data.relations, function(key, value) {
|
||||
@@ -757,6 +791,7 @@ $(document).ready(function() {
|
||||
}
|
||||
}
|
||||
$this_sibling.html(new_html);
|
||||
}
|
||||
})
|
||||
}
|
||||
else {
|
||||
|
@@ -1234,11 +1234,13 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
|
||||
// 2. Displays the rows' values
|
||||
for ($i = 0; $i < $fields_cnt; ++$i) {
|
||||
$meta = $fields_meta[$i];
|
||||
$not_null_class = $meta->not_null ? 'not_null' : '';
|
||||
$relation_class = isset($map[$meta->name]) ? 'relation' : '';
|
||||
$pointer = $i;
|
||||
$is_field_truncated = false;
|
||||
//If the previous column had blob data, we need to reset the class
|
||||
// to $inline_edit_class
|
||||
$class = 'data ' . $inline_edit_class . ' ' . $alternating_color_class;
|
||||
$class = 'data ' . $inline_edit_class . ' ' . $not_null_class . ' ' . $alternating_color_class . ' ' . $relation_class;
|
||||
|
||||
// See if this column should get highlight because it's used in the
|
||||
// where-query.
|
||||
@@ -2426,7 +2428,6 @@ function PMA_prepare_row_data($class, $condition_field, $analyzed_sql, $meta, $m
|
||||
$result = ' class="' . $class . ($condition_field ? ' condition' : '') . $nowrap
|
||||
. ' ' . ($is_field_truncated ? ' truncated' : '')
|
||||
. ($transform_function != $default_function ? ' transformed' : '')
|
||||
. (isset($map[$meta->name]) ? ' relation' : '')
|
||||
. $enum_class . $mime_type_class . '">';
|
||||
|
||||
if (isset($analyzed_sql[0]['select_expr']) && is_array($analyzed_sql[0]['select_expr'])) {
|
||||
|
@@ -159,6 +159,12 @@ fieldset.tblFooters {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
div.null_div {
|
||||
height: 20px;
|
||||
text-align: center;
|
||||
font-style:normal;
|
||||
}
|
||||
|
||||
fieldset .formelement {
|
||||
float: <?php echo $left; ?>;
|
||||
margin-<?php echo $right; ?>: 0.5em;
|
||||
@@ -235,6 +241,14 @@ th.condition {
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
|
||||
}
|
||||
|
||||
/**
|
||||
* cells with the value NULL
|
||||
*/
|
||||
td.null {
|
||||
font-style: italic;
|
||||
text-align: <?php echo $right; ?>;
|
||||
}
|
||||
|
||||
table .value {
|
||||
text-align: <?php echo $right; ?>;
|
||||
white-space: normal;
|
||||
|
Reference in New Issue
Block a user