User:Sal9000/SWLinfobox.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Sal9000/SWLinfobox. |
//
// SWLinfobox.js
// If the page contain SWLs, it adds a show/hide button on top of the page.
// The button produces an infobox collecting all SWLs, and also highlights them throughout the page.
//
// Salvatore Loguercio, 2011
// email:salvatore.loguercio@Gmail.com
//
if($(".swl").length!=0) { // if there are SWLs on the page
var title = document.title.split("-")[0];
function makeLink(str) {
return "<a href=\"http://wiki.riteme.site/wiki/Category:SWL/" + str + "\">" + str + "</a>";
}
function makeTable() { // make an infobox with all SWLs, displayed as "predicate-object"
var swlArray = $('.swl'); // initialize array;
var content = $.makeArray(swlArray).map(function (elem) { // map on every swl found
var inner1 = elem.firstChild,
inner2,
result = [];
if (inner1) {
var inner2 = inner1.firstChild;
}
var line = '<tr><td>' +
[makeLink(inner1.className), inner2.href.split(/\//).pop()].join('</td><td>') // table formatting stuff
+ '</tr>\n';
return line;
});
return '<table class="infobox" style="width: 22em; text-align: left; font-size: 88%; line-height: 1.5em">' + content + '</table>'; // make a pretty infobox, same style as PBB infoboxes.
}
// toggle function
function toggle(obj) {
var el = document.getElementById(obj);
if ( el.style.display != 'none' ) {
el.style.display = 'none'; // hide the infobox
$(".swl").css("border",""); // hide the borders on SWLs
}
else {
el.style.display = ''; // show infobox..
$(".swl").css("border","3px solid lightgreen"); // ..and borders
}
}
var swltab='<div id="swltab" style="display:none">' + makeTable().replace(/,/g, '') + '</div>'; // instantiate makeTable, as a <div> with an id to be used by the toggle function. Initially not displayed.
$('#siteSub').append(swltab); // Add it right below the page title
$('#firstHeading').append('<input style="background-color:lightgreen;padding: 0.3em;position:absolute; right:15px; top:90px" type="button" value="Semantic Wiki Links" onclick=toggle("swltab") />'); // toggle button
}