Docs: Improve JS Docs for wp-includes/js/heartbeat.js
.
Most of the documentation was already present. This change achieves the following: * Fixes the formatting for most doc blocks. * Adds `@since` tags to all functions. * Makes sure the heartbeat public methods are correctly added to the `wp.heartbeat` namespace. Props andizer, jjcomack, carolinegeven. Fixes #42675. git-svn-id: https://develop.svn.wordpress.org/trunk@42389 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f216215864
commit
a5ff0c67c9
@ -27,73 +27,89 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
( function( $, window, undefined ) {
|
( function( $, window, undefined ) {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs the Heartbeat API.
|
||||||
|
*
|
||||||
|
* @since 3.6.0
|
||||||
|
*
|
||||||
|
* @returns {Object} An instance of the Heartbeat class.
|
||||||
|
* @constructor
|
||||||
|
*/
|
||||||
var Heartbeat = function() {
|
var Heartbeat = function() {
|
||||||
var $document = $(document),
|
var $document = $(document),
|
||||||
settings = {
|
settings = {
|
||||||
// Suspend/resume
|
// Suspend/resume.
|
||||||
suspend: false,
|
suspend: false,
|
||||||
|
|
||||||
// Whether suspending is enabled
|
// Whether suspending is enabled.
|
||||||
suspendEnabled: true,
|
suspendEnabled: true,
|
||||||
|
|
||||||
// Current screen id, defaults to the JS global 'pagenow' when present (in the admin) or 'front'
|
// Current screen id, defaults to the JS global 'pagenow' when present
|
||||||
|
// (in the admin) or 'front'.
|
||||||
screenId: '',
|
screenId: '',
|
||||||
|
|
||||||
// XHR request URL, defaults to the JS global 'ajaxurl' when present
|
// XHR request URL, defaults to the JS global 'ajaxurl' when present.
|
||||||
url: '',
|
url: '',
|
||||||
|
|
||||||
// Timestamp, start of the last connection request
|
// Timestamp, start of the last connection request.
|
||||||
lastTick: 0,
|
lastTick: 0,
|
||||||
|
|
||||||
// Container for the enqueued items
|
// Container for the enqueued items.
|
||||||
queue: {},
|
queue: {},
|
||||||
|
|
||||||
// Connect interval (in seconds)
|
// Connect interval (in seconds).
|
||||||
mainInterval: 60,
|
mainInterval: 60,
|
||||||
|
|
||||||
// Used when the interval is set to 5 sec. temporarily
|
// Used when the interval is set to 5 sec. temporarily.
|
||||||
tempInterval: 0,
|
tempInterval: 0,
|
||||||
|
|
||||||
// Used when the interval is reset
|
// Used when the interval is reset.
|
||||||
originalInterval: 0,
|
originalInterval: 0,
|
||||||
|
|
||||||
// Used to limit the number of AJAX requests.
|
// Used to limit the number of AJAX requests.
|
||||||
minimalInterval: 0,
|
minimalInterval: 0,
|
||||||
|
|
||||||
// Used together with tempInterval
|
// Used together with tempInterval.
|
||||||
countdown: 0,
|
countdown: 0,
|
||||||
|
|
||||||
// Whether a connection is currently in progress
|
// Whether a connection is currently in progress.
|
||||||
connecting: false,
|
connecting: false,
|
||||||
|
|
||||||
// Whether a connection error occurred
|
// Whether a connection error occurred.
|
||||||
connectionError: false,
|
connectionError: false,
|
||||||
|
|
||||||
// Used to track non-critical errors
|
// Used to track non-critical errors.
|
||||||
errorcount: 0,
|
errorcount: 0,
|
||||||
|
|
||||||
// Whether at least one connection has completed successfully
|
// Whether at least one connection has been completed successfully.
|
||||||
hasConnected: false,
|
hasConnected: false,
|
||||||
|
|
||||||
// Whether the current browser window is in focus and the user is active
|
// Whether the current browser window is in focus and the user is active.
|
||||||
hasFocus: true,
|
hasFocus: true,
|
||||||
|
|
||||||
// Timestamp, last time the user was active. Checked every 30 sec.
|
// Timestamp, last time the user was active. Checked every 30 sec.
|
||||||
userActivity: 0,
|
userActivity: 0,
|
||||||
|
|
||||||
// Flags whether events tracking user activity were set
|
// Flag whether events tracking user activity were set.
|
||||||
userActivityEvents: false,
|
userActivityEvents: false,
|
||||||
|
|
||||||
|
// Timer that keeps track of how long a user has focus.
|
||||||
checkFocusTimer: 0,
|
checkFocusTimer: 0,
|
||||||
|
|
||||||
|
// Timer that keeps track of how long needs to be waited before connecting to
|
||||||
|
// the server again.
|
||||||
beatTimer: 0
|
beatTimer: 0
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set local vars and events, then start
|
* Sets local variables and events, then starts the heartbeat.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.8.0
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function initialize() {
|
function initialize() {
|
||||||
var options, hidden, visibilityState, visibilitychange;
|
var options, hidden, visibilityState, visibilitychange;
|
||||||
@ -106,17 +122,20 @@
|
|||||||
settings.url = window.ajaxurl;
|
settings.url = window.ajaxurl;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pull in options passed from PHP
|
// Pull in options passed from PHP.
|
||||||
if ( typeof window.heartbeatSettings === 'object' ) {
|
if ( typeof window.heartbeatSettings === 'object' ) {
|
||||||
options = window.heartbeatSettings;
|
options = window.heartbeatSettings;
|
||||||
|
|
||||||
// The XHR URL can be passed as option when window.ajaxurl is not set
|
// The XHR URL can be passed as option when window.ajaxurl is not set.
|
||||||
if ( ! settings.url && options.ajaxurl ) {
|
if ( ! settings.url && options.ajaxurl ) {
|
||||||
settings.url = options.ajaxurl;
|
settings.url = options.ajaxurl;
|
||||||
}
|
}
|
||||||
|
|
||||||
// The interval can be from 15 to 120 sec. and can be set temporarily to 5 sec.
|
/*
|
||||||
// It can be set in the initial options or changed later from JS and/or from PHP.
|
* The interval can be from 15 to 120 sec. and can be set temporarily to 5 sec.
|
||||||
|
* It can be set in the initial options or changed later through JS and/or
|
||||||
|
* through PHP.
|
||||||
|
*/
|
||||||
if ( options.interval ) {
|
if ( options.interval ) {
|
||||||
settings.mainInterval = options.interval;
|
settings.mainInterval = options.interval;
|
||||||
|
|
||||||
@ -127,11 +146,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Used to limit the number of AJAX requests. Overrides all other intervals if they are shorter.
|
/*
|
||||||
// Needed for some hosts that cannot handle frequent requests and the user may exceed the allocated server CPU time, etc.
|
* Used to limit the number of AJAX requests. Overrides all other intervals if
|
||||||
// The minimal interval can be up to 600 sec. however setting it to longer than 120 sec. will limit or disable
|
* they are shorter. Needed for some hosts that cannot handle frequent requests
|
||||||
// some of the functionality (like post locks).
|
* and the user may exceed the allocated server CPU time, etc. The minimal
|
||||||
// Once set at initialization, minimalInterval cannot be changed/overridden.
|
* interval can be up to 600 sec. however setting it to longer than 120 sec.
|
||||||
|
* will limit or disable some of the functionality (like post locks). Once set
|
||||||
|
* at initialization, minimalInterval cannot be changed/overridden.
|
||||||
|
*/
|
||||||
if ( options.minimalInterval ) {
|
if ( options.minimalInterval ) {
|
||||||
options.minimalInterval = parseInt( options.minimalInterval, 10 );
|
options.minimalInterval = parseInt( options.minimalInterval, 10 );
|
||||||
settings.minimalInterval = options.minimalInterval > 0 && options.minimalInterval <= 600 ? options.minimalInterval * 1000 : 0;
|
settings.minimalInterval = options.minimalInterval > 0 && options.minimalInterval <= 600 ? options.minimalInterval * 1000 : 0;
|
||||||
@ -141,7 +163,8 @@
|
|||||||
settings.mainInterval = settings.minimalInterval;
|
settings.mainInterval = settings.minimalInterval;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 'screenId' can be added from settings on the front end where the JS global 'pagenow' is not set
|
// 'screenId' can be added from settings on the front end where the JS global
|
||||||
|
// 'pagenow' is not set.
|
||||||
if ( ! settings.screenId ) {
|
if ( ! settings.screenId ) {
|
||||||
settings.screenId = options.screenId || 'front';
|
settings.screenId = options.screenId || 'front';
|
||||||
}
|
}
|
||||||
@ -151,13 +174,16 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert to milliseconds
|
// Convert to milliseconds.
|
||||||
settings.mainInterval = settings.mainInterval * 1000;
|
settings.mainInterval = settings.mainInterval * 1000;
|
||||||
settings.originalInterval = settings.mainInterval;
|
settings.originalInterval = settings.mainInterval;
|
||||||
|
|
||||||
// Switch the interval to 120 sec. by using the Page Visibility API.
|
/*
|
||||||
// If the browser doesn't support it (Safari < 7, Android < 4.4, IE < 10), the interval
|
* Switch the interval to 120 seconds by using the Page Visibility API.
|
||||||
// will be increased to 120 sec. after 5 min. of mouse and keyboard inactivity.
|
* If the browser doesn't support it (Safari < 7, Android < 4.4, IE < 10), the
|
||||||
|
* interval will be increased to 120 seconds after 5 minutes of mouse and keyboard
|
||||||
|
* inactivity.
|
||||||
|
*/
|
||||||
if ( typeof document.hidden !== 'undefined' ) {
|
if ( typeof document.hidden !== 'undefined' ) {
|
||||||
hidden = 'hidden';
|
hidden = 'hidden';
|
||||||
visibilitychange = 'visibilitychange';
|
visibilitychange = 'visibilitychange';
|
||||||
@ -196,10 +222,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(window).on( 'unload.wp-heartbeat', function() {
|
$(window).on( 'unload.wp-heartbeat', function() {
|
||||||
// Don't connect any more
|
// Don't connect anymore.
|
||||||
settings.suspend = true;
|
settings.suspend = true;
|
||||||
|
|
||||||
// Abort the last request if not completed
|
// Abort the last request if not completed.
|
||||||
if ( settings.xhr && settings.xhr.readyState !== 4 ) {
|
if ( settings.xhr && settings.xhr.readyState !== 4 ) {
|
||||||
settings.xhr.abort();
|
settings.xhr.abort();
|
||||||
}
|
}
|
||||||
@ -208,7 +234,7 @@
|
|||||||
// Check for user activity every 30 seconds.
|
// Check for user activity every 30 seconds.
|
||||||
window.setInterval( checkUserActivity, 30000 );
|
window.setInterval( checkUserActivity, 30000 );
|
||||||
|
|
||||||
// Start one tick after DOM ready
|
// Start one tick after DOM ready.
|
||||||
$document.ready( function() {
|
$document.ready( function() {
|
||||||
settings.lastTick = time();
|
settings.lastTick = time();
|
||||||
scheduleNextTick();
|
scheduleNextTick();
|
||||||
@ -216,28 +242,34 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the current time according to the browser
|
* Returns the current time according to the browser.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return int
|
* @since 3.6.0
|
||||||
|
*
|
||||||
|
* @returns {number} Returns the current time.
|
||||||
*/
|
*/
|
||||||
function time() {
|
function time() {
|
||||||
return (new Date()).getTime();
|
return (new Date()).getTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check if the iframe is from the same origin
|
* Checks if the iframe is from the same origin.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return bool
|
* @since 3.6.0
|
||||||
|
*
|
||||||
|
* @returns {boolean} Returns whether or not the iframe is from the same origin.
|
||||||
*/
|
*/
|
||||||
function isLocalFrame( frame ) {
|
function isLocalFrame( frame ) {
|
||||||
var origin, src = frame.src;
|
var origin, src = frame.src;
|
||||||
|
|
||||||
// Need to compare strings as WebKit doesn't throw JS errors when iframes have different origin.
|
/*
|
||||||
// It throws uncatchable exceptions.
|
* Need to compare strings as WebKit doesn't throw JS errors when iframes have
|
||||||
|
* different origin. It throws uncatchable exceptions.
|
||||||
|
*/
|
||||||
if ( src && /^https?:\/\//.test( src ) ) {
|
if ( src && /^https?:\/\//.test( src ) ) {
|
||||||
origin = window.location.origin ? window.location.origin : window.location.protocol + '//' + window.location.host;
|
origin = window.location.origin ? window.location.origin : window.location.protocol + '//' + window.location.host;
|
||||||
|
|
||||||
@ -256,11 +288,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check if the document's focus has changed
|
* Checks if the document's focus has changed.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 4.1.0
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function checkFocus() {
|
function checkFocus() {
|
||||||
if ( settings.hasFocus && ! document.hasFocus() ) {
|
if ( settings.hasFocus && ! document.hasFocus() ) {
|
||||||
@ -271,13 +305,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set error state and fire an event on XHR errors or timeout
|
* Sets error state and fires an event on XHR errors or timeout.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @param string error The error type passed from the XHR
|
* @since 3.8.0
|
||||||
* @param int status The HTTP status code passed from jqXHR (200, 404, 500, etc.)
|
*
|
||||||
* @return void
|
* @param {string} error The error type passed from the XHR.
|
||||||
|
* @param {number} status The HTTP status code passed from jqXHR
|
||||||
|
* (200, 404, 500, etc.).
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function setErrorState( error, status ) {
|
function setErrorState( error, status ) {
|
||||||
var trigger;
|
var trigger;
|
||||||
@ -285,10 +323,10 @@
|
|||||||
if ( error ) {
|
if ( error ) {
|
||||||
switch ( error ) {
|
switch ( error ) {
|
||||||
case 'abort':
|
case 'abort':
|
||||||
// do nothing
|
// Do nothing.
|
||||||
break;
|
break;
|
||||||
case 'timeout':
|
case 'timeout':
|
||||||
// no response for 30 sec.
|
// No response for 30 sec.
|
||||||
trigger = true;
|
trigger = true;
|
||||||
break;
|
break;
|
||||||
case 'error':
|
case 'error':
|
||||||
@ -317,14 +355,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clear the error state and fire an event
|
* Clears the error state and fires an event if there is a connection error.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.8.0
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function clearErrorState() {
|
function clearErrorState() {
|
||||||
// Has connected successfully
|
// Has connected successfully.
|
||||||
settings.hasConnected = true;
|
settings.hasConnected = true;
|
||||||
|
|
||||||
if ( hasConnectionError() ) {
|
if ( hasConnectionError() ) {
|
||||||
@ -335,11 +375,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gather the data and connect to the server
|
* Gathers the data and connects to the server.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.6.0
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function connect() {
|
function connect() {
|
||||||
var ajaxData, heartbeatData;
|
var ajaxData, heartbeatData;
|
||||||
@ -353,7 +395,7 @@
|
|||||||
settings.lastTick = time();
|
settings.lastTick = time();
|
||||||
|
|
||||||
heartbeatData = $.extend( {}, settings.queue );
|
heartbeatData = $.extend( {}, settings.queue );
|
||||||
// Clear the data queue, anything added after this point will be send on the next tick
|
// Clear the data queue. Anything added after this point will be sent on the next tick.
|
||||||
settings.queue = {};
|
settings.queue = {};
|
||||||
|
|
||||||
$document.trigger( 'heartbeat-send', [ heartbeatData ] );
|
$document.trigger( 'heartbeat-send', [ heartbeatData ] );
|
||||||
@ -403,7 +445,7 @@
|
|||||||
|
|
||||||
$document.trigger( 'heartbeat-tick', [response, textStatus, jqXHR] );
|
$document.trigger( 'heartbeat-tick', [response, textStatus, jqXHR] );
|
||||||
|
|
||||||
// Do this last, can trigger the next XHR if connection time > 5 sec. and newInterval == 'fast'
|
// Do this last. Can trigger the next XHR if connection time > 5 sec. and newInterval == 'fast'.
|
||||||
if ( newInterval ) {
|
if ( newInterval ) {
|
||||||
interval( newInterval );
|
interval( newInterval );
|
||||||
}
|
}
|
||||||
@ -414,13 +456,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Schedule the next connection
|
* Schedules the next connection.
|
||||||
*
|
*
|
||||||
* Fires immediately if the connection time is longer than the interval.
|
* Fires immediately if the connection time is longer than the interval.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.8.0
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function scheduleNextTick() {
|
function scheduleNextTick() {
|
||||||
var delta = time() - settings.lastTick,
|
var delta = time() - settings.lastTick,
|
||||||
@ -460,22 +504,26 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the internal state when the browser window becomes hidden or loses focus
|
* Sets the internal state when the browser window becomes hidden or loses focus.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.6.0
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function blurred() {
|
function blurred() {
|
||||||
settings.hasFocus = false;
|
settings.hasFocus = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the internal state when the browser window becomes visible or is in focus
|
* Sets the internal state when the browser window becomes visible or is in focus.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.6.0
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function focused() {
|
function focused() {
|
||||||
settings.userActivity = time();
|
settings.userActivity = time();
|
||||||
@ -490,11 +538,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Runs when the user becomes active after a period of inactivity
|
* Runs when the user becomes active after a period of inactivity.
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.6.0
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function userIsActive() {
|
function userIsActive() {
|
||||||
settings.userActivityEvents = false;
|
settings.userActivityEvents = false;
|
||||||
@ -510,16 +560,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check for user activity
|
* Checks for user activity.
|
||||||
*
|
*
|
||||||
* Runs every 30 sec.
|
* Runs every 30 sec. Sets 'hasFocus = true' if user is active and the window is
|
||||||
* Sets 'hasFocus = true' if user is active and the window is in the background.
|
* in the background. Sets 'hasFocus = false' if the user has been inactive
|
||||||
* Set 'hasFocus = false' if the user has been inactive (no mouse or keyboard activity)
|
* (no mouse or keyboard activity) for 5 min. even when the window has focus.
|
||||||
* for 5 min. even when the window has focus.
|
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.8.0
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function checkUserActivity() {
|
function checkUserActivity() {
|
||||||
var lastActive = settings.userActivity ? time() - settings.userActivity : 0;
|
var lastActive = settings.userActivity ? time() - settings.userActivity : 0;
|
||||||
@ -552,33 +603,45 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public methods
|
// Public methods.
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the window (or any local iframe in it) has focus, or the user is active
|
* Checks whether the window (or any local iframe in it) has focus, or the user
|
||||||
|
* is active.
|
||||||
*
|
*
|
||||||
* @return bool
|
* @since 3.6.0
|
||||||
|
* @memberOf wp.heartbeat.prototype
|
||||||
|
*
|
||||||
|
* @returns {boolean} True if the window or the user is active.
|
||||||
*/
|
*/
|
||||||
function hasFocus() {
|
function hasFocus() {
|
||||||
return settings.hasFocus;
|
return settings.hasFocus;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether there is a connection error
|
* Checks whether there is a connection error.
|
||||||
*
|
*
|
||||||
* @return bool
|
* @since 3.6.0
|
||||||
|
*
|
||||||
|
* @memberOf wp.heartbeat.prototype
|
||||||
|
*
|
||||||
|
* @returns {boolean} True if a connection error was found.
|
||||||
*/
|
*/
|
||||||
function hasConnectionError() {
|
function hasConnectionError() {
|
||||||
return settings.connectionError;
|
return settings.connectionError;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Connect asap regardless of 'hasFocus'
|
* Connects as soon as possible regardless of 'hasFocus' state.
|
||||||
*
|
*
|
||||||
* Will not open two concurrent connections. If a connection is in progress,
|
* Will not open two concurrent connections. If a connection is in progress,
|
||||||
* will connect again immediately after the current connection completes.
|
* will connect again immediately after the current connection completes.
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.8.0
|
||||||
|
*
|
||||||
|
* @memberOf wp.heartbeat.prototype
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function connectNow() {
|
function connectNow() {
|
||||||
settings.lastTick = 0;
|
settings.lastTick = 0;
|
||||||
@ -586,28 +649,41 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disable suspending
|
* Disables suspending.
|
||||||
*
|
*
|
||||||
* Should be used only when Heartbeat is performing critical tasks like autosave, post-locking, etc.
|
* Should be used only when Heartbeat is performing critical tasks like
|
||||||
* Using this on many screens may overload the user's hosting account if several
|
* autosave, post-locking, etc. Using this on many screens may overload the
|
||||||
* browser windows/tabs are left open for a long time.
|
* user's hosting account if several browser windows/tabs are left open for a
|
||||||
|
* long time.
|
||||||
*
|
*
|
||||||
* @return void
|
* @since 3.8.0
|
||||||
|
*
|
||||||
|
* @memberOf wp.heartbeat.prototype
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function disableSuspend() {
|
function disableSuspend() {
|
||||||
settings.suspendEnabled = false;
|
settings.suspendEnabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get/Set the interval
|
* Gets/Sets the interval.
|
||||||
*
|
*
|
||||||
* When setting to 'fast' or 5, by default interval is 5 sec. for the next 30 ticks (for 2 min and 30 sec).
|
* When setting to 'fast' or 5, the interval is 5 seconds for the next 30 ticks
|
||||||
* In this case the number of 'ticks' can be passed as second argument.
|
* (for 2 minutes and 30 seconds) by default. In this case the number of 'ticks'
|
||||||
* If the window doesn't have focus, the interval slows down to 2 min.
|
* can be passed as second argument. If the window doesn't have focus, the
|
||||||
|
* interval slows down to 2 min.
|
||||||
*
|
*
|
||||||
* @param mixed speed Interval: 'fast' or 5, 15, 30, 60, 120
|
* @since 3.6.0
|
||||||
* @param string ticks Used with speed = 'fast' or 5, how many ticks before the interval reverts back
|
*
|
||||||
* @return int Current interval in seconds
|
* @memberOf wp.heartbeat.prototype
|
||||||
|
*
|
||||||
|
* @param {string|number} speed Interval: 'fast' or 5, 15, 30, 60, 120. Fast
|
||||||
|
* equals 5.
|
||||||
|
* @param {string} ticks Tells how many ticks before the interval reverts
|
||||||
|
* back. Used with speed = 'fast' or 5.
|
||||||
|
*
|
||||||
|
* @returns {number} Current interval in seconds.
|
||||||
*/
|
*/
|
||||||
function interval( speed, ticks ) {
|
function interval( speed, ticks ) {
|
||||||
var newInterval,
|
var newInterval,
|
||||||
@ -667,20 +743,28 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enqueue data to send with the next XHR
|
* Enqueues data to send with the next XHR.
|
||||||
*
|
*
|
||||||
* As the data is send asynchronously, this function doesn't return the XHR response.
|
* As the data is send asynchronously, this function doesn't return the XHR
|
||||||
* To see the response, use the custom jQuery event 'heartbeat-tick' on the document, example:
|
* response. To see the response, use the custom jQuery event 'heartbeat-tick'
|
||||||
|
* on the document, example:
|
||||||
* $(document).on( 'heartbeat-tick.myname', function( event, data, textStatus, jqXHR ) {
|
* $(document).on( 'heartbeat-tick.myname', function( event, data, textStatus, jqXHR ) {
|
||||||
* // code
|
* // code
|
||||||
* });
|
* });
|
||||||
* If the same 'handle' is used more than once, the data is not overwritten when the third argument is 'true'.
|
* If the same 'handle' is used more than once, the data is not overwritten when
|
||||||
* Use wp.heartbeat.isQueued('handle') to see if any data is already queued for that handle.
|
* the third argument is 'true'. Use `wp.heartbeat.isQueued('handle')` to see if
|
||||||
|
* any data is already queued for that handle.
|
||||||
*
|
*
|
||||||
* $param string handle Unique handle for the data. The handle is used in PHP to receive the data.
|
* @since 3.6.0
|
||||||
* $param mixed data The data to send.
|
*
|
||||||
* $param bool noOverwrite Whether to overwrite existing data in the queue.
|
* @memberOf wp.heartbeat.prototype
|
||||||
* $return bool Whether the data was queued or not.
|
*
|
||||||
|
* @param {string} handle Unique handle for the data, used in PHP to
|
||||||
|
* receive the data.
|
||||||
|
* @param {*} data The data to send.
|
||||||
|
* @param {boolean} noOverwrite Whether to overwrite existing data in the queue.
|
||||||
|
*
|
||||||
|
* @returns {boolean} True if the data was queued.
|
||||||
*/
|
*/
|
||||||
function enqueue( handle, data, noOverwrite ) {
|
function enqueue( handle, data, noOverwrite ) {
|
||||||
if ( handle ) {
|
if ( handle ) {
|
||||||
@ -695,10 +779,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check if data with a particular handle is queued
|
* Checks if data with a particular handle is queued.
|
||||||
*
|
*
|
||||||
* $param string handle The handle for the data
|
* @since 3.6.0
|
||||||
* $return bool Whether some data is queued with this handle
|
*
|
||||||
|
* @param {string} handle The handle for the data.
|
||||||
|
*
|
||||||
|
* @returns {boolean} True if the data is queued with this handle.
|
||||||
*/
|
*/
|
||||||
function isQueued( handle ) {
|
function isQueued( handle ) {
|
||||||
if ( handle ) {
|
if ( handle ) {
|
||||||
@ -707,10 +794,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove data with a particular handle from the queue
|
* Removes data with a particular handle from the queue.
|
||||||
*
|
*
|
||||||
* $param string handle The handle for the data
|
* @since 3.7.0
|
||||||
* $return void
|
*
|
||||||
|
* @memberOf wp.heartbeat.prototype
|
||||||
|
*
|
||||||
|
* @param {string} handle The handle for the data.
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
function dequeue( handle ) {
|
function dequeue( handle ) {
|
||||||
if ( handle ) {
|
if ( handle ) {
|
||||||
@ -719,10 +811,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get data that was enqueued with a particular handle
|
* Gets data that was enqueued with a particular handle.
|
||||||
*
|
*
|
||||||
* $param string handle The handle for the data
|
* @since 3.7.0
|
||||||
* $return mixed The data or undefined
|
*
|
||||||
|
* @memberOf wp.heartbeat.prototype
|
||||||
|
*
|
||||||
|
* @param {string} handle The handle for the data.
|
||||||
|
*
|
||||||
|
* @returns {*} The data or undefined.
|
||||||
*/
|
*/
|
||||||
function getQueuedItem( handle ) {
|
function getQueuedItem( handle ) {
|
||||||
if ( handle ) {
|
if ( handle ) {
|
||||||
@ -732,7 +829,7 @@
|
|||||||
|
|
||||||
initialize();
|
initialize();
|
||||||
|
|
||||||
// Expose public methods
|
// Expose public methods.
|
||||||
return {
|
return {
|
||||||
hasFocus: hasFocus,
|
hasFocus: hasFocus,
|
||||||
connectNow: connectNow,
|
connectNow: connectNow,
|
||||||
@ -752,6 +849,13 @@
|
|||||||
* @namespace wp
|
* @namespace wp
|
||||||
*/
|
*/
|
||||||
window.wp = window.wp || {};
|
window.wp = window.wp || {};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Contains the Heartbeat API.
|
||||||
|
*
|
||||||
|
* @namespace wp.heartbeat
|
||||||
|
* @type {Heartbeat}
|
||||||
|
*/
|
||||||
window.wp.heartbeat = new Heartbeat();
|
window.wp.heartbeat = new Heartbeat();
|
||||||
|
|
||||||
}( jQuery, window ));
|
}( jQuery, window ));
|
||||||
|
Loading…
Reference in New Issue
Block a user