User:Rob Kam/sandbox1/MediaWiki:Common-js

Jump to navigation Jump to search

/**

* Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
* loaded for all users on every wiki page. If possible create a gadget that is
* enabled by default instead of adding it here (since gadgets are fully
* optimized ResourceLoader modules with possibility to add dependencies etc.)
*
* Since Common.js isn't a gadget, there is no place to declare its
* dependencies, so we have to lazy load them with mw.loader.using on demand and
* then execute the rest in the callback. In most cases these dependencies will
* be loaded (or loading) already and the callback will not be delayed. In case a
* dependency hasn't arrived yet it'll make sure those are loaded before this.
*/

//syntax highlighter mw.loader.load('//www.mediawiki.org/w/index.php?title=MediaWiki:Gadget-DotsSyntaxHighlighter.js&action=raw&ctype=text/javascript');

/* Add custom buttons to the old style edit toolbar */ ( function ( mw, $ ) { 'use strict'; var addExtraButtons = function(){ mw.toolbar.addButton( { imageFile: '//upload.wikimedia.org/wikipedia/commons/c/c8/Button_redirect.png', speedTip: 'Redirect', tagOpen: '#REDIRECT [[', tagClose: ']]', sampleText: 'Article Name', imageId: 'button-redirect' } ); mw.toolbar.addButton( { imageFile: '//upload.wikimedia.org/wikipedia/en/3/34/Button_hide_comment.png', speedTip: 'Comment', tagOpen: , sampleText: 'Comment', imageId: 'button-comment' } ); mw.toolbar.addButton( { imageFile: '//upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png', speedTip: 'References', tagOpen: '<ref>', tagClose: '<\/ref>', sampleText: 'Insert reference here', imageId: 'button-reference' } ); mw.toolbar.addButton({ imageFile: 'https://upload.wikimedia.org/wikipedia/commons/6/6a/Button_sup_letter.png', speedTip: 'Superscript', tagOpen: '', tagClose: '', sampleText: 'Insert text here', imageId: 'button-superscript' } ); mw.toolbar.addButton({ imageFile: 'https://upload.wikimedia.org/wikipedia/commons/a/aa/Button_sub_letter.png', speedTip: 'Subscript', tagOpen: '', tagClose: '', sampleText: 'Insert text here', imageId: 'button-subscript' } ); mw.toolbar.addButton({ imageFile: 'https://upload.wikimedia.org/wikipedia/commons/5/5b/Math_icon.png', speedTip: 'Math', tagOpen: '', sampleText: 'Insert text here', imageId: 'button-math' } ); /* If you want more buttons, copy and adapt the examples above and paste the modified version before this comment */ }; if( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) { mw.loader.using( 'user.options', function () { // This can be the string "0" if the user disabled the preference (bugzilla:52542#c3) if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) { // Use something like m:User:Krinkle/Scripts/InsertWikiEditorButton#Example } else if ( mw.user.options.get( 'showtoolbar' ) == 1 ) { $.when( mw.loader.using( 'mediawiki.action.edit' ), $.ready ).then( addExtraButtons ); } } ); } }( mediaWiki, jQuery ) ); /***/

/* Below here all is copy pasted from https://en.wikipedia.org/wiki/MediaWiki:Common.js (4 April 2021) */

/**

* Collapsible tables; reimplemented with mw-collapsible
* Styling is also in place to avoid FOUC
*
* Allows tables to be collapsed, showing only the header. See Help:Collapsing.
* @version 3.0.0 (2018-05-20)
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-collapsibleTables.js
* @author User:R. Koot
* @author User:Krinkle
* @author User:TheDJ
* @deprecated Since MediaWiki 1.20: Use class="mw-collapsible" instead which
* is supported in MediaWiki core. Shimmable since MediaWiki 1.32
*
* @param {jQuery} $content
*/

function makeCollapsibleMwCollapsible( $content ) { var $tables = $content .find( 'table.collapsible:not(.mw-collapsible)' ) .addClass( 'mw-collapsible' );

$.each( $tables, function ( index, table ) { // mw.log.warn( 'This page is using the deprecated class collapsible. Please replace it with mw-collapsible.'); if ( $( table ).hasClass( 'collapsed' ) ) { $( table ).addClass( 'mw-collapsed' ); // mw.log.warn( 'This page is using the deprecated class collapsed. Please replace it with mw-collapsed.'); } } ); if ( $tables.length > 0 ) { mw.loader.using( 'jquery.makeCollapsible' ).then( function () { $tables.makeCollapsible(); } ); } } mw.hook( 'wikipage.content' ).add( makeCollapsibleMwCollapsible );

/**

* Add support to mw-collapsible for autocollapse, innercollapse and outercollapse
*
* Maintainers: TheDJ
*/

function mwCollapsibleSetup( $collapsibleContent ) { var $element, $toggle, autoCollapseThreshold = 2; $.each( $collapsibleContent, function ( index, element ) { $element = $( element ); if ( $element.hasClass( 'collapsible' ) ) { $element.find( 'tr:first > th:first' ).prepend( $element.find( 'tr:first > * > .mw-collapsible-toggle' ) ); } if ( $collapsibleContent.length >= autoCollapseThreshold && $element.hasClass( 'autocollapse' ) ) { $element.data( 'mw-collapsible' ).collapse(); } else if ( $element.hasClass( 'innercollapse' ) ) { if ( $element.parents( '.outercollapse' ).length > 0 ) { $element.data( 'mw-collapsible' ).collapse(); } } // because of colored backgrounds, style the link in the text color // to ensure accessible contrast $toggle = $element.find( '.mw-collapsible-toggle' ); if ( $toggle.length ) { // Make the toggle inherit text color if ( $toggle.parent()[ 0 ].style.color ) { $toggle.find( 'a' ).css( 'color', 'inherit' ); } } } ); }

mw.hook( 'wikipage.collapsibleContent' ).add( mwCollapsibleSetup );

/**

* Dynamic Navigation Bars (experimental)
*
* Description: See Wikipedia:NavFrame.
* Maintainers: UNMAINTAINED
*/

var collapseCaption = 'hide'; var expandCaption = 'show';

// Set up the words in your language var navigationBarHide = '[' + collapseCaption + ']'; var navigationBarShow = '[' + expandCaption + ']';

/**

* Shows and hides content and picture (if available) of navigation bars.
*
* @param {number} indexNavigationBar The index of navigation bar to be toggled
* @param {jQuery.Event} event Event object
* @return {boolean}
*/

function toggleNavigationBar( indexNavigationBar, event ) { var navToggle = document.getElementById( 'NavToggle' + indexNavigationBar ); var navFrame = document.getElementById( 'NavFrame' + indexNavigationBar ); var navChild;

if ( !navFrame || !navToggle ) { return false; }

// If shown now if ( navToggle.firstChild.data === navigationBarHide ) { for ( navChild = navFrame.firstChild; navChild !== null; navChild = navChild.nextSibling ) { if ( $( navChild ).hasClass( 'NavContent' ) ) { navChild.style.display = 'none'; } } navToggle.firstChild.data = navigationBarShow;

// If hidden now } else if ( navToggle.firstChild.data === navigationBarShow ) { for ( navChild = navFrame.firstChild; navChild !== null; navChild = navChild.nextSibling ) { if ( $( navChild ).hasClass( 'NavContent' ) ) { navChild.style.display = 'block'; } } navToggle.firstChild.data = navigationBarHide; }

event.preventDefault(); }

/**

* Adds show/hide-button to navigation bars.
*
* @param {jQuery} $content
*/

function createNavigationBarToggleButton( $content ) { var j, navChild, navToggle, navToggleText, isCollapsed, indexNavigationBar = 0; // Iterate over all < div >-elements var $divs = $content.find( 'div.NavFrame:not(.mw-collapsible)' ); $divs.each( function ( i, navFrame ) { indexNavigationBar++; navToggle = document.createElement( 'a' ); navToggle.className = 'NavToggle'; navToggle.setAttribute( 'id', 'NavToggle' + indexNavigationBar ); navToggle.setAttribute( 'href', '#' ); $( navToggle ).on( 'click', $.proxy( toggleNavigationBar, null, indexNavigationBar ) );

isCollapsed = $( navFrame ).hasClass( 'collapsed' ); /** * Check if any children are already hidden. This loop is here for backwards compatibility: * the old way of making NavFrames start out collapsed was to manually add style="display:none" * to all the NavPic/NavContent elements. Since this was bad for accessibility (no way to make * the content visible without JavaScript support), the new recommended way is to add the class * "collapsed" to the NavFrame itself, just like with collapsible tables. */ for ( navChild = navFrame.firstChild; navChild !== null && !isCollapsed; navChild = navChild.nextSibling ) { if ( $( navChild ).hasClass( 'NavPic' ) || $( navChild ).hasClass( 'NavContent' ) ) { if ( navChild.style.display === 'none' ) { isCollapsed = true; } } } if ( isCollapsed ) { for ( navChild = navFrame.firstChild; navChild !== null; navChild = navChild.nextSibling ) { if ( $( navChild ).hasClass( 'NavPic' ) || $( navChild ).hasClass( 'NavContent' ) ) { navChild.style.display = 'none'; } } } navToggleText = document.createTextNode( isCollapsed ? navigationBarShow : navigationBarHide ); navToggle.appendChild( navToggleText );

// Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked) for ( j = 0; j < navFrame.childNodes.length; j++ ) { if ( $( navFrame.childNodes[ j ] ).hasClass( 'NavHead' ) ) { navToggle.style.color = navFrame.childNodes[ j ].style.color; navFrame.childNodes[ j ].appendChild( navToggle ); } } navFrame.setAttribute( 'id', 'NavFrame' + indexNavigationBar ); } ); }

mw.hook( 'wikipage.content' ).add( createNavigationBarToggleButton );

/* Actions specific to the edit page */ if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' ) { /** * Fix edit summary prompt for undo * * Fixes the fact that the undo function combined with the "no edit summary prompter" * complains about missing editsummary, if leaving the edit summary unchanged. * Added by User:Deskana, code by User:Tra. * See also phab:T10912. */ $( function () { if ( document.location.search.indexOf( 'undo=' ) !== -1 && document.getElementsByName( 'wpAutoSummary' )[ 0 ] ) { document.getElementsByName( 'wpAutoSummary' )[ 0 ].value = '1'; } } ); }


// https://dev.miraheze.org/wiki/Script_for_enabling_missing_Visual_Editor_button /* A script to add an Edit button for Visual Editor if the extension is enabled but the button is not showing up.

  • /

// Text to be used on button here: label = 'Edit';

// Text for mouse hover: title = 'Edit this page';

// Only run script if not in editor if (!(/veaction=edit/).test(window.location.search)){

   // Unhide button if it's just hidden
   if(document.querySelector("#ca-ve-edit")){
       if (document.querySelector("#ca-ve-edit").style.display == 'none'){
           document.querySelector("#ca-ve-edit").style.display = 'block';
       }
   }
   
   // Only run if Edit button does not already exist and Edit source button does exist
   if((!document.querySelector("#ca-ve-edit") && document.querySelector('#ca-edit'))) {
   
       // Edit Source element
       editSource = document.querySelector("#ca-edit");
   
       // Copy Edit Source element
       newEdit = editSource.cloneNode(true);
   
       // Get current page title
       pageTitle = document.querySelector('meta[property="og:title"]').content.replace(/\s/g, '_');
   
       // Place correct link and text inside new element
       newEdit.innerHTML = '<a href="/w/index.php?title=' + pageTitle + '&veaction=edit" title="' + title + ' [alt-shift-v]" accesskey="v">' + label + '</a>';
   
       // Change to correct id for new element
       newEdit.id = 'ca-ve-edit';
   
       // Add new element before Edit Source
       editSource.before(newEdit);
       
       document.querySelector("#ca-ve-edit").style.display = 'inline-block';
   }

}

// Add target="_blank" to links with class "extiw" or "external text" $(document).ready(function() {

   $("a.extiw").attr("target", "_blank");

});