Tip of the Day
Found something broken or have a suggestion? Report it to us on Discord! Your reports help improve the game!

MediaWiki:Common.js: Difference between revisions

From Walkscape Walkthrough
mNo edit summary
Tag: Reverted
mNo edit summary
Tag: Reverted
Line 224: Line 224:


/* Multi-select highlight for tables with class "mw-lighttable" */
/* Multi-select highlight for tables with class "mw-lighttable" */
/* Persist multi-select highlights for tables with class "mw-lighttable" */
mw.loader.using('jquery').then(function () {
mw.loader.using('jquery').then(function () {
  // Run on initial load and after content updates (e.g., AJAX, VE)
  function bindLighttable($root) {
    var $tables = $root.find('table.mw-lighttable');
    if (!$tables.length) return;


    // Make rows focusable for keyboard support
  var TABLE_KEY_ATTR = 'data-storage-key';                // per-table storage key
    $tables.find('tbody tr').attr('tabindex', '0');
  var ROW_ID_ATTRS  = ['data-achievement-id','data-row-id']; // row id attributes


    // Toggle highlight-on class on click (multi-select)
  // Build a default key if a table doesn't specify one
     $tables.off('click.mwLighttable').on('click.mwLighttable', 'tbody tr', function (e) {
  function defaultKeyForTable($table) {
      // Let interactive elements behave normally
    var page = mw.config.get('wgPageName') || 'UnknownPage';
      if ($(e.target).closest('a, button, input, label, select, textarea').length) return;
     var idx  = $('table.mw-lighttable').index($table);
    return 'rs:lightTable:' + page + ':' + idx;
  }
  function getStorageKeyForTable($table) {
    return $table.attr(TABLE_KEY_ATTR) || defaultKeyForTable($table);
  }
 
  function readMap(key) {
    try { var raw = localStorage.getItem(key); return raw ? JSON.parse(raw) : {}; }
    catch (e) { return {}; }
  }
  function writeMap(key, map) {
    try { localStorage.setItem(key, JSON.stringify(map)); } catch (e) {}
  }
  function getRowId($tr) {
    for (var i = 0; i < ROW_ID_ATTRS.length; i++) {
      var v = $tr.attr(ROW_ID_ATTRS[i]);
      if (v) return v;
    }
    return '';
  }


       var $row = $(this);
  function applyFromStorage($root) {
       var on = $row.toggleClass('highlight-on').hasClass('highlight-on');
    $root.find('table.mw-lighttable').each(function () {
      $row.attr('aria-selected', on ? 'true' : 'false');
       var $table = $(this);
       var key = getStorageKeyForTable($table);
      var map = readMap(key);
 
      $table.find('tbody tr').each(function () {
        var $tr = $(this);
        var id  = getRowId($tr);
        if (!id) return;
 
        var on = map[id] === 1 || map[id] === '1';
        $tr.toggleClass('highlight-on', on)
          .attr('aria-selected', on ? 'true' : 'false');
 
        if (!$tr.attr('tabindex')) $tr.attr('tabindex', '0');
      });
     });
     });
  }
  function bindHandlers($root) {
    $root.find('table.mw-lighttable').each(function () {
      var $table = $(this);
      var key = getStorageKeyForTable($table);
      // Clear old handlers for this table
      $table.off('.mwLighttable');
      // Do NOT toggle when clicking links; also stop bubbling on links
      $table.on('click.mwLighttable', 'a', function (e) {
        e.stopPropagation();
      });
      // Toggle on non-link clicks
      $table.on('click.mwLighttable', 'tbody tr', function (e) {
        if ($(e.target).closest('a, button, input, label, select, textarea').length) return;
        var $tr = $(this);
        var id  = getRowId($tr);
        if (!id) return; // row missing an ID—skip
        var map = readMap(key);
        var on  = !$tr.hasClass('highlight-on');


    // Keyboard: Space/Enter toggles the row
        $tr.toggleClass('highlight-on', on)
    $tables.off('keydown.mwLighttable').on('keydown.mwLighttable', 'tbody tr', function (e) {
          .attr('aria-selected', on ? 'true' : 'false');
      if (e.key === ' ' || e.key === 'Enter') {
 
        e.preventDefault();
        map[id] = on ? 1 : 0;          // persist
        $(this).trigger('click');
        writeMap(key, map);
       }
      });
 
      // Keyboard toggle (Space/Enter)
      $table.on('keydown.mwLighttable', 'tbody tr', function (e) {
        if (e.key === ' ' || e.key === 'Enter') {
          e.preventDefault();
          $(this).trigger('click');
        }
       });
     });
     });
   }
   }


   // Initial bind
   // Initial bind + restore
   $(function () { bindLighttable($(document)); });
   $(function () {
    applyFromStorage($(document));
    bindHandlers($(document));
  });


   // Re-bind when content is replaced/added
   // Re-apply after dynamic updates
   mw.hook('wikipage.content').add(function ($content) {
   mw.hook('wikipage.content').add(function ($c) {
     bindLighttable($content);
     applyFromStorage($c);
    bindHandlers($c);
   });
   });
});
});

