]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/post.js
WordPress 4.5
[autoinstalls/wordpress.git] / wp-admin / js / post.js
index 8dfdf3715f41e019f8f61bddc21e5644c9c84a6f..a4011b449d1066e6e58f097a0a561b4126a82cea 100644 (file)
@@ -1,5 +1,5 @@
 /* global postL10n, ajaxurl, wpAjax, setPostThumbnailL10n, postboxes, pagenow, tinymce, alert, deleteUserSetting */
-/* global theList:true, theExtraList:true, getUserSetting, setUserSetting */
+/* global theList:true, theExtraList:true, getUserSetting, setUserSetting, commentReply */
 
 var commentsBox, WPSetThumbnailHTML, WPSetThumbnailID, WPRemoveThumbnail, wptitlehint, makeSlugeditClickable, editPermalink;
 // Back-compat: prevent fatal errors
@@ -59,6 +59,11 @@ commentsBox = {
                );
 
                return false;
+       },
+
+       load: function(total){
+               this.st = jQuery('#the-comment-list tr.comment:visible').length;
+               this.get(total);
        }
 };
 
@@ -68,7 +73,7 @@ WPSetThumbnailHTML = function(html){
 
 WPSetThumbnailID = function(id){
        var field = $('input[value="_thumbnail_id"]', '#list-table');
-       if ( field.size() > 0 ) {
+       if ( field.length > 0 ) {
                $('#meta\\[' + field.attr('id').match(/[0-9]+/) + '\\]\\[value\\]').text(id);
        }
 };
@@ -126,7 +131,7 @@ $(document).on( 'heartbeat-send.refresh-lock', function( e, data ) {
                                }
 
                                if ( received.lock_error.avatar_src ) {
-                                       avatar = $('<img class="avatar avatar-64 photo" width="64" height="64" />').attr( 'src', received.lock_error.avatar_src.replace(/&amp;/g, '&') );
+                                       avatar = $( '<img class="avatar avatar-64 photo" width="64" height="64" alt="" />' ).attr( 'src', received.lock_error.avatar_src.replace( /&amp;/g, '&' ) );
                                        wrap.find('div.post-locked-avatar').empty().append( avatar );
                                }
 
@@ -170,13 +175,13 @@ $(document).on( 'heartbeat-send.refresh-lock', function( e, data ) {
        }
 
        $(document).on( 'heartbeat-send.wp-refresh-nonces', function( e, data ) {
-               var nonce, post_id;
+               var post_id,
+                       $authCheck = $('#wp-auth-check-wrap');
 
-               if ( check ) {
-                       if ( ( post_id = $('#post_ID').val() ) && ( nonce = $('#_wpnonce').val() ) ) {
+               if ( check || ( $authCheck.length && ! $authCheck.hasClass( 'hidden' ) ) ) {
+                       if ( ( post_id = $('#post_ID').val() ) && $('#_wpnonce').val() ) {
                                data['wp-refresh-post-nonces'] = {
-                                       post_id: post_id,
-                                       post_nonce: nonce
+                                       post_id: post_id
                                };
                        }
                }
@@ -203,16 +208,15 @@ $(document).on( 'heartbeat-send.refresh-lock', function( e, data ) {
 jQuery(document).ready( function($) {
        var stamp, visibility, $submitButtons, updateVisibility, updateText,
                sticky = '',
-               last = 0,
-               co = $('#content'),
+               $textarea = $('#content'),
                $document = $(document),
-               $editSlugWrap = $('#edit-slug-box'),
                postId = $('#post_ID').val() || 0,
                $submitpost = $('#submitpost'),
                releaseLock = true,
                $postVisibilitySelect = $('#post-visibility-select'),
                $timestampdiv = $('#timestampdiv'),
-               $postStatusSelect = $('#post-status-select');
+               $postStatusSelect = $('#post-status-select'),
+               isMac = window.navigator.platform ? window.navigator.platform.indexOf( 'Mac' ) !== -1 : false;
 
        postboxes.add_postbox_toggles(pagenow);
 
@@ -266,6 +270,14 @@ jQuery(document).ready( function($) {
                                wp.autosave.server.suspend();
                        }
 
+                       if ( typeof commentReply !== 'undefined' ) {
+                               /*
+                                * Close the comment edit/reply form if open to stop the form
+                                * action from interfering with the post's form action.
+                                */
+                               commentReply.close();
+                       }
+
                        releaseLock = false;
                        $(window).off( 'beforeunload.edit-post' );
 
@@ -313,11 +325,10 @@ jQuery(document).ready( function($) {
 
        // This code is meant to allow tabbing from Title to Post content.
        $('#title').on( 'keydown.editor-focus', function( event ) {
-               var editor, $textarea;
+               var editor;
 
                if ( event.keyCode === 9 && ! event.ctrlKey && ! event.altKey && ! event.shiftKey ) {
                        editor = typeof tinymce != 'undefined' && tinymce.get('content');
-                       $textarea = $('#content');
 
                        if ( editor && ! editor.isHidden() ) {
                                editor.focus();
@@ -363,6 +374,10 @@ jQuery(document).ready( function($) {
                $( '.autosave-message' ).text( postL10n.savingText );
        }).on( 'after-autosave.edit-post', function( event, data ) {
                $( '.autosave-message' ).text( data.message );
+
+               if ( $( document.body ).hasClass( 'post-new-php' ) ) {
+                       $( '.submitbox .submitdelete' ).show();
+               }
        });
 
        $(window).on( 'beforeunload.edit-post', function() {
@@ -401,7 +416,7 @@ jQuery(document).ready( function($) {
        if ( $('#tagsdiv-post_tag').length ) {
                window.tagBox && window.tagBox.init();
        } else {
-               $('#side-sortables, #normal-sortables, #advanced-sortables').children('div.postbox').each(function(){
+               $('.meta-box-sortables').children('div.postbox').each(function(){
                        if ( this.id.indexOf('tagsdiv-') === 0 ) {
                                window.tagBox && window.tagBox.init();
                                return false;
@@ -421,7 +436,8 @@ jQuery(document).ready( function($) {
                        settingName = 'cats';
 
                // TODO: move to jQuery 1.3+, support for multiple hierarchical taxonomies, see wp-lists.js
-               $('a', '#' + taxonomy + '-tabs').click( function(){
+               $('a', '#' + taxonomy + '-tabs').click( function( e ) {
+                       e.preventDefault();
                        var t = $(this).attr('href');
                        $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
                        $('#' + taxonomy + '-tabs').siblings('.tabs-panel').hide();
@@ -430,7 +446,6 @@ jQuery(document).ready( function($) {
                                deleteUserSetting( settingName );
                        else
                                setUserSetting( settingName, 'pop' );
-                       return false;
                });
 
                if ( getUserSetting( settingName ) )
@@ -472,11 +487,11 @@ jQuery(document).ready( function($) {
                        addAfter: catAddAfter
                });
 
-               $('#' + taxonomy + '-add-toggle').click( function() {
+               $('#' + taxonomy + '-add-toggle').click( function( e ) {
+                       e.preventDefault();
                        $('#' + taxonomy + '-adder').toggleClass( 'wp-hidden-children' );
                        $('a[href="#' + taxonomy + '-all"]', '#' + taxonomy + '-tabs').click();
                        $('#new'+taxonomy).focus();
-                       return false;
                });
 
                $('#' + taxonomy + 'checklist, #' + taxonomy + 'checklist-pop').on( 'click', 'li.popular-category > label input[type="checkbox"]', function() {
@@ -551,12 +566,13 @@ jQuery(document).ready( function($) {
                                $('#timestamp').html(stamp);
                        } else {
                                $('#timestamp').html(
-                                       publishOn + ' <b>' +
-                                       postL10n.dateFormat.replace( '%1$s', $('option[value="' + $('#mm').val() + '"]', '#mm').text() )
-                                               .replace( '%2$s', jj )
+                                       '\n' + publishOn + ' <b>' +
+                                       postL10n.dateFormat
+                                               .replace( '%1$s', $( 'option[value="' + mm + '"]', '#mm' ).attr( 'data-text' ) )
+                                               .replace( '%2$s', parseInt( jj, 10 ) )
                                                .replace( '%3$s', aa )
-                                               .replace( '%4$s', hh )
-                                               .replace( '%5$s', mn ) +
+                                               .replace( '%4$s', ( '00' + hh ).slice( -2 ) )
+                                               .replace( '%5$s', ( '00' + mn ).slice( -2 ) ) +
                                                '</b> '
                                );
                        }
@@ -596,13 +612,15 @@ jQuery(document).ready( function($) {
                        return true;
                };
 
-               $( '#visibility .edit-visibility').click( function () {
+               $( '#visibility .edit-visibility').click( function( e ) {
+                       e.preventDefault();
                        if ( $postVisibilitySelect.is(':hidden') ) {
                                updateVisibility();
-                               $postVisibilitySelect.slideDown('fast').find('input[type="radio"]').first().focus();
+                               $postVisibilitySelect.slideDown( 'fast', function() {
+                                       $postVisibilitySelect.find( 'input[type="radio"]' ).first().focus();
+                               } );
                                $(this).hide();
                        }
-                       return false;
                });
 
                $postVisibilitySelect.find('.cancel-post-visibility').click( function( event ) {
@@ -618,7 +636,7 @@ jQuery(document).ready( function($) {
 
                $postVisibilitySelect.find('.save-post-visibility').click( function( event ) { // crazyhorse - multiple ok cancels
                        $postVisibilitySelect.slideUp('fast');
-                       $('#visibility .edit-visibility').show();
+                       $('#visibility .edit-visibility').show().focus();
                        updateText();
 
                        if ( $postVisibilitySelect.find('input:radio:checked').val() != 'public' ) {
@@ -641,8 +659,9 @@ jQuery(document).ready( function($) {
 
                $timestampdiv.siblings('a.edit-timestamp').click( function( event ) {
                        if ( $timestampdiv.is( ':hidden' ) ) {
-                               $timestampdiv.slideDown('fast');
-                               $('#mm').focus();
+                               $timestampdiv.slideDown( 'fast', function() {
+                                       $( 'input, select', $timestampdiv.find( '.timestamp-wrap' ) ).first().focus();
+                               } );
                                $(this).hide();
                        }
                        event.preventDefault();
@@ -662,7 +681,7 @@ jQuery(document).ready( function($) {
                $timestampdiv.find('.save-timestamp').click( function( event ) { // crazyhorse - multiple ok cancels
                        if ( updateText() ) {
                                $timestampdiv.slideUp('fast');
-                               $timestampdiv.siblings('a.edit-timestamp').show();
+                               $timestampdiv.siblings('a.edit-timestamp').show().focus();
                        }
                        event.preventDefault();
                });
@@ -682,20 +701,22 @@ jQuery(document).ready( function($) {
 
                $postStatusSelect.siblings('a.edit-post-status').click( function( event ) {
                        if ( $postStatusSelect.is( ':hidden' ) ) {
-                               $postStatusSelect.slideDown('fast').find('select').focus();
+                               $postStatusSelect.slideDown( 'fast', function() {
+                                       $postStatusSelect.find('select').focus();
+                               } );
                                $(this).hide();
                        }
                        event.preventDefault();
                });
 
                $postStatusSelect.find('.save-post-status').click( function( event ) {
-                       $postStatusSelect.slideUp('fast').siblings('a.edit-post-status').show();
+                       $postStatusSelect.slideUp( 'fast' ).siblings( 'a.edit-post-status' ).show().focus();
                        updateText();
                        event.preventDefault();
                });
 
                $postStatusSelect.find('.cancel-post-status').click( function( event ) {
-                       $('#post-status-select').slideUp('fast').siblings( 'a.edit-post-status' ).show().focus();
+                       $postStatusSelect.slideUp( 'fast' ).siblings( 'a.edit-post-status' ).show().focus();
                        $('#post_status').val( $('#hidden_post_status').val() );
                        updateText();
                        event.preventDefault();
@@ -705,26 +726,32 @@ jQuery(document).ready( function($) {
        // permalink
        function editPermalink() {
                var i, slug_value,
+                       $el, revert_e,
                        c = 0,
-                       e = $('#editable-post-name'),
-                       revert_e = e.html(),
                        real_slug = $('#post_name'),
                        revert_slug = real_slug.val(),
-                       b = $('#edit-slug-buttons'),
-                       revert_b = b.html(),
+                       permalink = $( '#sample-permalink' ),
+                       permalinkOrig = permalink.html(),
+                       permalinkInner = $( '#sample-permalink a' ).html(),
+                       buttons = $('#edit-slug-buttons'),
+                       buttonsOrig = buttons.html(),
                        full = $('#editable-post-name-full');
 
                // Deal with Twemoji in the post-name
                full.find( 'img' ).replaceWith( function() { return this.alt; } );
                full = full.html();
 
-               $('#view-post-btn').hide();
-               b.html('<a href="#" class="save button button-small">'+postL10n.ok+'</a> <a class="cancel" href="#">'+postL10n.cancel+'</a>');
-               b.children('.save').click(function() {
-                       var new_slug = e.children('input').val();
+               permalink.html( permalinkInner );
+               $el = $( '#editable-post-name' );
+               revert_e = $el.html();
+
+               buttons.html( '<button type="button" class="save button button-small">' + postL10n.ok + '</button> <button type="button" class="cancel button-link">' + postL10n.cancel + '</button>' );
+               buttons.children( '.save' ).click( function() {
+                       var new_slug = $el.children( 'input' ).val();
+
                        if ( new_slug == $('#editable-post-name-full').text() ) {
-                               b.children('.cancel').click();
-                               return false;
+                               buttons.children('.cancel').click();
+                               return;
                        }
                        $.post(ajaxurl, {
                                action: 'sample-permalink',
@@ -741,19 +768,21 @@ jQuery(document).ready( function($) {
                                        });
                                }
 
-                               b.html(revert_b);
+                               buttons.html(buttonsOrig);
+                               permalink.html(permalinkOrig);
                                real_slug.val(new_slug);
-                               $('#view-post-btn').show();
+                               $( '.edit-slug' ).focus();
+                               wp.a11y.speak( postL10n.permalinkSaved );
                        });
-                       return false;
                });
 
-               b.children('.cancel').click(function() {
+               buttons.children( '.cancel' ).click( function() {
                        $('#view-post-btn').show();
-                       e.html(revert_e);
-                       b.html(revert_b);
+                       $el.html(revert_e);
+                       buttons.html(buttonsOrig);
+                       permalink.html(permalinkOrig);
                        real_slug.val(revert_slug);
-                       return false;
+                       $( '.edit-slug' ).focus();
                });
 
                for ( i = 0; i < full.length; ++i ) {
@@ -762,49 +791,24 @@ jQuery(document).ready( function($) {
                }
 
                slug_value = ( c > full.length / 4 ) ? '' : full;
-               e.html('<input type="text" id="new-post-slug" value="'+slug_value+'" />').children('input').keypress(function(e) {
-                       var key = e.keyCode || 0;
-                       // on enter, just save the new slug, don't save the post
-                       if ( 13 == key ) {
-                               b.children('.save').click();
-                               return false;
+               $el.html( '<input type="text" id="new-post-slug" value="' + slug_value + '" autocomplete="off" />' ).children( 'input' ).keydown( function( e ) {
+                       var key = e.which;
+                       // On enter, just save the new slug, don't save the post.
+                       if ( 13 === key ) {
+                               e.preventDefault();
+                               buttons.children( '.save' ).click();
                        }
-                       if ( 27 == key ) {
-                               b.children('.cancel').click();
-                               return false;
+                       if ( 27 === key ) {
+                               buttons.children( '.cancel' ).click();
                        }
                } ).keyup( function() {
-                       real_slug.val(this.value);
+                       real_slug.val( this.value );
                }).focus();
        }
 
-       if ( $editSlugWrap.length ) {
-               $editSlugWrap.on( 'click', function( event ) {
-                       var $target = $( event.target );
-
-                       if ( $target.is('#editable-post-name') || $target.hasClass('edit-slug') ) {
-                               editPermalink();
-                       }
-               });
-       }
-
-       // word count
-       if ( typeof(wpWordCount) != 'undefined' ) {
-               $document.triggerHandler('wpcountwords', [ co.val() ]);
-
-               co.keyup( function(e) {
-                       var k = e.keyCode || e.charCode;
-
-                       if ( k == last )
-                               return true;
-
-                       if ( 13 == k || 8 == last || 46 == last )
-                               $document.triggerHandler('wpcountwords', [ co.val() ]);
-
-                       last = k;
-                       return true;
-               });
-       }
+       $( '#titlediv' ).on( 'click', '.edit-slug', function() {
+               editPermalink();
+       });
 
        wptitlehint = function(id) {
                id = id || 'title';
@@ -835,7 +839,6 @@ jQuery(document).ready( function($) {
        // Resize the visual and text editors
        ( function() {
                var editor, offset, mce,
-                       $textarea = $('textarea#content'),
                        $handle = $('#post-status-info'),
                        $postdivrich = $('#postdivrich');
 
@@ -923,4 +926,69 @@ jQuery(document).ready( function($) {
                        }
                });
        }
+
+       // Save on pressing Ctrl/Command + S in the Text editor
+       $textarea.on( 'keydown.wp-autosave', function( event ) {
+               if ( event.which === 83 ) {
+                       if ( event.shiftKey || event.altKey || ( isMac && ( ! event.metaKey || event.ctrlKey ) ) || ( ! isMac && ! event.ctrlKey ) ) {
+                               return;
+                       }
+
+                       wp.autosave && wp.autosave.server.triggerSave();
+                       event.preventDefault();
+               }
+       });
+
+       if ( $( '#original_post_status' ).val() === 'auto-draft' && window.history.replaceState ) {
+               var location;
+
+               $( '#publish' ).on( 'click', function() {
+                       location = window.location.href;
+                       location += ( location.indexOf( '?' ) !== -1 ) ? '&' : '?';
+                       location += 'wp-post-new-reload=true';
+
+                       window.history.replaceState( null, null, location );
+               });
+       }
 });
+
+( function( $, counter ) {
+       $( function() {
+               var $content = $( '#content' ),
+                       $count = $( '#wp-word-count' ).find( '.word-count' ),
+                       prevCount = 0,
+                       contentEditor;
+
+               function update() {
+                       var text, count;
+
+                       if ( ! contentEditor || contentEditor.isHidden() ) {
+                               text = $content.val();
+                       } else {
+                               text = contentEditor.getContent( { format: 'raw' } );
+                       }
+
+                       count = counter.count( text );
+
+                       if ( count !== prevCount ) {
+                               $count.text( count );
+                       }
+
+                       prevCount = count;
+               }
+
+               $( document ).on( 'tinymce-editor-init', function( event, editor ) {
+                       if ( editor.id !== 'content' ) {
+                               return;
+                       }
+
+                       contentEditor = editor;
+
+                       editor.on( 'nodechange keyup', _.debounce( update, 1000 ) );
+               } );
+
+               $content.on( 'input keyup', _.debounce( update, 1000 ) );
+
+               update();
+       } );
+} )( jQuery, new wp.utils.WordCounter() );