MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
try a better fix for bare https://donate.wikimedia.org/w/index.php?title=Special:LandingPage |
No edit summary |
||
(20 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
$(function() { |
$(function() { |
||
mw.loader.using( ['mediawiki.util |
mw.loader.using( ['mediawiki.util'] ).done( function() { |
||
// If Jimmy tweets a bare link to https://donate.wikimedia.org/w/index.php?title=Special:LandingPage |
// If Jimmy tweets a bare link to https://donate.wikimedia.org/w/index.php?title=Special:LandingPage |
||
// we are gonna have a bad time as geolocation doesn't happen. Do a redirect to send them round again |
|||
try { |
|||
var url = new URL( location.href ); |
|||
if ( |
|||
if ( uri.query.title === 'Special:LandingPage' && uri.query.country === undefined && uri.query.retried === undefined ) { |
|||
url.searchParams.get( 'title' ) === 'Special:LandingPage' && |
|||
console.log( 'redirecting to pick up country parameter' ); |
|||
url.searchParams.get( 'country' ) === null && |
|||
uri.path = ''; |
|||
url.searchParams.get( 'retried' ) === null |
|||
uri.query.retried = 1; // only do this once |
|||
) { |
|||
delete uri.query.title; |
|||
console.log( 'redirecting to pick up country parameter' ); |
|||
window.location.href = uri.toString(); |
|||
url.pathname = '/'; |
|||
} |
|||
url.searchParams.set( 'retried', 1 ); // only do this once |
|||
} catch (error) { |
|||
url.searchParams.delete( 'title' ); |
|||
console.warn('Error parsing URL. Possibly due to unreplaced % signs?'); |
|||
window.location.href = url.toString(); |
|||
} |
|||
} |
|||
} catch (error) { |
|||
console.warn('Error parsing URL. Possibly due to unreplaced % signs?'); |
|||
} |
|||
// Disable logo link |
// Disable logo link |
||
$('#p-logo a').attr( { href: '#', title: '' } ); |
$('#p-logo a').attr( { href: '#', title: '' } ); |
||
// Code for donation forms - https://donate.wikimedia.org/wiki/MediaWiki:DonationForm.js |
// Code for donation forms - https://donate.wikimedia.org/wiki/MediaWiki:DonationForm.js |
||
if ( document.forms['donateForm'] ) { |
if ( document.forms['donateForm'] ) { |
||
Line 33: | Line 37: | ||
mw.loader.load( '/w/index.php?title=MediaWiki:DonationForm.js&action=raw&ctype=text/javascript' ); |
mw.loader.load( '/w/index.php?title=MediaWiki:DonationForm.js&action=raw&ctype=text/javascript' ); |
||
} |
} |
||
// Load monthly convert JS |
// Load monthly convert JS |
||
// TODO: allow loading different JS variants, either here or defined in the Template |
// TODO: allow loading different JS variants, either here or defined in the Template |
||
mw.loader.load( '/w/index.php?title=MediaWiki:MonthlyConvert.js&action=raw&ctype=text/javascript' ); |
|||
if ( mw.util.getParamValue('monthlyconvert') ) { |
|||
} |
|||
mw.loader.load( '/w/index.php?title=MediaWiki:MonthlyConvert.js&action=raw&ctype=text/javascript' ); |
|||
// Allow manual country selection and reload |
|||
// Run this only when needed |
|||
var enableCountrySelect = function() { |
|||
var language = mw.config.get('wgPageContentLanguage'), |
|||
countrySelect = document.getElementById('country-select'); |
|||
// Translations |
|||
if ( language !== 'en' && language !== 'en-gb' ) { |
|||
const translationsUrl = 'https://donate.wikimedia.org/wiki/Module:Country_links/data.json?action=raw'; |
|||
$.getJSON( translationsUrl, function( translations ) { |
|||
if ( translations[language] ) { |
|||
var list = Array.from( countrySelect.options ); |
|||
list.forEach( option => { |
|||
option.innerText = translations[language][option.value] || option.innerText; |
|||
}); |
|||
// Sort for new language |
|||
list.sort( function(a, b) { |
|||
return a.innerText.localeCompare( b.innerText ); |
|||
}); |
|||
for ( var i = 0; i < list.length; i++ ) { |
|||
list[i].parentNode.appendChild( list[i] ); |
|||
} |
|||
} |
|||
}); |
|||
} |
} |
||
document.getElementById('country-select-go').addEventListener( 'click', function(e) { |
|||
if ( countrySelect.value ) { |
|||
// Chapter countries, use the built-in donatewiki redirects |
|||
if ( countrySelect.value === 'DE' ) { |
|||
window.location = 'https://donate.wikimedia.org/?country=DE'; |
|||
} else if ( countrySelect.value === 'CH' ) { |
|||
window.location = 'https://donate.wikimedia.org/?country=CH'; |
|||
} else { |
|||
var url = new URL( location.href ); |
|||
url.searchParams.set( 'country', countrySelect.value ); |
|||
window.location = url.toString(); |
|||
} |
|||
} |
|||
}); |
|||
}; |
|||
if ( document.getElementById('country-change') ) { |
|||
document.getElementById('country-change').addEventListener( 'click', function(e) { |
|||
document.getElementById('country-change-select').style.display = 'block'; |
|||
enableCountrySelect(); |
|||
}); |
|||
} |
} |
||
if ( document.getElementById('geolocate-error') ) { |
|||
enableCountrySelect(); |
|||
} |
|||
// Fundraise Up privacy footer |
|||
if ( mw.util.getParamValue('fundraiseupScript') ) { |
|||
document.getElementById('donate-privacy-third-party').style.display = 'block'; |
|||
} |
|||
// Code for Thank You pages - https://donate.wikimedia.org/wiki/MediaWiki:ThankYouPage.js |
// Code for Thank You pages - https://donate.wikimedia.org/wiki/MediaWiki:ThankYouPage.js |
||
if ( mw.config.get( 'wgTitle' ).indexOf('Thank You') !== -1 ) { |
if ( mw.config.get( 'wgTitle' ).indexOf('Thank You') !== -1 ) { |
||
mw.loader.load( '/w/index.php?title=MediaWiki:ThankYouPage.js&action=raw&ctype=text/javascript' ); |
mw.loader.load( '/w/index.php?title=MediaWiki:ThankYouPage.js&action=raw&ctype=text/javascript' ); |
||
} |
} |
||
// Code for support pages - https://donate.wikimedia.org/wiki/MediaWiki:SupportPage.js |
// Code for support pages - https://donate.wikimedia.org/wiki/MediaWiki:SupportPage.js |
||
// TODO: have a better way to trigger this |
// TODO: have a better way to trigger this |
||
var supportPages = [ 'Ways to Give', 'Problems donating', 'Cancel or change recurring giving', |
var supportPages = [ 'Ways to Give', 'Problems donating', 'Cancel or change recurring giving', |
||
'Matching Gifts', 'Support Page', 'FAQ', 'Tax deductibility', |
'Matching Gifts', 'Support Page', 'FAQ', 'Tax deductibility', |
||
'US State Solicitation Disclosures', 'Draft:FAQ' ]; |
'US State Solicitation Disclosures', 'Draft:FAQ', 'Workplace giving' ]; |
||
if ( supportPages.indexOf( mw.config.get( 'wgTitle' ).split('/')[0] ) !== -1 ) { |
if ( supportPages.indexOf( mw.config.get( 'wgTitle' ).split('/')[0] ) !== -1 || document.querySelector( '.language-switcher' ) ) { |
||
mw.loader.load( '/w/index.php?title=MediaWiki:SupportPage.js&action=raw&ctype=text/javascript' ); |
mw.loader.load( '/w/index.php?title=MediaWiki:SupportPage.js&action=raw&ctype=text/javascript' ); |
||
} |
} |
||
// Load some tools for editors - https://donate.wikimedia.org/wiki/MediaWiki:EditTemplates.js |
// Load some tools for editors - https://donate.wikimedia.org/wiki/MediaWiki:EditTemplates.js |
||
if ( mw.config.get( 'wgUserName' ) !== null ) { |
if ( mw.config.get( 'wgUserName' ) !== null ) { |
||
mw.loader.load( '/w/index.php?title=MediaWiki:EditTemplates.js&action=raw&ctype=text/javascript' ); |
mw.loader.load( '/w/index.php?title=MediaWiki:EditTemplates.js&action=raw&ctype=text/javascript' ); |
||
} |
} |
||
/** |
/** |
||
* @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL |
* @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL |
||
Line 66: | Line 126: | ||
var extraCSS = mw.util.getParamValue( 'withCSS' ), |
var extraCSS = mw.util.getParamValue( 'withCSS' ), |
||
extraJS = mw.util.getParamValue( 'withJS' ); |
extraJS = mw.util.getParamValue( 'withJS' ); |
||
if ( extraCSS ) { |
if ( extraCSS ) { |
||
if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) { |
if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) { |
||
Line 74: | Line 134: | ||
} |
} |
||
} |
} |
||
if ( extraJS ) { |
if ( extraJS ) { |
||
if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) { |
if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) { |
||
Line 82: | Line 142: | ||
} |
} |
||
} |
} |
||
/* HACK to run certain inline scripts when document ready (e.g. so jquery is avaliable) |
/* HACK to run certain inline scripts when document ready (e.g. so jquery is avaliable) |
||
TODO: Make suitable for multiple scripts. Or figure out a better way to do this. |
TODO: Make suitable for multiple scripts. Or figure out a better way to do this. |
||
Line 89: | Line 149: | ||
inlineScriptWhenReady(); |
inlineScriptWhenReady(); |
||
} |
} |
||
} ); |
} ); |
||
}); |
}); |
Latest revision as of 17:19, 2 December 2024
/**
* MediaWiki:Common.js - Any JavaScript here will be loaded for all users on every page load.
**/
$(function() {
mw.loader.using( ['mediawiki.util'] ).done( function() {
// If Jimmy tweets a bare link to https://donate.wikimedia.org/w/index.php?title=Special:LandingPage
// we are gonna have a bad time as geolocation doesn't happen. Do a redirect to send them round again
try {
var url = new URL( location.href );
if (
url.searchParams.get( 'title' ) === 'Special:LandingPage' &&
url.searchParams.get( 'country' ) === null &&
url.searchParams.get( 'retried' ) === null
) {
console.log( 'redirecting to pick up country parameter' );
url.pathname = '/';
url.searchParams.set( 'retried', 1 ); // only do this once
url.searchParams.delete( 'title' );
window.location.href = url.toString();
}
} catch (error) {
console.warn('Error parsing URL. Possibly due to unreplaced % signs?');
}
// Disable logo link
$('#p-logo a').attr( { href: '#', title: '' } );
// Code for donation forms - https://donate.wikimedia.org/wiki/MediaWiki:DonationForm.js
if ( document.forms['donateForm'] ) {
var formJS = mw.util.getParamValue( 'formJS' );
if ( formJS && formJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
mw.loader.load( '/w/index.php?title=' + formJS + '&action=raw&ctype=text/javascript' );
} else {
mw.loader.load( '/w/index.php?title=MediaWiki:DonationForm.js&action=raw&ctype=text/javascript' );
}
// Load monthly convert JS
// TODO: allow loading different JS variants, either here or defined in the Template
mw.loader.load( '/w/index.php?title=MediaWiki:MonthlyConvert.js&action=raw&ctype=text/javascript' );
}
// Allow manual country selection and reload
// Run this only when needed
var enableCountrySelect = function() {
var language = mw.config.get('wgPageContentLanguage'),
countrySelect = document.getElementById('country-select');
// Translations
if ( language !== 'en' && language !== 'en-gb' ) {
const translationsUrl = 'https://donate.wikimedia.org/wiki/Module:Country_links/data.json?action=raw';
$.getJSON( translationsUrl, function( translations ) {
if ( translations[language] ) {
var list = Array.from( countrySelect.options );
list.forEach( option => {
option.innerText = translations[language][option.value] || option.innerText;
});
// Sort for new language
list.sort( function(a, b) {
return a.innerText.localeCompare( b.innerText );
});
for ( var i = 0; i < list.length; i++ ) {
list[i].parentNode.appendChild( list[i] );
}
}
});
}
document.getElementById('country-select-go').addEventListener( 'click', function(e) {
if ( countrySelect.value ) {
// Chapter countries, use the built-in donatewiki redirects
if ( countrySelect.value === 'DE' ) {
window.location = 'https://donate.wikimedia.org/?country=DE';
} else if ( countrySelect.value === 'CH' ) {
window.location = 'https://donate.wikimedia.org/?country=CH';
} else {
var url = new URL( location.href );
url.searchParams.set( 'country', countrySelect.value );
window.location = url.toString();
}
}
});
};
if ( document.getElementById('country-change') ) {
document.getElementById('country-change').addEventListener( 'click', function(e) {
document.getElementById('country-change-select').style.display = 'block';
enableCountrySelect();
});
}
if ( document.getElementById('geolocate-error') ) {
enableCountrySelect();
}
// Fundraise Up privacy footer
if ( mw.util.getParamValue('fundraiseupScript') ) {
document.getElementById('donate-privacy-third-party').style.display = 'block';
}
// Code for Thank You pages - https://donate.wikimedia.org/wiki/MediaWiki:ThankYouPage.js
if ( mw.config.get( 'wgTitle' ).indexOf('Thank You') !== -1 ) {
mw.loader.load( '/w/index.php?title=MediaWiki:ThankYouPage.js&action=raw&ctype=text/javascript' );
}
// Code for support pages - https://donate.wikimedia.org/wiki/MediaWiki:SupportPage.js
// TODO: have a better way to trigger this
var supportPages = [ 'Ways to Give', 'Problems donating', 'Cancel or change recurring giving',
'Matching Gifts', 'Support Page', 'FAQ', 'Tax deductibility',
'US State Solicitation Disclosures', 'Draft:FAQ', 'Workplace giving' ];
if ( supportPages.indexOf( mw.config.get( 'wgTitle' ).split('/')[0] ) !== -1 || document.querySelector( '.language-switcher' ) ) {
mw.loader.load( '/w/index.php?title=MediaWiki:SupportPage.js&action=raw&ctype=text/javascript' );
}
// Load some tools for editors - https://donate.wikimedia.org/wiki/MediaWiki:EditTemplates.js
if ( mw.config.get( 'wgUserName' ) !== null ) {
mw.loader.load( '/w/index.php?title=MediaWiki:EditTemplates.js&action=raw&ctype=text/javascript' );
}
/**
* @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
* @rev 6
*/
var extraCSS = mw.util.getParamValue( 'withCSS' ),
extraJS = mw.util.getParamValue( 'withJS' );
if ( extraCSS ) {
if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) {
mw.loader.load( '/w/index.php?title=' + extraCSS + '&action=raw&ctype=text/css', 'text/css' );
} else {
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
}
}
if ( extraJS ) {
if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
mw.loader.load( '/w/index.php?title=' + extraJS + '&action=raw&ctype=text/javascript' );
} else {
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
}
}
/* HACK to run certain inline scripts when document ready (e.g. so jquery is avaliable)
TODO: Make suitable for multiple scripts. Or figure out a better way to do this.
*/
if ( typeof inlineScriptWhenReady !== 'undefined') {
inlineScriptWhenReady();
}
} );
});