Welcome to Wargaming.net Wiki!
Variants

Difference between revisions of "MediaWiki:Common.js"

Jump to: navigation, search
Revision as of 09:49, 25 March 2014Revision as of 09:50, 25 March 2014
Line 232:Line 232:
  var appendContent = document.getElementById('appendContent');  var appendContent = document.getElementById('appendContent');
  if(appendContent) {  if(appendContent) {
? appendContent.appendChild(appendContent);+ mwpanel.appendChild(appendContent);
  }  }
 } }
  
 /* END SNIB's MAGIC */ /* END SNIB's MAGIC */

Revision as of 09:50, 25 March 2014

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

/* BEGIN n1sK's js, please leave it alone, if you really must edit it ask me first.*/
/* Collapsible tables js*/

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 = new Object();
    var Tables = document.getElementsByTagName( "table" );

    for ( var i = 0; i < Tables.length; i++ ) {
        if ( hasClass( Tables[i], "collapsible" ) ) {

            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.className = "collapseButton";  //Styles are declared in Common.css

            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 );
        }
        else if ( hasClass( NavigationBoxes[i], "innercollapse" ) ) {
            var element = NavigationBoxes[i];
            while (element = element.parentNode) {
                if ( hasClass( element, "outercollapse" ) ) {
                    collapseTable ( i );
                    break;
                }
            }
        }
    }
}

addOnloadHook( createCollapseButtons );


var NavigationBarHide = collapseCaption;
var NavigationBarShow = expandCaption;


function toggleNavigationBar(indexNavigationBar)
{
    var NavToggle = document.getElementById("NavToggle" + indexNavigationBar);
    var NavFrame = document.getElementById("NavFrame" + indexNavigationBar);

    if (!NavFrame || !NavToggle) {
        return false;
    }

    
    if (NavToggle.firstChild.data == NavigationBarHide) {
        for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
            if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) {
                NavChild.style.display = 'none';
            }
        }
    NavToggle.firstChild.data = NavigationBarShow;

    
    } else if (NavToggle.firstChild.data == NavigationBarShow) {
        for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
            if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) {
                NavChild.style.display = 'block';
            }
        }
        NavToggle.firstChild.data = NavigationBarHide;
    }
}

function createNavigationBarToggleButton()
{
    var indexNavigationBar = 0;

    var divs = document.getElementsByTagName("div");
    for (var i = 0; NavFrame = divs[i]; i++) {

        if (hasClass(NavFrame, "NavFrame")) {

            indexNavigationBar++;
            var NavToggle = document.createElement("a");
            NavToggle.className = 'NavToggle';
            NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar);
            NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');');

            var isCollapsed = hasClass( NavFrame, "collapsed" );

            for (var NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling) {
                if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) {
                    if ( NavChild.style.display == 'none' ) {
                        isCollapsed = true;
                    }
                }
            }
            if (isCollapsed) {
                for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
                    if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) {
                        NavChild.style.display = 'none';
                    }
                }
            }
            var NavToggleText = document.createTextNode(isCollapsed ? NavigationBarShow : NavigationBarHide);
            NavToggle.appendChild(NavToggleText);

            for(var j=0; j < NavFrame.childNodes.length; j++) {
                if (hasClass(NavFrame.childNodes[j], "NavHead")) {
                    NavFrame.childNodes[j].appendChild(NavToggle);
                }
            }
            NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar);
        }
    }
}

addOnloadHook( createNavigationBarToggleButton );


var hasClass = (function() {
	var reCache = {};
	return function( element, className ) {
		return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className);
	};
})();
/* END n1sK's js, feel free to edit below.*/

/* BEGIN SNIB's MAGIC */
function toggleSidebar() {
	try {
		if(document.getElementById('switcherTop').style.display == 'none')
		{
			var stock = document.getElementsByClassName('stock');
			for (i=0;i<stock.length;i++) stock[i].style.display = 'none';
			var top = document.getElementsByClassName('top');
			for (i=0;i<top.length;i++) top[i].style.display = 'inline';
			document.getElementById('switcherStock').style.display = 'none';
			document.getElementById('switcherTop').style.display = '';
		}
		else
		{
			var stock = document.getElementsByClassName('stock');
			for (i=0;i<stock.length;i++) stock[i].style.display = '';
			var top = document.getElementsByClassName('top');
			for (i=0;i<top.length;i++) top[i].style.display = 'none';
			document.getElementById('switcherStock').style.display = '';
			document.getElementById('switcherTop').style.display = 'none';
		}
	}catch(err){}
}

$(function() {
	try{
		$('#switcher').attr('onclick', 'toggleSidebar();');
	}catch(err){}
});

$(function() {
	var history;
	var first;
	first = $("#history p:first").html();
	if(first == null || first == '') return;

	$("#history").hide();

	$("#readMore").before('<div id="first">'+first+'</div>').show();

	$('#readMore').click(function(){  
		$("#first").remove();
		$("#readMore").remove();
		$("#history").show('slow');
	});
});

var switcher = document.getElementById('switcher');
if(switcher) {
	switcher.onclick = 'toggleSidebar()';
}

var mwpanel = document.getElementById('mw-panel');
if(mwpanel) {
	var appendContent = document.getElementById('appendContent');
	if(appendContent) {
		mwpanel.appendChild(appendContent);
	}
}

/* END SNIB's MAGIC */