v50 Steam/Premium information for editors
  • v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
  • Use this page to report any issues related to the migration.
This notice may be cached—the current version can be found here.

Difference between revisions of "MediaWiki:Common.js"

From Dwarf Fortress Wiki
Jump to navigation Jump to search
(restore some JS: importScript, collapseTable)
(rm addcookie call, clean up some)
Line 28: Line 28:
 
               + '/index.php?title='
 
               + '/index.php?title='
 
               + encodeURIComponent( page.replace( / /g, '_' ) )
 
               + encodeURIComponent( page.replace( / /g, '_' ) )
               + '&action=raw&ctype=text/css";'
+
               + '&action=raw&ctype=text/css";';
 
     var styleElem = document.createElement( 'style' );
 
     var styleElem = document.createElement( 'style' );
 
     styleElem.setAttribute( 'type' , 'text/css' );
 
     styleElem.setAttribute( 'type' , 'text/css' );
Line 86: Line 86:
 
  {
 
  {
 
     var tableIndex = 0;
 
     var tableIndex = 0;
     var NavigationBoxes = new Object();
+
     var NavigationBoxes = {};
 
     var Tables = document.getElementsByTagName( "table" );
 
     var Tables = document.getElementsByTagName( "table" );
 
   
 
   
Line 113: Line 113:
 
             ButtonLink.style.color = Header.style.color;
 
             ButtonLink.style.color = Header.style.color;
 
             ButtonLink.setAttribute( "id", "collapseButton" + tableIndex );
 
             ButtonLink.setAttribute( "id", "collapseButton" + tableIndex );
             ButtonLink.setAttribute( "href", "javascript:collapseTable(" + tableIndex + "); addcookie();" );
+
             ButtonLink.setAttribute( "href", "javascript:collapseTable(" + tableIndex + ");" );
 
             ButtonLink.appendChild( ButtonText );
 
             ButtonLink.appendChild( ButtonText );
 
   
 
   
Line 131: Line 131:
 
     }
 
     }
 
     // Add text selection to gamedata infoboxes
 
     // Add text selection to gamedata infoboxes
$('.infobox.gamedata').each(function(i,e){var ospan=$(e).find('th span:nth(0)'),span=$('<span>').insertAfter(ospan).attr('style',ospan.attr('style'));ospan.css({width:'auto',paddingLeft:5});$('<a>').attr('href','#').click(function(v){v.preventDefault();SelectText($(this).parents('.infobox.gamedata').find('.gamedata-content')[0])}).text('Select all').appendTo(span);span.append(']').prepend('[');})
+
$('.infobox.gamedata').each(function(i,e){
 +
var ospan=$(e).find('th span:nth(0)'),
 +
span=$('<span>').insertAfter(ospan).attr('style',ospan.attr('style'));
 +
ospan.css({width:'auto',paddingLeft:5});
 +
$('<a>').attr('href','#').click(function(v){
 +
v.preventDefault();
 +
SelectText($(this).parents('.infobox.gamedata').find('.gamedata-content')[0]);
 +
}).text('Select all').appendTo(span);
 +
span.append(']').prepend('[');
 +
});
  
 
  }
 
  }
  
 
$(createCollapseButtons);
 
$(createCollapseButtons);

Revision as of 01:09, 10 June 2019

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

