X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/9e77185fafaf4e60e2b73821e0e4b9b1a11fb85f..HEAD:/wp-includes/js/autosave.js diff --git a/wp-includes/js/autosave.js b/wp-includes/js/autosave.js index b338e949..e88943d6 100644 --- a/wp-includes/js/autosave.js +++ b/wp-includes/js/autosave.js @@ -7,8 +7,8 @@ window.autosave = function() { ( function( $, window ) { function autosave() { var initialCompareString, - lastTriggerSave = 0, - $document = $(document); + lastTriggerSave = 0, + $document = $(document); /** * Returns the data saved in both local and remote autosave @@ -19,11 +19,11 @@ window.autosave = function() { var post_name, parent_id, data, time = ( new Date() ).getTime(), cats = [], - editor = typeof tinymce !== 'undefined' && tinymce.get('content'); + editor = getEditor(); // Don't run editor.save() more often than every 3 sec. // It is resource intensive and might slow down typing in long posts on slow devices. - if ( editor && ! editor.isHidden() && time - 3000 > lastTriggerSave ) { + if ( editor && editor.isDirty() && ! editor.isHidden() && time - 3000 > lastTriggerSave ) { editor.save(); lastTriggerSave = time; } @@ -88,9 +88,13 @@ window.autosave = function() { $document.trigger( 'autosave-enable-buttons' ); } + function getEditor() { + return typeof tinymce !== 'undefined' && tinymce.get('content'); + } + // Autosave in localStorage function autosaveLocal() { - var restorePostData, undoPostData, blog_id, post_id, hasStorage, intervalTimer, + var blog_id, post_id, hasStorage, intervalTimer, lastCompareString, isSuspended = false; @@ -266,7 +270,7 @@ window.autosave = function() { intervalTimer = window.setInterval( save, 15000 ); $( 'form#post' ).on( 'submit.autosave-local', function() { - var editor = typeof tinymce !== 'undefined' && tinymce.get('content'), + var editor = getEditor(), post_id = $('#post_ID').val() || 0; if ( editor && ! editor.isHidden() ) { @@ -286,7 +290,8 @@ window.autosave = function() { }); } - wpCookies.set( 'wp-saving-post', post_id + '-check', 24 * 60 * 60 ); + var secure = ( 'https:' === window.location.protocol ); + wpCookies.set( 'wp-saving-post', post_id + '-check', 24 * 60 * 60, false, false, secure ); }); } @@ -309,7 +314,9 @@ window.autosave = function() { function checkPost() { var content, post_title, excerpt, $notice, postData = getSavedPostData(), - cookie = wpCookies.get( 'wp-saving-post' ); + cookie = wpCookies.get( 'wp-saving-post' ), + $newerAutosaveNotice = $( '#has-newer-autosave' ).parent( '.notice' ), + $headerEnd = $( '.wp-header-end' ); if ( cookie === post_id + '-saved' ) { wpCookies.remove( 'wp-saving-post' ); @@ -322,11 +329,6 @@ window.autosave = function() { return; } - // There is a newer autosave. Don't show two "restore" notices at the same time. - if ( $( '#has-newer-autosave' ).length ) { - return; - } - content = $( '#content' ).val() || ''; post_title = $( '#title' ).val() || ''; excerpt = $( '#excerpt' ).val() || ''; @@ -337,30 +339,33 @@ window.autosave = function() { return; } - restorePostData = postData; - undoPostData = { - content: content, - post_title: post_title, - excerpt: excerpt - }; - - $notice = $( '#local-storage-notice' ); - $('.wrap h2').first().after( $notice.addClass( 'updated' ).show() ); - - $notice.on( 'click.autosave-local', function( event ) { - var $target = $( event.target ); - - if ( $target.hasClass( 'restore-backup' ) ) { - restorePost( restorePostData ); - $target.parent().hide(); - $(this).find( 'p.undo-restore' ).show(); - } else if ( $target.hasClass( 'undo-restore-backup' ) ) { - restorePost( undoPostData ); - $target.parent().hide(); - $(this).find( 'p.local-restore' ).show(); - } + /* + * If '.wp-header-end' is found, append the notices after it otherwise + * after the first h1 or h2 heading found within the main content. + */ + if ( ! $headerEnd.length ) { + $headerEnd = $( '.wrap h1, .wrap h2' ).first(); + } + + $notice = $( '#local-storage-notice' ) + .insertAfter( $headerEnd ) + .addClass( 'notice-warning' ); - event.preventDefault(); + if ( $newerAutosaveNotice.length ) { + // If there is a "server" autosave notice, hide it. + // The data in the session storage is either the same or newer. + $newerAutosaveNotice.slideUp( 150, function() { + $notice.slideDown( 150 ); + }); + } else { + $notice.slideDown( 200 ); + } + + $notice.find( '.restore-backup' ).on( 'click.autosave-local', function() { + restorePost( postData ); + $notice.fadeTo( 250, 0, function() { + $notice.slideUp( 150 ); + }); }); } @@ -377,16 +382,25 @@ window.autosave = function() { } $( '#excerpt' ).val( postData.excerpt || '' ); - editor = typeof tinymce !== 'undefined' && tinymce.get('content'); + editor = getEditor(); if ( editor && ! editor.isHidden() && typeof switchEditors !== 'undefined' ) { + if ( editor.settings.wpautop && postData.content ) { + postData.content = switchEditors.wpautop( postData.content ); + } + // Make sure there's an undo level in the editor - editor.undoManager.add(); - editor.setContent( postData.content ? switchEditors.wpautop( postData.content ) : '' ); + editor.undoManager.transact( function() { + editor.setContent( postData.content || '' ); + editor.nodeChanged(); + }); } else { // Make sure the Text editor is selected $( '#content-html' ).click(); - $( '#content' ).val( postData.content ); + $( '#content' ).focus(); + // Using document.execCommand() will let the user undo. + document.execCommand( 'selectAll' ); + document.execCommand( 'insertText', false, postData.content || '' ); } return true;