MediaWiki:Gadget-RecentChangesRefresh.js: Difference between revisions
From SmashWiki, the Super Smash Bros. wiki
Jump to navigationJump to search
mNo edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
// Code courtesy of pcj of WoWWiki | // Code courtesy of pcj of WoWWiki | ||
// ================== | // ================== | ||
var rcRefresh = 30000; | |||
var ajaxRCOverride = false; | |||
var ajaxPages = new Array('Special:RecentChanges'); | |||
function setCookie(c_name, value, expiredays) { | function setCookie(c_name, value, expiredays) { | ||
var exdate = new Date(); | var exdate = new Date(); | ||
exdate.setDate(exdate.getDate() + expiredays); | exdate.setDate(exdate.getDate() + expiredays); | ||
document.cookie = c_name + | document.cookie = c_name + '=' + escape(value) + ((expiredays == null) ? '' : ';expires=' + exdate.toGMTString()); | ||
} | } | ||
function getCookie(c_name) { | function getCookie(c_name) { | ||
if (document.cookie.length > 0) { | if (document.cookie.length > 0) { | ||
c_start = document.cookie.indexOf(c_name + | c_start = document.cookie.indexOf(c_name + '='); | ||
if (c_start != -1) { | if (c_start != -1) { | ||
c_start = c_start + c_name.length + 1; | c_start = c_start + c_name.length + 1; | ||
c_end = document.cookie.indexOf( | c_end = document.cookie.indexOf(';', c_start); | ||
if (c_end == -1) c_end = document.cookie.length; | if (c_end == -1) c_end = document.cookie.length; | ||
return unescape(document.cookie.substring(c_start, c_end)); | return unescape(document.cookie.substring(c_start, c_end)); | ||
} | } | ||
} | } | ||
return | return ''; | ||
} | } | ||
function ajaxRC() { | function ajaxRC() { | ||
appTo = $( | appTo = $('.firstHeading'); | ||
appTo.append(' <span style="position:absolute; margin-left:10px;"><span style="font-size: xx-small; cursor:help;" title="Automatically refresh the current page every ' + Math.floor(rcRefresh / 1000) + ' seconds">AUTO-REFRESH:</span><input type="checkbox" id="autoRefreshToggle"><span style="position:relative; left:5px;" id="autoRefreshProgress"><img src="/images/loader.gif" border="0" alt="AJAX operation in progress" /></span></span>'); | appTo.append(' <span style="position:absolute; margin-left:10px;"><span style="font-size: xx-small; cursor:help;" title="Automatically refresh the current page every ' + Math.floor(rcRefresh / 1000) + ' seconds">AUTO-REFRESH:</span><input type="checkbox" id="autoRefreshToggle"><span style="position:relative; left:5px;" id="autoRefreshProgress"><img src="/images/loader.gif" border="0" alt="AJAX operation in progress" /></span></span>'); | ||
$( | $('#autoRefreshToggle').click(function () { | ||
setCookie( | setCookie('ajaxRC', $('#autoRefreshToggle').prop('checked') ? 'on' : 'off'); | ||
loadRCData(); | loadRCData(); | ||
}); | }); | ||
$( | $('#autoRefreshProgress').hide(); | ||
if (getCookie( | if (getCookie('ajaxRC') == 'on' || ajaxRCOverride) { | ||
$( | $('#autoRefreshToggle').prop('checked', true); | ||
setTimeout(loadRCData, rcRefresh); | setTimeout(loadRCData, rcRefresh); | ||
} | } | ||
Line 42: | Line 42: | ||
function loadRCData() { | function loadRCData() { | ||
if (!$( | if (!$('#autoRefreshToggle').prop('checked')) return; | ||
$('#autoRefreshProgress').show(); | $('#autoRefreshProgress').show(); | ||
$(article).load(location.href + | $(article).load(location.href + ' ' + article + ' > *', function (data) { | ||
$(article + | $(article + ' .mw-collapsible').makeCollapsible(); | ||
$('#autoRefreshProgress').hide(); | $('#autoRefreshProgress').hide(); | ||
if ($( | if ($('#autoRefreshToggle').prop('checked')) setTimeout(loadRCData, rcRefresh); | ||
}); | }); | ||
} | } | ||
Line 53: | Line 53: | ||
$(function () { | $(function () { | ||
if (!document.getElementsByClassName('mw-rcfilters-enabled')[0]) { | if (!document.getElementsByClassName('mw-rcfilters-enabled')[0]) { | ||
article = | article = '#bodyContent'; | ||
for (x in ajaxPages) { | for (x in ajaxPages) { | ||
if (mw.config.get('wgPageName') == ajaxPages[x] && $( | if (mw.config.get('wgPageName') == ajaxPages[x] && $('#autoRefreshToggle').length == 0) ajaxRC(); | ||
} | } | ||
} | } | ||
}); | }); |
Revision as of 08:07, February 7, 2019
// ==================
// Auto-refresh recent changes
// Code courtesy of pcj of WoWWiki
// ==================
var rcRefresh = 30000;
var ajaxRCOverride = false;
var ajaxPages = new Array('Special:RecentChanges');
function setCookie(c_name, value, expiredays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + expiredays);
document.cookie = c_name + '=' + escape(value) + ((expiredays == null) ? '' : ';expires=' + exdate.toGMTString());
}
function getCookie(c_name) {
if (document.cookie.length > 0) {
c_start = document.cookie.indexOf(c_name + '=');
if (c_start != -1) {
c_start = c_start + c_name.length + 1;
c_end = document.cookie.indexOf(';', c_start);
if (c_end == -1) c_end = document.cookie.length;
return unescape(document.cookie.substring(c_start, c_end));
}
}
return '';
}
function ajaxRC() {
appTo = $('.firstHeading');
appTo.append(' <span style="position:absolute; margin-left:10px;"><span style="font-size: xx-small; cursor:help;" title="Automatically refresh the current page every ' + Math.floor(rcRefresh / 1000) + ' seconds">AUTO-REFRESH:</span><input type="checkbox" id="autoRefreshToggle"><span style="position:relative; left:5px;" id="autoRefreshProgress"><img src="/images/loader.gif" border="0" alt="AJAX operation in progress" /></span></span>');
$('#autoRefreshToggle').click(function () {
setCookie('ajaxRC', $('#autoRefreshToggle').prop('checked') ? 'on' : 'off');
loadRCData();
});
$('#autoRefreshProgress').hide();
if (getCookie('ajaxRC') == 'on' || ajaxRCOverride) {
$('#autoRefreshToggle').prop('checked', true);
setTimeout(loadRCData, rcRefresh);
}
}
function loadRCData() {
if (!$('#autoRefreshToggle').prop('checked')) return;
$('#autoRefreshProgress').show();
$(article).load(location.href + ' ' + article + ' > *', function (data) {
$(article + ' .mw-collapsible').makeCollapsible();
$('#autoRefreshProgress').hide();
if ($('#autoRefreshToggle').prop('checked')) setTimeout(loadRCData, rcRefresh);
});
}
$(function () {
if (!document.getElementsByClassName('mw-rcfilters-enabled')[0]) {
article = '#bodyContent';
for (x in ajaxPages) {
if (mw.config.get('wgPageName') == ajaxPages[x] && $('#autoRefreshToggle').length == 0) ajaxRC();
}
}
});