mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-03-30 18:24:31 +00:00
Quick Edit for Tags, Categories and Link Categories, improvements to handling errors in quick and bulk edit.
git-svn-id: https://develop.svn.wordpress.org/trunk@9083 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
|
||||
(function($) {
|
||||
inlineEdit = {
|
||||
inlineEditPost = {
|
||||
|
||||
init : function() {
|
||||
var t = this, qeRow = $('#inline-edit'), bulkRow = $('#bulk-edit');
|
||||
@@ -12,20 +12,20 @@ inlineEdit = {
|
||||
t.rows = $('tr.iedit');
|
||||
|
||||
// prepare the edit row
|
||||
qeRow.dblclick(function() { inlineEdit.toggle(this); })
|
||||
.keyup(function(e) { if(e.which == 27) return inlineEdit.revert(); });
|
||||
qeRow.dblclick(function() { inlineEditPost.toggle(this); })
|
||||
.keyup(function(e) { if(e.which == 27) return inlineEditPost.revert(); });
|
||||
|
||||
bulkRow.dblclick(function() { inlineEdit.revert(); })
|
||||
.keyup(function(e) { if (e.which == 27) return inlineEdit.revert(); });
|
||||
bulkRow.dblclick(function() { inlineEditPost.revert(); })
|
||||
.keyup(function(e) { if (e.which == 27) return inlineEditPost.revert(); });
|
||||
|
||||
$('a.cancel', qeRow).click(function() { return inlineEdit.revert(); });
|
||||
$('a.save', qeRow).click(function() { return inlineEdit.save(this); });
|
||||
$('a.cancel', qeRow).click(function() { return inlineEditPost.revert(); });
|
||||
$('a.save', qeRow).click(function() { return inlineEditPost.save(this); });
|
||||
|
||||
$('a.cancel', bulkRow).click(function() { return inlineEdit.revert(); });
|
||||
$('a.save', bulkRow).click(function() { return inlineEdit.saveBulk(); });
|
||||
$('a.cancel', bulkRow).click(function() { return inlineEditPost.revert(); });
|
||||
$('a.save', bulkRow).click(function() { return inlineEditPost.saveBulk(); });
|
||||
|
||||
// add events
|
||||
t.rows.dblclick(function() { inlineEdit.toggle(this); });
|
||||
t.rows.dblclick(function() { inlineEditPost.toggle(this); });
|
||||
t.addEvents(t.rows);
|
||||
|
||||
$('#bulk-title-div').after(
|
||||
@@ -65,12 +65,12 @@ inlineEdit = {
|
||||
t.revert();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
$('#post-query-submit').click(function(e){
|
||||
if ( $('form#posts-filter tr.inline-editor').length > 0 )
|
||||
t.revert();
|
||||
});
|
||||
|
||||
|
||||
},
|
||||
|
||||
toggle : function(el) {
|
||||
@@ -82,7 +82,7 @@ inlineEdit = {
|
||||
addEvents : function(r) {
|
||||
r.each(function() {
|
||||
var row = $(this);
|
||||
$('a.editinline', row).click(function() { inlineEdit.edit(this); return false; });
|
||||
$('a.editinline', row).click(function() { inlineEditPost.edit(this); return false; });
|
||||
row.attr('title', inlineEditL10n.edit);
|
||||
});
|
||||
},
|
||||
@@ -104,7 +104,7 @@ inlineEdit = {
|
||||
|
||||
$('#bulk-titles').html(te);
|
||||
$('#bulk-titles a').click(function() {
|
||||
var id = $(this).attr('id').substr(1), r = inlineEdit.type+'-'+id;
|
||||
var id = $(this).attr('id').substr(1), r = inlineEditPost.type+'-'+id;
|
||||
|
||||
$('table.widefat input[value="'+id+'"]').attr('checked', '');
|
||||
$('#ttle'+id).remove();
|
||||
@@ -186,7 +186,7 @@ inlineEdit = {
|
||||
if( typeof(id) == 'object' )
|
||||
id = this.getId(id);
|
||||
|
||||
$('#edit-'+id+' .check-column').html('<img src="images/loading.gif" alt="" />');
|
||||
$('#edit-'+id+'.quick-edit-save').append('<img style="padding:0 15px;" src="images/loading.gif" alt="" />');
|
||||
|
||||
var params = {
|
||||
action: 'inline-save',
|
||||
@@ -201,12 +201,17 @@ inlineEdit = {
|
||||
// make ajax request
|
||||
$.post('admin-ajax.php', params,
|
||||
function(r) {
|
||||
var row = $(inlineEdit.what+id);
|
||||
$('#edit-'+id).remove();
|
||||
row.html($(r).html()).show()
|
||||
.animate( { backgroundColor: '#CCEEBB' }, 500)
|
||||
.animate( { backgroundColor: '#eefee7' }, 500);
|
||||
inlineEdit.addEvents(row);
|
||||
var row = $(inlineEditPost.what+id);
|
||||
|
||||
if (r) {
|
||||
$('#edit-'+id).remove();
|
||||
row.html($(r).html()).show()
|
||||
.animate( { backgroundColor: '#CCEEBB' }, 500)
|
||||
.animate( { backgroundColor: '#eefee7' }, 500);
|
||||
inlineEditPost.addEvents(row);
|
||||
} else {
|
||||
$('#edit-'+id+' .quick-edit-save').append('<span class="error">'+inlineEditL10n.error+'</span>');
|
||||
}
|
||||
}
|
||||
);
|
||||
return false;
|
||||
@@ -241,5 +246,5 @@ inlineEdit = {
|
||||
}
|
||||
};
|
||||
|
||||
$(document).ready(function(){inlineEdit.init();});
|
||||
$(document).ready(function(){inlineEditPost.init();});
|
||||
})(jQuery);
|
||||
145
wp-admin/js/inline-edit-tax.js
Normal file
145
wp-admin/js/inline-edit-tax.js
Normal file
@@ -0,0 +1,145 @@
|
||||
|
||||
(function($) {
|
||||
inlineEditTax = {
|
||||
|
||||
init : function() {
|
||||
var t = this, row = $('#inline-edit');
|
||||
|
||||
t.type = $('#the-list').attr('className').substr(5);
|
||||
t.what = '#'+t.type+'-';
|
||||
|
||||
// get all editable rows
|
||||
t.rows = $('tr.iedit');
|
||||
|
||||
// prepare the edit row
|
||||
row.dblclick(function() { inlineEditTax.toggle(this); })
|
||||
.keyup(function(e) { if(e.which == 27) return inlineEditTax.revert(); });
|
||||
|
||||
$('a.cancel', row).click(function() { return inlineEditTax.revert(); });
|
||||
$('a.save', row).click(function() { return inlineEditTax.save(this); });
|
||||
|
||||
// add events
|
||||
t.rows.dblclick(function() { inlineEditTax.toggle(this); });
|
||||
t.addEvents(t.rows);
|
||||
|
||||
$('#doaction, #doaction2, #post-query-submit').click(function(e){
|
||||
if ( $('form#posts-filter tr.inline-editor').length > 0 )
|
||||
t.revert();
|
||||
});
|
||||
},
|
||||
|
||||
toggle : function(el) {
|
||||
var t = this;
|
||||
|
||||
$(t.what+t.getId(el)).css('display') == 'none' ? t.revert() : t.edit(el);
|
||||
},
|
||||
|
||||
addEvents : function(r) {
|
||||
r.each(function() {
|
||||
var row = $(this);
|
||||
$('a.editinline', row).click(function() { inlineEditTax.edit(this); return false; });
|
||||
row.attr('title', inlineEditL10n.edit);
|
||||
});
|
||||
},
|
||||
|
||||
edit : function(id) {
|
||||
var t = this;
|
||||
t.revert();
|
||||
|
||||
if ( typeof(id) == 'object' )
|
||||
id = t.getId(id);
|
||||
|
||||
var editRow = $('#inline-edit').clone(true), rowData = $('#inline_'+id);
|
||||
|
||||
if ( $(t.what+id).hasClass('alternate') )
|
||||
$(editRow).addClass('alternate');
|
||||
|
||||
$(t.what+id).hide().after(editRow);
|
||||
|
||||
$(':input[name="name"]', editRow).val( $('.name', rowData).text() );
|
||||
$(':input[name="slug"]', editRow).val( $('.slug', rowData).text() );
|
||||
|
||||
// cat parents
|
||||
var cat_parent = $('.cat_parent', rowData).text();
|
||||
if ( cat_parent != '0' )
|
||||
$('select[name="parent"]', editRow).val(cat_parent);
|
||||
|
||||
// remove the current parent and children from the parent dropdown
|
||||
var pageOpt = $('select[name="parent"] option[value="'+id+'"]', editRow);
|
||||
if ( pageOpt.length > 0 ) {
|
||||
var pageLevel = pageOpt[0].className.split('-')[1], nextPage = pageOpt, pageLoop = true;
|
||||
while ( pageLoop ) {
|
||||
var nextPage = nextPage.next('option'), nextLevel = nextPage[0].className.split('-')[1];
|
||||
if ( nextLevel <= pageLevel ) {
|
||||
pageLoop = false;
|
||||
} else {
|
||||
nextPage.remove();
|
||||
nextPage = pageOpt;
|
||||
}
|
||||
}
|
||||
pageOpt.remove();
|
||||
}
|
||||
|
||||
$(editRow).attr('id', 'edit-'+id).addClass('inline-editor').show();
|
||||
$('.ptitle', editRow).eq(0).focus();
|
||||
|
||||
return false;
|
||||
},
|
||||
|
||||
save : function(id) {
|
||||
if( typeof(id) == 'object' )
|
||||
id = this.getId(id);
|
||||
|
||||
$('#edit-'+id+'.quick-edit-save').append('<img style="padding:0 15px;" src="images/loading.gif" alt="" />');
|
||||
|
||||
var params = {
|
||||
action: 'inline-save-tax',
|
||||
tax_type: this.type,
|
||||
tax_ID: id
|
||||
};
|
||||
|
||||
var fields = $('#edit-'+id+' :input').fieldSerialize();
|
||||
params = fields + '&' + $.param(params);
|
||||
|
||||
// make ajax request
|
||||
$.post('admin-ajax.php', params,
|
||||
function(r) {
|
||||
var row = $(inlineEditTax.what+id);
|
||||
|
||||
if (r) {
|
||||
if ( -1 != r.indexOf('<tr') ) {
|
||||
$('#edit-'+id).remove();
|
||||
row.html($(r).html()).show()
|
||||
.animate( { backgroundColor: '#CCEEBB' }, 500)
|
||||
.animate( { backgroundColor: '#eefee7' }, 500);
|
||||
inlineEditTax.addEvents(row);
|
||||
} else
|
||||
$('#edit-'+id+' .quick-edit-save .error').html(r).show();
|
||||
} else
|
||||
$('#edit-'+id+' .quick-edit-save .error').html(inlineEditL10n.error).show();
|
||||
}
|
||||
);
|
||||
return false;
|
||||
},
|
||||
|
||||
revert : function() {
|
||||
var id = $('table.widefat tr.inline-editor').attr('id');
|
||||
|
||||
if ( id ) {
|
||||
$('#'+id).remove();
|
||||
id = id.substr( id.lastIndexOf('-') + 1 );
|
||||
$(this.what+id).show();
|
||||
}
|
||||
|
||||
return false;
|
||||
},
|
||||
|
||||
getId : function(o) {
|
||||
var id = o.tagName == 'TR' ? o.id : $(o).parents('tr').attr('id');
|
||||
var parts = id.split('-');
|
||||
return parts[parts.length - 1];
|
||||
}
|
||||
};
|
||||
|
||||
$(document).ready(function(){inlineEditTax.init();});
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user