Revision as of 03:34, 13 August 2025

/* Any JavaScript here will be loaded for all users on every page load. */

/* VARIABLES ***********************************************************************************************************************/

var currentPageUrl = window.location.href;
var currentPageEditUrl = mw.util.getUrl( null, { action: 'edit' } );
var currentPageName = mw.util.getUrl( null, null ).replace('/wiki/', '');
var currentPageNamespaceID = mw.config.get('wgNamespaceNumber');

//variables needed after page load
var buttons, contents, allLinks;

//variables needed for the infobutton
var infobutton, infopanel;


/* *********************************************************************************************************************************/

// Matomo
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */

/*
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
  var u="https://matomo.tools.walkscape.app/";
  _paq.push(['setTrackerUrl', u+'matomo.php']);
  _paq.push(['setSiteId', '5']);
  var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
  g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
*/







/* sticky edit button */

// display the button only if #mw-content is present, if we are not in the edit mode, and if we're not in the Special: or Community: namespace
/*
if (document.body.contains(document.getElementById("mw-content")) && !currentPageUrl.includes("action=") && currentPageNamespaceID != -1 && currentPageNamespaceID != 3004)  {
document.getElementById("mw-content").insertAdjacentHTML('afterbegin', '<a href="https://wiki-temp.walkscape.app/' + currentPageEditUrl + '"><div id="custom-editbutton"><svg width="40" height="40" viewBox="-12 -10 50 50"><path d="M 20 2 L 26 8 L 8 26 L 2 26 L 2 20 Z M 16 6 L 22 12"></path></svg></div></a>');
}
*/











///////////////////////////////////////// ADDING THE INFO BUTTON

var infotitle = currentPageName + '/doc';

// add the info button ONLY when we use the edit mode now
if (document.body.contains(document.getElementById("mw-content")) && (currentPageUrl.includes("action=edit") || currentPageUrl.includes("action=submit"))) 
{
mw.loader.using('mediawiki.api', function() {
	var api = new mw.Api();
	
	api.get( {
     action: "query",
     titles: [infotitle],
 } ).then( function( ret ) {
     $.each( ret.query.pages, function() {
         if ( this.missing !== "" ) {
             pageExists();
         }
     } );
 });
 
 
function pageExists() {
	api.get( {
    action: 'parse',
    page: infotitle,
    contentmodel: 'wikitext'
} ).done( function ( data ) {
	InsertInfoPanel( data.parse.text['*'] );
});
}
});
}




function InsertInfoPanel( text )
{
	
	//check which namespace we're in and adapt the text to it
	var infopanelTitle = 'Page';
	if (currentPageNamespaceID == 10) { //Template
		infopanelTitle = 'Template';
	}
	else if (currentPageNamespaceID == 828) { //Module
		infopanelTitle = 'Module';
	}
	
	// insert the panel and button
	document.getElementById("mw-content").insertAdjacentHTML('afterbegin', '<div id="custom-infobutton"></div><div id="custom-infopanel" style="display: none"><div id="custom-infopanel-title">' + infopanelTitle + ' Info</div><div id="custom-infopanel-content">' + text + '</div></div>');
	
	//set up containers
	infopanel = document.getElementById("custom-infopanel");
	infobutton = document.getElementById("custom-infobutton");
	
	//add an event listener to the button
	infobutton.addEventListener("click", infobuttonClicked);
}



function infobuttonClicked()
{
	if (infopanel.style.display == 'none')
	{
		infopanel.style.display = 'block';
	}
	else
	{
		infopanel.style.display = 'none';
	}
}











/* rename the "DISCUSSION" talk page button to "DOCUMENTATION" */
//if there is such a button and we're in the Template: namespace
if (document.body.contains(document.getElementById("ca-talk")) && currentPageNamespaceID == 10) {
document.getElementById("ca-talk").innerHTML = '<svg class="cosmos-button-icon" width="28" height="28" viewBox="-2 -2 20 20"><path d="M 4 2 Q 4 0 6 0 L 14 0 Q 16 0 16 2 L 8 2 Q 8 0 6 0 Q 4 0 4 2 L 4 12 Q 4 14 2 14 Q 0 14 0 12 L 2 12 L 0 12 Q 0 14 2 14 L 12 14 Q 14 14 14 12 L 14 4"></path></svg><span class="cosmos-button-text">Documentation</span>';
}

/* call specific functions when the page loads */

