User:Kangaroopower/AjaxRC.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
![]() | Documentation for this user script can be added at User:Kangaroopower/AjaxRC. |
/*
* ADVANCED AJAX AUTO-REFRESHING ARTICLES
* Code originally by "pcj" of Wowpedia
* Maintenance, cleanup, style and bug fixes by Grunny (http://community.wikia.com/wiki/User:Grunny)
* and Kangaroopower (http://community.wikia.com/wiki/User:Kangaroopower)
*/
( function ( $, mw, window ) {
'use strict';
var ajaxIndicator = window.ajaxIndicator || 'http://images2.wikia.nocookie.net/dev/images/8/82/Facebook_throbber.gif',
ajaxTimer,
refreshText = typeof window.AjaxRCRefreshText === 'string' ? window.AjaxRCRefreshText : 'AJAX',
refreshHover = typeof window.AjaxRCRefreshHoverText === 'string' ? window.AjaxRCRefreshHoverText : 'Enable auto-refreshing page loads',
ajRefresh = window.ajaxRefresh || 60000,
ajPages = window.ajaxPages || [ 'Special:RecentChanges' ];
function storage( setTo ) {
if ( localStorage.getItem( 'AjaxRC-refresh' ) === null ) {
localStorage.setItem( 'AjaxRC-refresh', true );
}
if ( setTo === false ) {
localStorage.setItem( 'AjaxRC-refresh', false );
} else if ( setTo === true ) {
localStorage.setItem( 'AjaxRC-refresh', true );
}
return JSON.parse( localStorage.getItem( 'AjaxRC-refresh' ) );
}
/**
* Main function to start the Auto-refresh process
*/
function preloadAJAXRL() {
var $appTo = $( '.firstHeading' ) );
$appTo.append( ' <span style="font-size: xx-small; line-height: 100%;" id="ajaxRefresh"><span style="border-bottom: 1px dotted; cursor: help;" id="ajaxToggleText" title="' + refreshHover + '">' + refreshText + ':</span><input type="checkbox" style="margin-bottom: 0;" id="ajaxToggle"><span style="display: none;" id="ajaxLoadProgress"><img src="' + ajaxIndicator + '" style="vertical-align: baseline; float: none;" border="0" alt="Refreshing page" /></span></span>' );
$( document ).ajaxSend( function ( event, xhr, settings ) {
if ( location.href === settings.url ) {
$( '#ajaxLoadProgress' ).show();
}
} ).ajaxComplete ( function ( event, xhr, settings ) {
var $collapsibleElements = $( '#mw-content-text' ).find( '.mw-collapsible' ),
ajCallAgain = window.ajaxCallAgain || [];
if ( location.href === settings.url ) {
$( '#ajaxLoadProgress' ).hide();
if ( $collapsibleElements.length ) {
$collapsibleElements.makeCollapsible();
}
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' ) {
mw.special.recentchanges.init();
}
for ( var i = 0; i < ajCallAgain.length; i++ ) {
ajCallAgain[i]();
}
}
} );
$( '#ajaxToggle' ).click( toggleAjaxReload );
$( '#ajaxToggle' ).attr( 'checked', storage());
if ( storage() ) {
loadPageData();
}
}
/**
* Turn refresh on and off by toggling the checkbox
*/
function toggleAjaxReload() {
if ( $( '#ajaxToggle' ).prop( 'checked' ) === true ) {
storage( true );
loadPageData();
} else {
storage( false );
clearTimeout( ajaxTimer );
}
}
/**
* Does the actual refresh
*/
function loadPageData() {
var $temp = $( '<div>' );
$temp.load( location.href + " #mw-content-text", function () {
var $newContent = $temp.children( '#mw-content-text' );
if ( $newContent.length ) {
$( '#mw-content-text' ).replaceWith( $newContent );
}
ajaxTimer = setTimeout( loadPageData, ajRefresh );
} );
}
/**
* Load the script on specific pages
* Should we make it load only on view or just not on edit....
*/
$( function () {
if ( $.inArray( mw.config.get( 'wgPageName' ), ajPages ) !== -1 && $( '#ajaxToggle' ).length === 0 && mw.config.get( 'wgAction' ) !== 'edit' ) {
preloadAJAXRL();
}
} );
}( jQuery, mediaWiki, this ) );