MediaWiki

Difference between revisions of "Common.js"

Line 53: Line 53:
 
/* *************************************************************** */
 
/* *************************************************************** */
 
/* RECORD WIZARD SUGAR ******************************************* */
 
/* RECORD WIZARD SUGAR ******************************************* */
/*Confirmation message when users try to leave the Record Wizard
+
// (works from the second step onwards)
(works from the second step onwards) */
 
 
if (mw.config.get('wgPageName') === 'Special:RecordWizard') {
 
if (mw.config.get('wgPageName') === 'Special:RecordWizard') {
    window.onbeforeunload = function() {
+
  // Asks before closing tab
    console.log('MediaWiki:Common.js')
+
  window.onbeforeunload = function() {
    return "Do you want to leave the page? All your unsaved changes will be lost."; };
+
    console.log('MediaWiki:Common.js')
 +
    return "Do you want to leave the page? All your unsaved changes will be lost.";
 +
  };
 +
 
 +
  // Click on $1 below https://phabricator.wikimedia.org/T307773 . /!\ JS cosmetic fixing PHP bug.
 +
  var clickOn$1 = function () {
 +
    $("#mwe-rws-info-audio").html($("#mwe-rws-info-audio").text().replace("$1", "<i></i>"));
 +
    $("#mwe-rws-info-video").html($("#mwe-rws-info-audio").text().replace("$1", "<i></i>"));
 +
    setTimeout(clickOn$1, 200);
 +
  }
 +
  clickOn$1();
 
}
 
}

Revision as of 10:00, 23 February 2023

// Page-specific scripts modules and conditional loading
// RecordWizard sugar

/* *************************************************************** */
/* PAGE-SPECIFIC SCRIPTS LOADINGS ******************************** */
// Documentation: https://m.mediawiki.org/wiki/ResourceLoader/Architecture#Resource:_Scripts
// Documentation: https://doc.wikimedia.org/mediawiki-core/master/js/#!/api/mw.loader
//🎷🥁🎸🐣📔🗻🌏
// LastAudiosBoxes
if (/^LinguaLibre:Main/.test(mw.config.get('wgPageName'))) {
  console.log('🎸 Last Audios');
  mw.loader.load('/index.php?title=MediaWiki:LastAudios.js&action=raw&ctype=text/javascript');
}
// SoundLibrary
if (/^LinguaLibre:Explore_the_sound_library(\/[a-z_-]+)?$/.test(mw.config.get('wgPageName'))) {
  console.log('🥁 Sound library');
  mw.loader.load('/index.php?title=MediaWiki:SoundLibrary.js&action=raw&ctype=text/javascript');
}
// Item pages additional sugar
if (/^(Q|Property:P)[0-9]+$/.test(mw.config.get('wgPageName'))) {
  console.log('🍭 ItemsSugar ');
  mw.loader.load('/index.php?title=MediaWiki:ItemsSugar.js&action=raw&ctype=text/javascript');
}
// Lexeme Queries Generator (OOUI)
if (/^Template:LexemeQueriesGenerator$/.test(mw.config.get('wgPageName')) || /^Help:SPARQL_/.test(mw.config.get('wgPageName'))) {
  console.log('📔 Lexeme Queries Generator');
  mw.loader.load('/index.php?title=MediaWiki:LexemeQueriesGenerator.js&action=raw&ctype=text/javascript');
}
// SPARQL to data (OOUI)
if (/SPARQL/.test(mw.config.get('wgPageName')) || /parql/.test(mw.config.get('wgPageName'))) {
  console.log('🚀 SPARQL to data');
  mw.loader.load('/index.php?title=MediaWiki:Sparql2data.js&action=raw&ctype=text/javascript');
}

/* *************************************************************** */
/* In development *************************************** */
// User:Yug: Language overview
if (/Languages/.test(mw.config.get('wgPageName'))) {
  console.log('🌏 Languages gallery');
  mw.loader.load('/index.php?title=MediaWiki:LanguagesGallery.js&action=raw&ctype=text/javascript');
}
// User:Yug: Search by words, see https://jsfiddle.net/hugolpz/ecpzy0fo/89/
if (/^LinguaLibre:Search_by(\/[a-z_-]+)?$/.test(mw.config.get('wgPageName'))) {
  console.log('🐣 Search by word');
  mw.loader.load('/index.php?title=MediaWiki:SearchBy.js&action=raw&ctype=text/javascript');
}
// Minorities languages statistics page

// Iframe gallery for Lingualibre:Apps
// Prototype https://jsfiddle.net/hugolpz/meygpo6t/
// Problem: iframe are not accepted into wikicode. Solution: hide key values in html tag, generate iframe via JS injection.

/* *************************************************************** */
/* RECORD WIZARD SUGAR ******************************************* */
// (works from the second step onwards)
if (mw.config.get('wgPageName') === 'Special:RecordWizard') {
  // Asks before closing tab
  window.onbeforeunload = function() {
    console.log('MediaWiki:Common.js')
    return "Do you want to leave the page? All your unsaved changes will be lost.";
  };
  
  // Click on $1 below https://phabricator.wikimedia.org/T307773 . /!\ JS cosmetic fixing PHP bug.
  var clickOn$1 = function () {
    $("#mwe-rws-info-audio").html($("#mwe-rws-info-audio").text().replace("$1", "<i></i>"));
    $("#mwe-rws-info-video").html($("#mwe-rws-info-audio").text().replace("$1", "<i></i>"));
    setTimeout(clickOn$1, 200);
  }
  clickOn$1();
}