2013-11-19 05:31:42 +01:00
|
|
|
/* global inlineEditL10n, ajaxurl, typenow */
|
|
|
|
|
|
|
|
var inlineEditPost;
|
2012-08-23 02:04:18 +02:00
|
|
|
(function($) {
|
|
|
|
inlineEditPost = {
|
|
|
|
|
|
|
|
init : function(){
|
|
|
|
var t = this, qeRow = $('#inline-edit'), bulkRow = $('#bulk-edit');
|
|
|
|
|
|
|
|
t.type = $('table.widefat').hasClass('pages') ? 'page' : 'post';
|
|
|
|
t.what = '#post-';
|
|
|
|
|
|
|
|
// prepare the edit rows
|
|
|
|
qeRow.keyup(function(e){
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( e.which === 27 ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
return inlineEditPost.revert();
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
bulkRow.keyup(function(e){
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( e.which === 27 ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
return inlineEditPost.revert();
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$('a.cancel', qeRow).click(function(){
|
|
|
|
return inlineEditPost.revert();
|
|
|
|
});
|
|
|
|
$('a.save', qeRow).click(function(){
|
|
|
|
return inlineEditPost.save(this);
|
|
|
|
});
|
|
|
|
$('td', qeRow).keydown(function(e){
|
2015-01-24 16:06:43 +01:00
|
|
|
if ( e.which === 13 && ! $( e.target ).hasClass( 'cancel' ) ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
return inlineEditPost.save(this);
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$('a.cancel', bulkRow).click(function(){
|
|
|
|
return inlineEditPost.revert();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#inline-edit .inline-edit-private input[value="private"]').click( function(){
|
|
|
|
var pw = $('input.inline-edit-password-input');
|
|
|
|
if ( $(this).prop('checked') ) {
|
|
|
|
pw.val('').prop('disabled', true);
|
|
|
|
} else {
|
|
|
|
pw.prop('disabled', false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// add events
|
2013-02-16 18:46:12 +01:00
|
|
|
$('#the-list').on('click', 'a.editinline', function(){
|
2012-08-23 02:04:18 +02:00
|
|
|
inlineEditPost.edit(this);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2014-05-28 15:49:21 +02:00
|
|
|
$('#bulk-edit').find('fieldset:first').after(
|
2012-08-23 02:04:18 +02:00
|
|
|
$('#inline-edit fieldset.inline-edit-categories').clone()
|
|
|
|
).siblings( 'fieldset:last' ).prepend(
|
|
|
|
$('#inline-edit label.inline-edit-tags').clone()
|
|
|
|
);
|
|
|
|
|
|
|
|
$('select[name="_status"] option[value="future"]', bulkRow).remove();
|
|
|
|
|
|
|
|
$('#doaction, #doaction2').click(function(e){
|
|
|
|
var n = $(this).attr('id').substr(2);
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( 'edit' === $( 'select[name="' + n + '"]' ).val() ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
e.preventDefault();
|
|
|
|
t.setBulk();
|
|
|
|
} else if ( $('form#posts-filter tr.inline-editor').length > 0 ) {
|
|
|
|
t.revert();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
toggle : function(el){
|
|
|
|
var t = this;
|
2013-11-19 05:31:42 +01:00
|
|
|
$( t.what + t.getId( el ) ).css( 'display' ) === 'none' ? t.revert() : t.edit( el );
|
2012-08-23 02:04:18 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
setBulk : function(){
|
|
|
|
var te = '', type = this.type, tax, c = true;
|
|
|
|
this.revert();
|
|
|
|
|
|
|
|
$('#bulk-edit td').attr('colspan', $('.widefat:first thead th:visible').length);
|
2015-01-14 23:13:03 +01:00
|
|
|
// Insert the editor at the top of the table with an empty row above to maintain zebra striping.
|
|
|
|
$('table.widefat tbody').prepend( $('#bulk-edit') ).prepend('<tr class="hidden"></tr>');
|
2012-08-23 02:04:18 +02:00
|
|
|
$('#bulk-edit').addClass('inline-editor').show();
|
|
|
|
|
2013-11-19 05:31:42 +01:00
|
|
|
$( 'tbody th.check-column input[type="checkbox"]' ).each( function() {
|
2012-08-23 02:04:18 +02:00
|
|
|
if ( $(this).prop('checked') ) {
|
|
|
|
c = false;
|
|
|
|
var id = $(this).val(), theTitle;
|
2012-11-29 03:42:06 +01:00
|
|
|
theTitle = $('#inline_'+id+' .post_title').html() || inlineEditL10n.notitle;
|
2012-08-23 02:04:18 +02:00
|
|
|
te += '<div id="ttle'+id+'"><a id="_'+id+'" class="ntdelbutton" title="'+inlineEditL10n.ntdeltitle+'">X</a>'+theTitle+'</div>';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( c ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
return this.revert();
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
$('#bulk-titles').html(te);
|
|
|
|
$('#bulk-titles a').click(function(){
|
|
|
|
var id = $(this).attr('id').substr(1);
|
|
|
|
|
|
|
|
$('table.widefat input[value="' + id + '"]').prop('checked', false);
|
|
|
|
$('#ttle'+id).remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
// enable autocomplete for tags
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( 'post' === type ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
// support multi taxonomies?
|
|
|
|
tax = 'post_tag';
|
2014-06-26 18:07:36 +02:00
|
|
|
$('tr.inline-editor textarea[name="tax_input['+tax+']"]').suggest( ajaxurl + '?action=ajax-tag-search&tax=' + tax, { delay: 500, minchars: 2, multiple: true, multipleSep: inlineEditL10n.comma } );
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
$('html, body').animate( { scrollTop: 0 }, 'fast' );
|
|
|
|
},
|
|
|
|
|
|
|
|
edit : function(id) {
|
2015-03-11 23:54:49 +01:00
|
|
|
var t = this, fields, editRow, rowData, status, pageOpt, pageLevel, nextPage, pageLoop = true, nextLevel, cur_format, f, val;
|
2012-08-23 02:04:18 +02:00
|
|
|
t.revert();
|
|
|
|
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( typeof(id) === 'object' ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
id = t.getId(id);
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
fields = ['post_title', 'post_name', 'post_author', '_status', 'jj', 'mm', 'aa', 'hh', 'mn', 'ss', 'post_password', 'post_format', 'menu_order'];
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( t.type === 'page' ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
fields.push('post_parent', 'page_template');
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2015-01-14 23:13:03 +01:00
|
|
|
// add the new edit row with an extra blank row underneath to maintain zebra striping.
|
2012-08-23 02:04:18 +02:00
|
|
|
editRow = $('#inline-edit').clone(true);
|
|
|
|
$('td', editRow).attr('colspan', $('.widefat:first thead th:visible').length);
|
|
|
|
|
2015-03-18 22:49:26 +01:00
|
|
|
$(t.what+id).hide().after(editRow).after('<tr class="hidden"></tr>');
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
// populate the data
|
|
|
|
rowData = $('#inline_'+id);
|
|
|
|
if ( !$(':input[name="post_author"] option[value="' + $('.post_author', rowData).text() + '"]', editRow).val() ) {
|
|
|
|
// author no longer has edit caps, so we need to add them to the list of authors
|
|
|
|
$(':input[name="post_author"]', editRow).prepend('<option value="' + $('.post_author', rowData).text() + '">' + $('#' + t.type + '-' + id + ' .author').text() + '</option>');
|
|
|
|
}
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( $( ':input[name="post_author"] option', editRow ).length === 1 ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
$('label.inline-edit-author', editRow).hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
// hide unsupported formats, but leave the current format alone
|
|
|
|
cur_format = $('.post_format', rowData).text();
|
|
|
|
$('option.unsupported', editRow).each(function() {
|
|
|
|
var $this = $(this);
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( $this.val() !== cur_format ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
$this.remove();
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
for ( f = 0; f < fields.length; f++ ) {
|
2015-03-11 23:54:49 +01:00
|
|
|
val = $('.'+fields[f], rowData);
|
|
|
|
// Deal with Twemoji
|
|
|
|
val.find( 'img' ).replaceWith( function() { return this.alt; } );
|
|
|
|
val = val.text();
|
|
|
|
$(':input[name="' + fields[f] + '"]', editRow).val( val );
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( $( '.comment_status', rowData ).text() === 'open' ) {
|
|
|
|
$( 'input[name="comment_status"]', editRow ).prop( 'checked', true );
|
|
|
|
}
|
|
|
|
if ( $( '.ping_status', rowData ).text() === 'open' ) {
|
|
|
|
$( 'input[name="ping_status"]', editRow ).prop( 'checked', true );
|
|
|
|
}
|
|
|
|
if ( $( '.sticky', rowData ).text() === 'sticky' ) {
|
|
|
|
$( 'input[name="sticky"]', editRow ).prop( 'checked', true );
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
// hierarchical taxonomies
|
|
|
|
$('.post_category', rowData).each(function(){
|
2013-11-19 05:31:42 +01:00
|
|
|
var taxname,
|
|
|
|
term_ids = $(this).text();
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
if ( term_ids ) {
|
|
|
|
taxname = $(this).attr('id').replace('_'+id, '');
|
|
|
|
$('ul.'+taxname+'-checklist :checkbox', editRow).val(term_ids.split(','));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//flat taxonomies
|
|
|
|
$('.tags_input', rowData).each(function(){
|
2015-03-11 23:54:49 +01:00
|
|
|
var terms = $(this),
|
2012-08-23 02:04:18 +02:00
|
|
|
taxname = $(this).attr('id').replace('_' + id, ''),
|
|
|
|
textarea = $('textarea.tax_input_' + taxname, editRow),
|
|
|
|
comma = inlineEditL10n.comma;
|
|
|
|
|
2015-03-11 23:54:49 +01:00
|
|
|
terms.find( 'img' ).replaceWith( function() { return this.alt; } );
|
|
|
|
terms = terms.text();
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
if ( terms ) {
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( ',' !== comma ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
terms = terms.replace(/,/g, comma);
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
textarea.val(terms);
|
|
|
|
}
|
|
|
|
|
2014-06-26 18:07:36 +02:00
|
|
|
textarea.suggest( ajaxurl + '?action=ajax-tag-search&tax=' + taxname, { delay: 500, minchars: 2, multiple: true, multipleSep: inlineEditL10n.comma } );
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// handle the post status
|
|
|
|
status = $('._status', rowData).text();
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( 'future' !== status ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
$('select[name="_status"] option[value="future"]', editRow).remove();
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( 'private' === status ) {
|
|
|
|
$('input[name="keep_private"]', editRow).prop('checked', true);
|
2012-08-23 02:04:18 +02:00
|
|
|
$('input.inline-edit-password-input').val('').prop('disabled', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove the current page and children from the parent dropdown
|
|
|
|
pageOpt = $('select[name="post_parent"] option[value="' + id + '"]', editRow);
|
|
|
|
if ( pageOpt.length > 0 ) {
|
|
|
|
pageLevel = pageOpt[0].className.split('-')[1];
|
|
|
|
nextPage = pageOpt;
|
|
|
|
while ( pageLoop ) {
|
|
|
|
nextPage = nextPage.next('option');
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( nextPage.length === 0 ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
nextLevel = nextPage[0].className.split('-')[1];
|
2013-11-19 05:31:42 +01:00
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
if ( nextLevel <= pageLevel ) {
|
|
|
|
pageLoop = false;
|
|
|
|
} else {
|
|
|
|
nextPage.remove();
|
|
|
|
nextPage = pageOpt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pageOpt.remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
$(editRow).attr('id', 'edit-'+id).addClass('inline-editor').show();
|
|
|
|
$('.ptitle', editRow).focus();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
save : function(id) {
|
2013-10-02 22:52:22 +02:00
|
|
|
var params, fields, page = $('.post_status_page').val() || '';
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( typeof(id) === 'object' ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
id = this.getId(id);
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2012-09-26 21:57:44 +02:00
|
|
|
$('table.widefat .spinner').show();
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
params = {
|
|
|
|
action: 'inline-save',
|
|
|
|
post_type: typenow,
|
|
|
|
post_ID: id,
|
|
|
|
edit_date: 'true',
|
|
|
|
post_status: page
|
|
|
|
};
|
|
|
|
|
2013-11-13 05:05:57 +01:00
|
|
|
fields = $('#edit-'+id).find(':input').serialize();
|
2012-08-23 02:04:18 +02:00
|
|
|
params = fields + '&' + $.param(params);
|
|
|
|
|
|
|
|
// make ajax request
|
|
|
|
$.post( ajaxurl, params,
|
|
|
|
function(r) {
|
2012-09-26 21:57:44 +02:00
|
|
|
$('table.widefat .spinner').hide();
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
if (r) {
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( -1 !== r.indexOf( '<tr' ) ) {
|
2015-01-14 23:13:03 +01:00
|
|
|
$(inlineEditPost.what+id).siblings('tr.hidden').addBack().remove();
|
2012-08-23 02:04:18 +02:00
|
|
|
$('#edit-'+id).before(r).remove();
|
|
|
|
$(inlineEditPost.what+id).hide().fadeIn();
|
|
|
|
} else {
|
|
|
|
r = r.replace( /<.[^<>]*?>/g, '' );
|
|
|
|
$('#edit-'+id+' .inline-edit-save .error').html(r).show();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$('#edit-'+id+' .inline-edit-save .error').html(inlineEditL10n.error).show();
|
|
|
|
}
|
2013-11-19 05:31:42 +01:00
|
|
|
},
|
|
|
|
'html');
|
2012-08-23 02:04:18 +02:00
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
revert : function(){
|
|
|
|
var id = $('table.widefat tr.inline-editor').attr('id');
|
|
|
|
|
|
|
|
if ( id ) {
|
2012-09-26 21:57:44 +02:00
|
|
|
$('table.widefat .spinner').hide();
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( 'bulk-edit' === id ) {
|
2015-01-14 23:13:03 +01:00
|
|
|
$('table.widefat #bulk-edit').removeClass('inline-editor').hide().siblings('tr.hidden').remove();
|
2015-03-09 20:43:49 +01:00
|
|
|
$('#bulk-titles').empty();
|
2012-08-23 02:04:18 +02:00
|
|
|
$('#inlineedit').append( $('#bulk-edit') );
|
|
|
|
} else {
|
2015-01-14 23:13:03 +01:00
|
|
|
$('#'+id).siblings('tr.hidden').addBack().remove();
|
2012-08-23 02:04:18 +02:00
|
|
|
id = id.substr( id.lastIndexOf('-') + 1 );
|
|
|
|
$(this.what+id).show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
getId : function(o) {
|
|
|
|
var id = $(o).closest('tr').attr('id'),
|
|
|
|
parts = id.split('-');
|
|
|
|
return parts[parts.length - 1];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-13 01:28:07 +01:00
|
|
|
$( document ).ready( function(){ inlineEditPost.init(); } );
|
|
|
|
|
|
|
|
// Show/hide locks on posts
|
2013-06-05 02:13:40 +02:00
|
|
|
$( document ).on( 'heartbeat-tick.wp-check-locked-posts', function( e, data ) {
|
|
|
|
var locked = data['wp-check-locked-posts'] || {};
|
2013-03-13 01:28:07 +01:00
|
|
|
|
|
|
|
$('#the-list tr').each( function(i, el) {
|
|
|
|
var key = el.id, row = $(el), lock_data, avatar;
|
|
|
|
|
|
|
|
if ( locked.hasOwnProperty( key ) ) {
|
|
|
|
if ( ! row.hasClass('wp-locked') ) {
|
|
|
|
lock_data = locked[key];
|
2013-07-06 01:17:25 +02:00
|
|
|
row.find('.column-title .locked-text').text( lock_data.text );
|
2013-03-13 01:28:07 +01:00
|
|
|
row.find('.check-column checkbox').prop('checked', false);
|
|
|
|
|
|
|
|
if ( lock_data.avatar_src ) {
|
|
|
|
avatar = $('<img class="avatar avatar-18 photo" width="18" height="18" />').attr( 'src', lock_data.avatar_src.replace(/&/g, '&') );
|
|
|
|
row.find('.column-title .locked-avatar').empty().append( avatar );
|
|
|
|
}
|
2013-07-06 01:17:25 +02:00
|
|
|
row.addClass('wp-locked');
|
2013-03-13 01:28:07 +01:00
|
|
|
}
|
|
|
|
} else if ( row.hasClass('wp-locked') ) {
|
2013-07-06 01:17:25 +02:00
|
|
|
// Make room for the CSS animation
|
|
|
|
row.removeClass('wp-locked').delay(1000).find('.locked-info span').empty();
|
2013-03-13 01:28:07 +01:00
|
|
|
}
|
|
|
|
});
|
2013-06-05 02:13:40 +02:00
|
|
|
}).on( 'heartbeat-send.wp-check-locked-posts', function( e, data ) {
|
2013-03-13 01:28:07 +01:00
|
|
|
var check = [];
|
|
|
|
|
|
|
|
$('#the-list tr').each( function(i, el) {
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( el.id ) {
|
2013-05-20 06:10:43 +02:00
|
|
|
check.push( el.id );
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2013-03-13 01:28:07 +01:00
|
|
|
});
|
|
|
|
|
2013-11-19 05:31:42 +01:00
|
|
|
if ( check.length ) {
|
2013-06-05 02:13:40 +02:00
|
|
|
data['wp-check-locked-posts'] = check;
|
2013-11-19 05:31:42 +01:00
|
|
|
}
|
2013-11-14 19:40:03 +01:00
|
|
|
}).ready( function() {
|
|
|
|
// Set the heartbeat interval to 15 sec.
|
|
|
|
if ( typeof wp !== 'undefined' && wp.heartbeat ) {
|
2013-12-03 01:44:22 +01:00
|
|
|
wp.heartbeat.interval( 15 );
|
2013-11-14 19:40:03 +01:00
|
|
|
}
|
2013-03-13 01:28:07 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
}(jQuery));
|