// old browsers or already loaded
if (document.readyState!="loading") AfterPageLoad();
// modern browsers
else if (document.addEventListener) document.addEventListener("DOMContentLoaded", AfterPageLoad);



/* FUNCTIONS **********************************************************************************************************************/




function AfterPageLoad()
{
StartTabs();
}


/* Tabs */

function StartTabs()
{
buttons = document.getElementsByClassName("tab-button");
contents = document.getElementsByClassName("tab-content");

if (buttons.length > 0){
clickfunction(buttons[0]);

for (var i = 0; i < buttons.length; i++)
  {
    //console.log("Added Event Listener!");
    buttons[i].addEventListener("click", clickfunction);
  }
}
}



function clickfunction(thing) {
  if (thing.id == null)
    {
      thing = this;
    }
  
  //buttons
for (var i = 0; i < buttons.length; i++)
  {
    if (buttons[i].id == thing.id)
      {
        buttons[i].classList.remove("tab-disabled");
        buttons[i].classList.add("tab-active");
      }
    else
      {
        buttons[i].classList.remove("tab-active");
        buttons[i].classList.add("tab-disabled");
      }
  }
  //contents
  for (var i = 0; i < contents.length; i++)
  {
    if (contents[i].id == thing.id)
      {
        contents[i].style.display = 'block'
      }
    else
      {
        contents[i].style.display = 'none'
      }
  }
}


/* Multi-select highlight for tables with class "mw-lighttable" */
/* Persist multi-select highlights for tables with class "mw-lighttable" */
mw.loader.using('jquery').then(function () {

  var TABLE_KEY_ATTR = 'data-storage-key';                // per-table storage key
  var ROW_ID_ATTRS   = ['data-achievement-id','data-row-id']; // row id attributes

  // Build a default key if a table doesn't specify one
  function defaultKeyForTable($table) {
    var page = mw.config.get('wgPageName') || 'UnknownPage';
    var idx  = $('table.mw-lighttable').index($table);
    return 'rs:lightTable:' + page + ':' + idx;
  }
  function getStorageKeyForTable($table) {
    return $table.attr(TABLE_KEY_ATTR) || defaultKeyForTable($table);
  }

  function readMap(key) {
    try { var raw = localStorage.getItem(key); return raw ? JSON.parse(raw) : {}; }
    catch (e) { return {}; }
  }
  function writeMap(key, map) {
    try { localStorage.setItem(key, JSON.stringify(map)); } catch (e) {}
  }
  function getRowId($tr) {
    for (var i = 0; i < ROW_ID_ATTRS.length; i++) {
      var v = $tr.attr(ROW_ID_ATTRS[i]);
      if (v) return v;
    }
    return '';
  }

  function applyFromStorage($root) {
    $root.find('table.mw-lighttable').each(function () {
      var $table = $(this);
      var key = getStorageKeyForTable($table);
      var map = readMap(key);

      $table.find('tbody tr').each(function () {
        var $tr = $(this);
        var id  = getRowId($tr);
        if (!id) return;

        var on = map[id] === 1 || map[id] === '1';
        $tr.toggleClass('highlight-on', on)
           .attr('aria-selected', on ? 'true' : 'false');

        if (!$tr.attr('tabindex')) $tr.attr('tabindex', '0');
      });
    });
  }

  function bindHandlers($root) {
    $root.find('table.mw-lighttable').each(function () {
      var $table = $(this);
      var key = getStorageKeyForTable($table);

      // Clear old handlers for this table
      $table.off('.mwLighttable');

      // Do NOT toggle when clicking links; also stop bubbling on links
      $table.on('click.mwLighttable', 'a', function (e) {
        e.stopPropagation();
      });

      // Toggle on non-link clicks
      $table.on('click.mwLighttable', 'tbody tr', function (e) {
        if ($(e.target).closest('a, button, input, label, select, textarea').length) return;

        var $tr = $(this);
        var id  = getRowId($tr);
        if (!id) return; // row missing an ID—skip

        var map = readMap(key);
        var on  = !$tr.hasClass('highlight-on');

        $tr.toggleClass('highlight-on', on)
           .attr('aria-selected', on ? 'true' : 'false');

        map[id] = on ? 1 : 0;           // persist
        writeMap(key, map);
      });

      // Keyboard toggle (Space/Enter)
      $table.on('keydown.mwLighttable', 'tbody tr', function (e) {
        if (e.key === ' ' || e.key === 'Enter') {
          e.preventDefault();
          $(this).trigger('click');
        }
      });
    });
  }

  // Initial bind + restore
  $(function () {
    applyFromStorage($(document));
    bindHandlers($(document));
  });

  // Re-apply after dynamic updates
  mw.hook('wikipage.content').add(function ($c) {
    applyFromStorage($c);
    bindHandlers($c);
  });

});