]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/inline-edit-post.js
WordPress 4.0.1
[autoinstalls/wordpress.git] / wp-admin / js / inline-edit-post.js
index 9abf478ada6fcf9db21d78e796c386c282e45ff3..48e635f23c087f756cb109defde5b129926a7feb 100644 (file)
@@ -1,3 +1,6 @@
+/* global inlineEditL10n, ajaxurl, typenow */
+
+var inlineEditPost;
 (function($) {
 inlineEditPost = {
 
@@ -9,12 +12,14 @@ inlineEditPost = {
 
                // prepare the edit rows
                qeRow.keyup(function(e){
-                       if (e.which == 27)
+                       if ( e.which === 27 ) {
                                return inlineEditPost.revert();
+                       }
                });
                bulkRow.keyup(function(e){
-                       if (e.which == 27)
+                       if ( e.which === 27 ) {
                                return inlineEditPost.revert();
+                       }
                });
 
                $('a.cancel', qeRow).click(function(){
@@ -24,8 +29,9 @@ inlineEditPost = {
                        return inlineEditPost.save(this);
                });
                $('td', qeRow).keydown(function(e){
-                       if ( e.which == 13 )
+                       if ( e.which === 13 ) {
                                return inlineEditPost.save(this);
+                       }
                });
 
                $('a.cancel', bulkRow).click(function(){
@@ -42,47 +48,33 @@ inlineEditPost = {
                });
 
                // add events
-               $('a.editinline').live('click', function(){
+               $('#the-list').on('click', 'a.editinline', function(){
                        inlineEditPost.edit(this);
                        return false;
                });
 
-               $('#bulk-title-div').parents('fieldset').after(
+               $('#bulk-edit').find('fieldset:first').after(
                        $('#inline-edit fieldset.inline-edit-categories').clone()
                ).siblings( 'fieldset:last' ).prepend(
                        $('#inline-edit label.inline-edit-tags').clone()
                );
 
-               // hiearchical taxonomies expandable?
-               $('span.catshow').click(function(){
-                       $(this).hide().next().show().parent().next().addClass("cat-hover");
-               });
-
-               $('span.cathide').click(function(){
-                       $(this).hide().prev().show().parent().next().removeClass("cat-hover");
-               });
-
                $('select[name="_status"] option[value="future"]', bulkRow).remove();
 
                $('#doaction, #doaction2').click(function(e){
                        var n = $(this).attr('id').substr(2);
-                       if ( $('select[name="'+n+'"]').val() == 'edit' ) {
+                       if ( 'edit' === $( 'select[name="' + n + '"]' ).val() ) {
                                e.preventDefault();
                                t.setBulk();
                        } else if ( $('form#posts-filter tr.inline-editor').length > 0 ) {
                                t.revert();
                        }
                });
-
-               $('#post-query-submit').mousedown(function(e){
-                       t.revert();
-                       $('select[name^="action"]').val('-1');
-               });
        },
 
        toggle : function(el){
                var t = this;
-               $(t.what+t.getId(el)).css('display') == 'none' ? t.revert() : t.edit(el);
+               $( t.what + t.getId( el ) ).css( 'display' ) === 'none' ? t.revert() : t.edit( el );
        },
 
        setBulk : function(){
@@ -93,7 +85,7 @@ inlineEditPost = {
                $('table.widefat tbody').prepend( $('#bulk-edit') );
                $('#bulk-edit').addClass('inline-editor').show();
 
-               $('tbody th.check-column input[type="checkbox"]').each(function(i){
+               $( 'tbody th.check-column input[type="checkbox"]' ).each( function() {
                        if ( $(this).prop('checked') ) {
                                c = false;
                                var id = $(this).val(), theTitle;
@@ -102,8 +94,9 @@ inlineEditPost = {
                        }
                });
 
-               if ( c )
+               if ( c ) {
                        return this.revert();
+               }
 
                $('#bulk-titles').html(te);
                $('#bulk-titles a').click(function(){
@@ -114,10 +107,10 @@ inlineEditPost = {
                });
 
                // enable autocomplete for tags
-               if ( 'post' == type ) {
+               if ( 'post' === type ) {
                        // support multi taxonomies?
                        tax = 'post_tag';
-                       $('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 + ' ' } );
+                       $('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 } );
                }
                $('html, body').animate( { scrollTop: 0 }, 'fast' );
        },
@@ -126,19 +119,22 @@ inlineEditPost = {
                var t = this, fields, editRow, rowData, status, pageOpt, pageLevel, nextPage, pageLoop = true, nextLevel, cur_format, f;
                t.revert();
 
-               if ( typeof(id) == 'object' )
+               if ( typeof(id) === 'object' ) {
                        id = t.getId(id);
+               }
 
                fields = ['post_title', 'post_name', 'post_author', '_status', 'jj', 'mm', 'aa', 'hh', 'mn', 'ss', 'post_password', 'post_format', 'menu_order'];
-               if ( t.type == 'page' )
+               if ( t.type === 'page' ) {
                        fields.push('post_parent', 'page_template');
+               }
 
                // add the new blank row
                editRow = $('#inline-edit').clone(true);
                $('td', editRow).attr('colspan', $('.widefat:first thead th:visible').length);
 
-               if ( $(t.what+id).hasClass('alternate') )
+               if ( $( t.what + id ).hasClass( 'alternate' ) ) {
                        $(editRow).addClass('alternate');
+               }
                $(t.what+id).hide().after(editRow);
 
                // populate the data
@@ -147,7 +143,7 @@ inlineEditPost = {
                        // 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>');
                }
-               if ( $(':input[name="post_author"] option', editRow).length == 1 ) {
+               if ( $( ':input[name="post_author"] option', editRow ).length === 1 ) {
                        $('label.inline-edit-author', editRow).hide();
                }
 
@@ -155,24 +151,29 @@ inlineEditPost = {
                cur_format = $('.post_format', rowData).text();
                $('option.unsupported', editRow).each(function() {
                        var $this = $(this);
-                       if ( $this.val() != cur_format )
+                       if ( $this.val() !== cur_format ) {
                                $this.remove();
+                       }
                });
 
                for ( f = 0; f < fields.length; f++ ) {
                        $(':input[name="' + fields[f] + '"]', editRow).val( $('.'+fields[f], rowData).text() );
                }
 
-               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);
+               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 );
+               }
 
                // hierarchical taxonomies
                $('.post_category', rowData).each(function(){
-                       var term_ids = $(this).text();
+                       var taxname,
+                               term_ids = $(this).text();
 
                        if ( term_ids ) {
                                taxname = $(this).attr('id').replace('_'+id, '');
@@ -188,21 +189,23 @@ inlineEditPost = {
                                comma = inlineEditL10n.comma;
 
                        if ( terms ) {
-                               if ( ',' !== comma )
+                               if ( ',' !== comma ) {
                                        terms = terms.replace(/,/g, comma);
+                               }
                                textarea.val(terms);
                        }
 
-                       textarea.suggest( ajaxurl + '?action=ajax-tag-search&tax=' + taxname, { delay: 500, minchars: 2, multiple: true, multipleSep: inlineEditL10n.comma + ' ' } );
+                       textarea.suggest( ajaxurl + '?action=ajax-tag-search&tax=' + taxname, { delay: 500, minchars: 2, multiple: true, multipleSep: inlineEditL10n.comma } );
                });
 
                // handle the post status
                status = $('._status', rowData).text();
-               if ( 'future' != status )
+               if ( 'future' !== status ) {
                        $('select[name="_status"] option[value="future"]', editRow).remove();
+               }
 
-               if ( 'private' == status ) {
-                       $('input[name="keep_private"]', editRow).prop("checked", true);
+               if ( 'private' === status ) {
+                       $('input[name="keep_private"]', editRow).prop('checked', true);
                        $('input.inline-edit-password-input').val('').prop('disabled', true);
                }
 
@@ -213,8 +216,12 @@ inlineEditPost = {
                        nextPage = pageOpt;
                        while ( pageLoop ) {
                                nextPage = nextPage.next('option');
-                               if (nextPage.length == 0) break;
+                               if ( nextPage.length === 0 ) {
+                                       break;
+                               }
+
                                nextLevel = nextPage[0].className.split('-')[1];
+
                                if ( nextLevel <= pageLevel ) {
                                        pageLoop = false;
                                } else {
@@ -234,8 +241,9 @@ inlineEditPost = {
        save : function(id) {
                var params, fields, page = $('.post_status_page').val() || '';
 
-               if ( typeof(id) == 'object' )
+               if ( typeof(id) === 'object' ) {
                        id = this.getId(id);
+               }
 
                $('table.widefat .spinner').show();
 
@@ -247,7 +255,7 @@ inlineEditPost = {
                        post_status: page
                };
 
-               fields = $('#edit-'+id+' :input').serialize();
+               fields = $('#edit-'+id).find(':input').serialize();
                params = fields + '&' + $.param(params);
 
                // make ajax request
@@ -256,7 +264,7 @@ inlineEditPost = {
                                $('table.widefat .spinner').hide();
 
                                if (r) {
-                                       if ( -1 != r.indexOf('<tr') ) {
+                                       if ( -1 !== r.indexOf( '<tr' ) ) {
                                                $(inlineEditPost.what+id).remove();
                                                $('#edit-'+id).before(r).remove();
                                                $(inlineEditPost.what+id).hide().fadeIn();
@@ -267,8 +275,12 @@ inlineEditPost = {
                                } else {
                                        $('#edit-'+id+' .inline-edit-save .error').html(inlineEditL10n.error).show();
                                }
-                       }
-               , 'html');
+
+                               if ( $('#post-'+id).prev().hasClass('alternate') ) {
+                                       $('#post-'+id).removeClass('alternate');
+                               }
+                       },
+               'html');
                return false;
        },
 
@@ -278,7 +290,7 @@ inlineEditPost = {
                if ( id ) {
                        $('table.widefat .spinner').hide();
 
-                       if ( 'bulk-edit' == id ) {
+                       if ( 'bulk-edit' === id ) {
                                $('table.widefat #bulk-edit').removeClass('inline-editor').hide();
                                $('#bulk-titles').html('');
                                $('#inlineedit').append( $('#bulk-edit') );
@@ -299,5 +311,49 @@ inlineEditPost = {
        }
 };
 
-$(document).ready(function(){inlineEditPost.init();});
-})(jQuery);
+$( document ).ready( function(){ inlineEditPost.init(); } );
+
+// Show/hide locks on posts
+$( document ).on( 'heartbeat-tick.wp-check-locked-posts', function( e, data ) {
+       var locked = data['wp-check-locked-posts'] || {};
+
+       $('#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];
+                               row.find('.column-title .locked-text').text( lock_data.text );
+                               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(/&amp;/g, '&') );
+                                       row.find('.column-title .locked-avatar').empty().append( avatar );
+                               }
+                               row.addClass('wp-locked');
+                       }
+               } else if ( row.hasClass('wp-locked') ) {
+                       // Make room for the CSS animation
+                       row.removeClass('wp-locked').delay(1000).find('.locked-info span').empty();
+               }
+       });
+}).on( 'heartbeat-send.wp-check-locked-posts', function( e, data ) {
+       var check = [];
+
+       $('#the-list tr').each( function(i, el) {
+               if ( el.id ) {
+                       check.push( el.id );
+               }
+       });
+
+       if ( check.length ) {
+               data['wp-check-locked-posts'] = check;
+       }
+}).ready( function() {
+       // Set the heartbeat interval to 15 sec.
+       if ( typeof wp !== 'undefined' && wp.heartbeat ) {
+               wp.heartbeat.interval( 15 );
+       }
+});
+
+}(jQuery));