]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/js/edit-comments.js
WordPress 4.3-scripts
[autoinstalls/wordpress.git] / wp-admin / js / edit-comments.js
1 /* global adminCommentsL10n, thousandsSeparator, list_args, QTags, ajaxurl, wpAjax */
2 var setCommentsList, theList, theExtraList, commentReply;
3
4 (function($) {
5 var getCount, updateCount, updatePending;
6
7 setCommentsList = function() {
8         var totalInput, perPageInput, pageInput, dimAfter, delBefore, updateTotalCount, delAfter, refillTheExtraList, diff,
9                 lastConfidentTime = 0;
10
11         totalInput = $('input[name="_total"]', '#comments-form');
12         perPageInput = $('input[name="_per_page"]', '#comments-form');
13         pageInput = $('input[name="_page"]', '#comments-form');
14
15         dimAfter = function( r, settings ) {
16                 var editRow, replyID, replyButton,
17                         c = $( '#' + settings.element );
18
19                 editRow = $('#replyrow');
20                 replyID = $('#comment_ID', editRow).val();
21                 replyButton = $('#replybtn', editRow);
22
23                 if ( c.is('.unapproved') ) {
24                         if ( settings.data.id == replyID )
25                                 replyButton.text(adminCommentsL10n.replyApprove);
26
27                         c.find('div.comment_status').html('0');
28                 } else {
29                         if ( settings.data.id == replyID )
30                                 replyButton.text(adminCommentsL10n.reply);
31
32                         c.find('div.comment_status').html('1');
33                 }
34
35                 diff = $('#' + settings.element).is('.' + settings.dimClass) ? 1 : -1;
36                 updatePending( diff );
37         };
38
39         // Send current total, page, per_page and url
40         delBefore = function( settings, list ) {
41                 var note, id, el, n, h, a, author,
42                         action = false,
43                         wpListsData = $( settings.target ).attr( 'data-wp-lists' );
44
45                 settings.data._total = totalInput.val() || 0;
46                 settings.data._per_page = perPageInput.val() || 0;
47                 settings.data._page = pageInput.val() || 0;
48                 settings.data._url = document.location.href;
49                 settings.data.comment_status = $('input[name="comment_status"]', '#comments-form').val();
50
51                 if ( wpListsData.indexOf(':trash=1') != -1 )
52                         action = 'trash';
53                 else if ( wpListsData.indexOf(':spam=1') != -1 )
54                         action = 'spam';
55
56                 if ( action ) {
57                         id = wpListsData.replace(/.*?comment-([0-9]+).*/, '$1');
58                         el = $('#comment-' + id);
59                         note = $('#' + action + '-undo-holder').html();
60
61                         el.find('.check-column :checkbox').prop('checked', false); // Uncheck the row so as not to be affected by Bulk Edits.
62
63                         if ( el.siblings('#replyrow').length && commentReply.cid == id )
64                                 commentReply.close();
65
66                         if ( el.is('tr') ) {
67                                 n = el.children(':visible').length;
68                                 author = $('.author strong', el).text();
69                                 h = $('<tr id="undo-' + id + '" class="undo un' + action + '" style="display:none;"><td colspan="' + n + '">' + note + '</td></tr>');
70                         } else {
71                                 author = $('.comment-author', el).text();
72                                 h = $('<div id="undo-' + id + '" style="display:none;" class="undo un' + action + '">' + note + '</div>');
73                         }
74
75                         el.before(h);
76
77                         $('strong', '#undo-' + id).text(author);
78                         a = $('.undo a', '#undo-' + id);
79                         a.attr('href', 'comment.php?action=un' + action + 'comment&c=' + id + '&_wpnonce=' + settings.data._ajax_nonce);
80                         a.attr('data-wp-lists', 'delete:the-comment-list:comment-' + id + '::un' + action + '=1');
81                         a.attr('class', 'vim-z vim-destructive');
82                         $('.avatar', el).first().clone().prependTo('#undo-' + id + ' .' + action + '-undo-inside');
83
84                         a.click(function(){
85                                 list.wpList.del(this);
86                                 $('#undo-' + id).css( {backgroundColor:'#ceb'} ).fadeOut(350, function(){
87                                         $(this).remove();
88                                         $('#comment-' + id).css('backgroundColor', '').fadeIn(300, function(){ $(this).show(); });
89                                 });
90                                 return false;
91                         });
92                 }
93
94                 return settings;
95         };
96
97         // Updates the current total (stored in the _total input)
98         updateTotalCount = function( total, time, setConfidentTime ) {
99                 if ( time < lastConfidentTime )
100                         return;
101
102                 if ( setConfidentTime )
103                         lastConfidentTime = time;
104
105                 totalInput.val( total.toString() );
106         };
107
108         getCount = function(el) {
109                 var n = parseInt( el.html().replace(/[^0-9]+/g, ''), 10 );
110                 if ( isNaN(n) )
111                         return 0;
112                 return n;
113         };
114
115         updateCount = function(el, n) {
116                 var n1 = '';
117                 if ( isNaN(n) )
118                         return;
119                 n = n < 1 ? '0' : n.toString();
120                 if ( n.length > 3 ) {
121                         while ( n.length > 3 ) {
122                                 n1 = thousandsSeparator + n.substr(n.length - 3) + n1;
123                                 n = n.substr(0, n.length - 3);
124                         }
125                         n = n + n1;
126                 }
127                 el.html(n);
128         };
129
130         updatePending = function( diff ) {
131                 $('span.pending-count').each(function() {
132                         var a = $(this), n = getCount(a) + diff;
133                         if ( n < 1 )
134                                 n = 0;
135                         a.closest('.awaiting-mod')[ 0 === n ? 'addClass' : 'removeClass' ]('count-0');
136                         updateCount( a, n );
137                 });
138         };
139
140         // In admin-ajax.php, we send back the unix time stamp instead of 1 on success
141         delAfter = function( r, settings ) {
142                 var total_items_i18n, total, spam, trash, pending,
143                         untrash = $(settings.target).parent().is('span.untrash'),
144                         unspam = $(settings.target).parent().is('span.unspam'),
145                         unapproved = $('#' + settings.element).is('.unapproved');
146
147                 function getUpdate(s) {
148                         if ( $(settings.target).parent().is('span.' + s) )
149                                 return 1;
150                         else if ( $('#' + settings.element).is('.' + s) )
151                                 return -1;
152
153                         return 0;
154                 }
155
156                 if ( untrash )
157                         trash = -1;
158                 else
159                         trash = getUpdate('trash');
160
161                 if ( unspam )
162                         spam = -1;
163                 else
164                         spam = getUpdate('spam');
165
166                 if ( $(settings.target).parent().is('span.unapprove') || ( ( untrash || unspam ) && unapproved ) ) {
167                         // a comment was 'deleted' from another list (e.g. approved, spam, trash) and moved to pending,
168                         // or a trash/spam of a pending comment was undone
169                         pending = 1;
170                 } else if ( unapproved ) {
171                         // a pending comment was trashed/spammed/approved
172                         pending = -1;
173                 }
174
175                 if ( pending )
176                         updatePending(pending);
177
178                 $('span.spam-count').each( function() {
179                         var a = $(this), n = getCount(a) + spam;
180                         updateCount(a, n);
181                 });
182
183                 $('span.trash-count').each( function() {
184                         var a = $(this), n = getCount(a) + trash;
185                         updateCount(a, n);
186                 });
187
188                 if ( ! $('#dashboard_right_now').length ) {
189                         total = totalInput.val() ? parseInt( totalInput.val(), 10 ) : 0;
190                         if ( $(settings.target).parent().is('span.undo') )
191                                 total++;
192                         else
193                                 total--;
194
195                         if ( total < 0 )
196                                 total = 0;
197
198                         if ( ( 'object' == typeof r ) && lastConfidentTime < settings.parsed.responses[0].supplemental.time ) {
199                                 total_items_i18n = settings.parsed.responses[0].supplemental.total_items_i18n || '';
200                                 if ( total_items_i18n ) {
201                                         $('.displaying-num').text( total_items_i18n );
202                                         $('.total-pages').text( settings.parsed.responses[0].supplemental.total_pages_i18n );
203                                         $('.tablenav-pages').find('.next-page, .last-page').toggleClass('disabled', settings.parsed.responses[0].supplemental.total_pages == $('.current-page').val());
204                                 }
205                                 updateTotalCount( total, settings.parsed.responses[0].supplemental.time, true );
206                         } else {
207                                 updateTotalCount( total, r, false );
208                         }
209                 }
210
211                 if ( ! theExtraList || theExtraList.size() === 0 || theExtraList.children().size() === 0 || untrash || unspam ) {
212                         return;
213                 }
214
215                 theList.get(0).wpList.add( theExtraList.children(':eq(0)').remove().clone() );
216
217                 refillTheExtraList();
218         };
219
220         refillTheExtraList = function(ev) {
221                 var args = $.query.get(), total_pages = $('.total-pages').text(), per_page = $('input[name="_per_page"]', '#comments-form').val();
222
223                 if (! args.paged)
224                         args.paged = 1;
225
226                 if (args.paged > total_pages) {
227                         return;
228                 }
229
230                 if (ev) {
231                         theExtraList.empty();
232                         args.number = Math.min(8, per_page); // see WP_Comments_List_Table::prepare_items() @ class-wp-comments-list-table.php
233                 } else {
234                         args.number = 1;
235                         args.offset = Math.min(8, per_page) - 1; // fetch only the next item on the extra list
236                 }
237
238                 args.no_placeholder = true;
239
240                 args.paged ++;
241
242                 // $.query.get() needs some correction to be sent into an ajax request
243                 if ( true === args.comment_type )
244                         args.comment_type = '';
245
246                 args = $.extend(args, {
247                         'action': 'fetch-list',
248                         'list_args': list_args,
249                         '_ajax_fetch_list_nonce': $('#_ajax_fetch_list_nonce').val()
250                 });
251
252                 $.ajax({
253                         url: ajaxurl,
254                         global: false,
255                         dataType: 'json',
256                         data: args,
257                         success: function(response) {
258                                 theExtraList.get(0).wpList.add( response.rows );
259                         }
260                 });
261         };
262
263         theExtraList = $('#the-extra-comment-list').wpList( { alt: '', delColor: 'none', addColor: 'none' } );
264         theList = $('#the-comment-list').wpList( { alt: '', delBefore: delBefore, dimAfter: dimAfter, delAfter: delAfter, addColor: 'none' } )
265                 .bind('wpListDelEnd', function(e, s){
266                         var wpListsData = $(s.target).attr('data-wp-lists'), id = s.element.replace(/[^0-9]+/g, '');
267
268                         if ( wpListsData.indexOf(':trash=1') != -1 || wpListsData.indexOf(':spam=1') != -1 )
269                                 $('#undo-' + id).fadeIn(300, function(){ $(this).show(); });
270                 });
271 };
272
273 commentReply = {
274         cid : '',
275         act : '',
276
277         init : function() {
278                 var row = $('#replyrow');
279
280                 $('a.cancel', row).click(function() { return commentReply.revert(); });
281                 $('a.save', row).click(function() { return commentReply.send(); });
282                 $('input#author, input#author-email, input#author-url', row).keypress(function(e){
283                         if ( e.which == 13 ) {
284                                 commentReply.send();
285                                 e.preventDefault();
286                                 return false;
287                         }
288                 });
289
290                 // add events
291                 $('#the-comment-list .column-comment > p').dblclick(function(){
292                         commentReply.toggle($(this).parent());
293                 });
294
295                 $('#doaction, #doaction2, #post-query-submit').click(function(){
296                         if ( $('#the-comment-list #replyrow').length > 0 )
297                                 commentReply.close();
298                 });
299
300                 this.comments_listing = $('#comments-form > input[name="comment_status"]').val() || '';
301
302                 /* $(listTable).bind('beforeChangePage', function(){
303                         commentReply.close();
304                 }); */
305         },
306
307         addEvents : function(r) {
308                 r.each(function() {
309                         $(this).find('.column-comment > p').dblclick(function(){
310                                 commentReply.toggle($(this).parent());
311                         });
312                 });
313         },
314
315         toggle : function(el) {
316                 if ( 'none' !== $( el ).css( 'display' ) && ( $( '#replyrow' ).parent().is('#com-reply') || window.confirm( adminCommentsL10n.warnQuickEdit ) ) ) {
317                         $( el ).find( 'a.vim-q' ).click();
318                 }
319         },
320
321         revert : function() {
322
323                 if ( $('#the-comment-list #replyrow').length < 1 )
324                         return false;
325
326                 $('#replyrow').fadeOut('fast', function(){
327                         commentReply.close();
328                 });
329
330                 return false;
331         },
332
333         close : function() {
334                 var c, replyrow = $('#replyrow');
335
336                 // replyrow is not showing?
337                 if ( replyrow.parent().is('#com-reply') )
338                         return;
339
340                 if ( this.cid && this.act == 'edit-comment' ) {
341                         c = $('#comment-' + this.cid);
342                         c.fadeIn(300, function(){ c.show(); }).css('backgroundColor', '');
343                 }
344
345                 // reset the Quicktags buttons
346                 if ( typeof QTags != 'undefined' )
347                         QTags.closeAllTags('replycontent');
348
349                 $('#add-new-comment').css('display', '');
350
351                 replyrow.hide();
352                 $('#com-reply').append( replyrow );
353                 $('#replycontent').css('height', '').val('');
354                 $('#edithead input').val('');
355                 $('.error', replyrow).empty().hide();
356                 $( '.spinner', replyrow ).removeClass( 'is-active' );
357
358                 this.cid = '';
359         },
360
361         open : function(comment_id, post_id, action) {
362                 var editRow, rowData, act, replyButton, editHeight,
363                         t = this,
364                         c = $('#comment-' + comment_id),
365                         h = c.height();
366
367                 t.close();
368                 t.cid = comment_id;
369
370                 editRow = $('#replyrow');
371                 rowData = $('#inline-'+comment_id);
372                 action = action || 'replyto';
373                 act = 'edit' == action ? 'edit' : 'replyto';
374                 act = t.act = act + '-comment';
375
376                 $('#action', editRow).val(act);
377                 $('#comment_post_ID', editRow).val(post_id);
378                 $('#comment_ID', editRow).val(comment_id);
379
380                 if ( action == 'edit' ) {
381                         $('#author', editRow).val( $('div.author', rowData).text() );
382                         $('#author-email', editRow).val( $('div.author-email', rowData).text() );
383                         $('#author-url', editRow).val( $('div.author-url', rowData).text() );
384                         $('#status', editRow).val( $('div.comment_status', rowData).text() );
385                         $('#replycontent', editRow).val( $('textarea.comment', rowData).val() );
386                         $('#edithead, #savebtn', editRow).show();
387                         $('#replyhead, #replybtn, #addhead, #addbtn', editRow).hide();
388
389                         if ( h > 120 ) {
390                                 // Limit the maximum height when editing very long comments to make it more manageable.
391                                 // The textarea is resizable in most browsers, so the user can adjust it if needed.
392                                 editHeight = h > 500 ? 500 : h;
393                                 $('#replycontent', editRow).css('height', editHeight + 'px');
394                         }
395
396                         c.after( editRow ).fadeOut('fast', function(){
397                                 $('#replyrow').fadeIn(300, function(){ $(this).show(); });
398                         });
399                 } else if ( action == 'add' ) {
400                         $('#addhead, #addbtn', editRow).show();
401                         $('#replyhead, #replybtn, #edithead, #savebtn', editRow).hide();
402                         $('#the-comment-list').prepend(editRow);
403                         $('#replyrow').fadeIn(300);
404                 } else {
405                         replyButton = $('#replybtn', editRow);
406                         $('#edithead, #savebtn, #addhead, #addbtn', editRow).hide();
407                         $('#replyhead, #replybtn', editRow).show();
408                         c.after(editRow);
409
410                         if ( c.hasClass('unapproved') ) {
411                                 replyButton.text(adminCommentsL10n.replyApprove);
412                         } else {
413                                 replyButton.text(adminCommentsL10n.reply);
414                         }
415
416                         $('#replyrow').fadeIn(300, function(){ $(this).show(); });
417                 }
418
419                 setTimeout(function() {
420                         var rtop, rbottom, scrollTop, vp, scrollBottom;
421
422                         rtop = $('#replyrow').offset().top;
423                         rbottom = rtop + $('#replyrow').height();
424                         scrollTop = window.pageYOffset || document.documentElement.scrollTop;
425                         vp = document.documentElement.clientHeight || window.innerHeight || 0;
426                         scrollBottom = scrollTop + vp;
427
428                         if ( scrollBottom - 20 < rbottom )
429                                 window.scroll(0, rbottom - vp + 35);
430                         else if ( rtop - 20 < scrollTop )
431                                 window.scroll(0, rtop - 35);
432
433                         $('#replycontent').focus().keyup(function(e){
434                                 if ( e.which == 27 )
435                                         commentReply.revert(); // close on Escape
436                         });
437                 }, 600);
438
439                 return false;
440         },
441
442         send : function() {
443                 var post = {};
444
445                 $('#replysubmit .error').hide();
446                 $( '#replysubmit .spinner' ).addClass( 'is-active' );
447
448                 $('#replyrow input').not(':button').each(function() {
449                         var t = $(this);
450                         post[ t.attr('name') ] = t.val();
451                 });
452
453                 post.content = $('#replycontent').val();
454                 post.id = post.comment_post_ID;
455                 post.comments_listing = this.comments_listing;
456                 post.p = $('[name="p"]').val();
457
458                 if ( $('#comment-' + $('#comment_ID').val()).hasClass('unapproved') )
459                         post.approve_parent = 1;
460
461                 $.ajax({
462                         type : 'POST',
463                         url : ajaxurl,
464                         data : post,
465                         success : function(x) { commentReply.show(x); },
466                         error : function(r) { commentReply.error(r); }
467                 });
468
469                 return false;
470         },
471
472         show : function(xml) {
473                 var t = this, r, c, id, bg, pid;
474
475                 if ( typeof(xml) == 'string' ) {
476                         t.error({'responseText': xml});
477                         return false;
478                 }
479
480                 r = wpAjax.parseAjaxResponse(xml);
481                 if ( r.errors ) {
482                         t.error({'responseText': wpAjax.broken});
483                         return false;
484                 }
485
486                 t.revert();
487
488                 r = r.responses[0];
489                 id = '#comment-' + r.id;
490
491                 if ( 'edit-comment' == t.act )
492                         $(id).remove();
493
494                 if ( r.supplemental.parent_approved ) {
495                         pid = $('#comment-' + r.supplemental.parent_approved);
496                         updatePending( -1 );
497
498                         if ( this.comments_listing == 'moderated' ) {
499                                 pid.animate( { 'backgroundColor':'#CCEEBB' }, 400, function(){
500                                         pid.fadeOut();
501                                 });
502                                 return;
503                         }
504                 }
505
506                 c = $.trim(r.data); // Trim leading whitespaces
507                 $(c).hide();
508                 $('#replyrow').after(c);
509
510                 id = $(id);
511                 t.addEvents(id);
512                 bg = id.hasClass('unapproved') ? '#FFFFE0' : id.closest('.widefat, .postbox').css('backgroundColor');
513
514                 id.animate( { 'backgroundColor':'#CCEEBB' }, 300 )
515                         .animate( { 'backgroundColor': bg }, 300, function() {
516                                 if ( pid && pid.length ) {
517                                         pid.animate( { 'backgroundColor':'#CCEEBB' }, 300 )
518                                                 .animate( { 'backgroundColor': bg }, 300 )
519                                                 .removeClass('unapproved').addClass('approved')
520                                                 .find('div.comment_status').html('1');
521                                 }
522                         });
523
524         },
525
526         error : function(r) {
527                 var er = r.statusText;
528
529                 $( '#replysubmit .spinner' ).removeClass( 'is-active' );
530
531                 if ( r.responseText )
532                         er = r.responseText.replace( /<.[^<>]*?>/g, '' );
533
534                 if ( er )
535                         $('#replysubmit .error').html(er).show();
536
537         },
538
539         addcomment: function(post_id) {
540                 var t = this;
541
542                 $('#add-new-comment').fadeOut(200, function(){
543                         t.open(0, post_id, 'add');
544                         $('table.comments-box').css('display', '');
545                         $('#no-comments').remove();
546                 });
547         }
548 };
549
550 $(document).ready(function(){
551         var make_hotkeys_redirect, edit_comment, toggle_all, make_bulk;
552
553         setCommentsList();
554         commentReply.init();
555         $(document).delegate('span.delete a.delete', 'click', function(){return false;});
556
557         if ( typeof $.table_hotkeys != 'undefined' ) {
558                 make_hotkeys_redirect = function(which) {
559                         return function() {
560                                 var first_last, l;
561
562                                 first_last = 'next' == which? 'first' : 'last';
563                                 l = $('.tablenav-pages .'+which+'-page:not(.disabled)');
564                                 if (l.length)
565                                         window.location = l[0].href.replace(/\&hotkeys_highlight_(first|last)=1/g, '')+'&hotkeys_highlight_'+first_last+'=1';
566                         };
567                 };
568
569                 edit_comment = function(event, current_row) {
570                         window.location = $('span.edit a', current_row).attr('href');
571                 };
572
573                 toggle_all = function() {
574                         $('#cb-select-all-1').data( 'wp-toggle', 1 ).trigger( 'click' ).removeData( 'wp-toggle' );
575                 };
576
577                 make_bulk = function(value) {
578                         return function() {
579                                 var scope = $('select[name="action"]');
580                                 $('option[value="' + value + '"]', scope).prop('selected', true);
581                                 $('#doaction').click();
582                         };
583                 };
584
585                 $.table_hotkeys(
586                         $('table.widefat'),
587                         [
588                                 'a', 'u', 's', 'd', 'r', 'q', 'z',
589                                 ['e', edit_comment],
590                                 ['shift+x', toggle_all],
591                                 ['shift+a', make_bulk('approve')],
592                                 ['shift+s', make_bulk('spam')],
593                                 ['shift+d', make_bulk('delete')],
594                                 ['shift+t', make_bulk('trash')],
595                                 ['shift+z', make_bulk('untrash')],
596                                 ['shift+u', make_bulk('unapprove')]
597                         ],
598                         {
599                                 highlight_first: adminCommentsL10n.hotkeys_highlight_first,
600                                 highlight_last: adminCommentsL10n.hotkeys_highlight_last,
601                                 prev_page_link_cb: make_hotkeys_redirect('prev'),
602                                 next_page_link_cb: make_hotkeys_redirect('next'),
603                                 hotkeys_opts: {
604                                         disableInInput: true,
605                                         type: 'keypress',
606                                         noDisable: '.check-column input[type="checkbox"]'
607                                 },
608                                 cycle_expr: '#the-comment-list tr',
609                                 start_row_index: 0
610                         }
611                 );
612         }
613
614         // Quick Edit and Reply have an inline comment editor.
615         $( '#the-comment-list' ).on( 'click', '.comment-inline', function (e) {
616                 e.preventDefault();
617                 var $el = $( this ),
618                         action = 'replyto';
619
620                 if ( 'undefined' !== typeof $el.data( 'action' ) ) {
621                         action = $el.data( 'action' );
622                 }
623
624                 commentReply.open( $el.data( 'commentId' ), $el.data( 'postId' ), action );
625         } );
626 });
627
628 })(jQuery);