/** Import module *************************************************************
  *
  *  Description: Includes a raw wiki page as javascript or CSS, 
  *               used for including user made modules.
  *  Maintainers: [[User:AzaToth]]
  */
 importedScripts = {}; // object keeping track of included scripts, so a script ain't included twice
 function importScript( page ) {
     if( importedScripts[page] ) {
         return;
     }
     importedScripts[page] = true;
     var url = wgScriptPath
             + '/index.php?title='
             + encodeURIComponent( page.replace( / /g, '_' ) )
             + '&action=raw&ctype=text/javascript';
     var scriptElem = document.createElement( 'script' );
     scriptElem.setAttribute( 'src' , url );
     scriptElem.setAttribute( 'type' , 'text/javascript' );
     document.getElementsByTagName( 'head' )[0].appendChild( scriptElem );
 }

 function importStylesheet( page ) {
     var sheet = '@import "'
               + wgScriptPath
               + '/index.php?title='
               + encodeURIComponent( page.replace( / /g, '_' ) )
               + '&action=raw&ctype=text/css";';
     var styleElem = document.createElement( 'style' );
     styleElem.setAttribute( 'type' , 'text/css' );
     styleElem.appendChild( document.createTextNode( sheet ) );
     document.getElementsByTagName( 'head' )[0].appendChild( styleElem );
 }

 /* Test if an element has a certain class **************************************
  *
  * Description: Uses regular expressions and caching for better performance.
  * Maintainers: [[User:Mike Dillon]], [[User:R. Koot]], [[User:SG]]
  */
 
 var hasClass = (function () {
     var reCache = {};
     return function (element, className) {
         return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className);
     };
 })();

 /** Collapsible tables *********************************************************
  *
  *  Description: Allows tables to be collapsed, showing only the header. See
  *               [[Wikipedia:NavFrame]].
  *  Maintainers: [[User:R. Koot]]
  */
 
 var autoCollapse = 2;
 var collapseCaption = "hide";
 var expandCaption = "show";
 
 function collapseTable( tableIndex )
 {
     var Button = document.getElementById( "collapseButton" + tableIndex );
     var Table = document.getElementById( "collapsibleTable" + tableIndex );
 
     if ( !Table || !Button ) {
         return false;
     }
 
     var Rows = Table.rows;
 
     if ( Button.firstChild.data == collapseCaption ) {
         for ( var i = 1; i < Rows.length; i++ ) {
             Rows[i].style.display = "none";
         }
         Button.firstChild.data = expandCaption;
     } else {
         for ( var i = 1; i < Rows.length; i++ ) {
             Rows[i].style.display = Rows[0].style.display;
         }
         Button.firstChild.data = collapseCaption;
     }
 }
 
 function createCollapseButtons()
 {
     var tableIndex = 0;
     var NavigationBoxes = {};
     var Tables = document.getElementsByTagName( "table" );
 
     for ( var i = 0; i < Tables.length; i++ ) {
         if ( hasClass( Tables[i], "collapsible" ) ) {
 
             /* only add button and increment count if there is a header row to work with */
             var HeaderRow = Tables[i].getElementsByTagName( "tr" )[0];
             if (!HeaderRow) continue;
             var Header = HeaderRow.getElementsByTagName( "th" )[0];
             if (!Header) continue;
 
             NavigationBoxes[ tableIndex ] = Tables[i];
             Tables[i].setAttribute( "id", "collapsibleTable" + tableIndex );
 
             var Button     = document.createElement( "span" );
             var ButtonLink = document.createElement( "a" );
             var ButtonText = document.createTextNode( collapseCaption );
 
             Button.style.styleFloat = "right";
             Button.style.cssFloat = "right";
             Button.style.fontWeight = "normal";
             Button.style.textAlign = "right";
             Button.style.width = "6em";
 
             ButtonLink.style.color = Header.style.color;
             ButtonLink.setAttribute( "id", "collapseButton" + tableIndex );
             ButtonLink.setAttribute( "href", "javascript:collapseTable(" + tableIndex + ");" );
             ButtonLink.appendChild( ButtonText );
 
             Button.appendChild( document.createTextNode( "[" ) );
             Button.appendChild( ButtonLink );
             Button.appendChild( document.createTextNode( "]" ) );
 
             Header.insertBefore( Button, Header.childNodes[0] );
             tableIndex++;
         }
     }
 
     for ( var i = 0;  i < tableIndex; i++ ) {
         if ( hasClass( NavigationBoxes[i], "collapsed" ) || ( tableIndex >= autoCollapse && hasClass( NavigationBoxes[i], "autocollapse" ) ) ) {
             collapseTable( i );
         }
     }
    // Add text selection to gamedata infoboxes
	$('.infobox.gamedata').each(function(i,e){
		var ospan=$(e).find('th span:nth(0)'),
			span=$('<span>').insertAfter(ospan).attr('style',ospan.attr('style'));
		ospan.css({width:'auto',paddingLeft:5});
		$('<a>').attr('href','#').click(function(v){
			v.preventDefault();
			SelectText($(this).parents('.infobox.gamedata').find('.gamedata-content')[0]);
		}).text('Select all').appendTo(span);
		span.append(']').prepend('[');
	});

 }

$(createCollapseButtons);