MediaWiki:Common.js: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
MZMcBride (talk | contribs)
Reedy (talk | contribs)
Update foundation url
 
(10 intermediate revisions by 6 users not shown)
Line 1: Line 1:
/**
/**
* Collapsible tables *********************************************************
* Collapsible tables
*
*
* Description: Allows tables to be collapsed, showing only the header. See
* Allows tables to be collapsed, showing only the header. See [[Wikipedia:NavFrame]].
*
* [[Wikipedia:NavFrame]].
* @version 2.0.3 (2014-03-14)
* Maintainers: [[User:R. Koot]]
* @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-collapsibleTables.js
* @author [[User:R. Koot]]
* @author [[User:Krinkle]]
* @deprecated Since MediaWiki 1.20: Use class="mw-collapsible" instead which
* is supported in MediaWiki core.
*/
*/

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

window.collapseTable = function ( tableIndex ) {
function collapseTable( tableIndex ) {
var Button = document.getElementById( 'collapseButton' + tableIndex );
var Button = document.getElementById( 'collapseButton' + tableIndex );
var Table = document.getElementById( 'collapsibleTable' + tableIndex );
var Table = document.getElementById( 'collapsibleTable' + tableIndex );

if ( !Table || !Button ) {
if ( !Table || !Button ) {
return false;
return false;
}
}

var Rows = Table.rows;
var Rows = Table.rows;
var i;
var i;

if ( Button.firstChild.data === collapseCaption ) {
if ( Button.firstChild.data === collapseCaption ) {
for ( i = 1; i < Rows.length; i++ ) {
for ( i = 1; i < Rows.length; i++ ) {
Line 33: Line 38:
Button.firstChild.data = collapseCaption;
Button.firstChild.data = collapseCaption;
}
}
};
}

function createCollapseButtons() {
function createClickHandler( tableIndex ) {
var tableIndex = 0;
return function ( e ) {
var NavigationBoxes = {};
var Tables = document.getElementsByTagName( 'table' );
var i;
function handleButtonLink( index, e ) {
window.collapseTable( index );
e.preventDefault();
e.preventDefault();
collapseTable( tableIndex );
}
};
}
for ( i = 0; i < Tables.length; i++ ) {

if ( $( Tables[i] ).hasClass( 'collapsible' ) ) {
/**
* Code for fundraising Thank You pages
/* only add button and increment count if there is a header row to work with */
* e.g. https://foundation.wikimedia.org/wiki/Thank_You/en
var HeaderRow = Tables[i].getElementsByTagName( 'tr' )[0];
*
if ( !HeaderRow ) continue;
* @author: [[User:Pcoombe (WMF)]]
var Header = HeaderRow.getElementsByTagName( 'th' )[0];
*/
if ( !Header ) continue;

if ( mw.config.get('wgPageName').substring(0,9) === 'Thank_You' ) {
NavigationBoxes[ tableIndex ] = Tables[i];

Tables[i].setAttribute( 'id', 'collapsibleTable' + tableIndex );
mw.loader.using( 'mediawiki.util', function() {

var Button = document.createElement( 'span' );
var ButtonLink = document.createElement( 'a' );
var paymentMethod = mw.util.getParamValue('payment_method'),
var ButtonText = document.createTextNode( collapseCaption );
country = mw.util.getParamValue('country');

if ( paymentMethod === 'bt' ) {
Button.className = 'collapseButton'; /* Styles are declared in Common.css */
document.getElementById('ty-banktransfer').style.display = 'block';
ButtonLink.style.color = Header.style.color;
ButtonLink.setAttribute( 'id', 'collapseButton' + tableIndex );
ButtonLink.setAttribute( 'href', '#' );
$( ButtonLink ).on( 'click', $.proxy( handleButtonLink, ButtonLink, tableIndex ) );
ButtonLink.appendChild( ButtonText );
Button.appendChild( document.createTextNode( '[' ) );
Button.appendChild( ButtonLink );
Button.appendChild( document.createTextNode( ']' ) );
Header.insertBefore( Button, Header.firstChild );
tableIndex++;
}
}
if ( paymentMethod === 'bitcoin' ) {
}
document.getElementById('ty-bitcoin').style.display = 'block';
for ( i = 0; i < tableIndex; i++ ) {
if ( $( NavigationBoxes[i] ).hasClass( 'collapsed' ) || ( tableIndex >= autoCollapse && $( NavigationBoxes[i] ).hasClass( 'autocollapse' ) ) ) {
window.collapseTable( i );
}
else if ( $( NavigationBoxes[i] ).hasClass ( 'innercollapse' ) ) {
var element = NavigationBoxes[i];
while ((element = element.parentNode)) {
if ( $( element ).hasClass( 'outercollapse' ) ) {
window.collapseTable ( i );
break;
}
}
}
}
if ( paymentMethod === 'bpay' ) {
}
document.getElementById('ty-bpay').style.display = 'block';
}

if ( country === 'US' || country === 'CA' ) {
document.getElementById('ty-store').style.display = 'block';
}

});

}
}

/**
$( createCollapseButtons );
* This throws a "ReferenceError: createCollapseButtons is not defined" in every browser now that the createCollapseButtons function is gone.
* On the other hand, why is this code even here? It's clearly marked as deprecated
* since about four versions ago...
mw.hook( 'wikipage.content' ).add( createCollapseButtons );
*/

Latest revision as of 00:45, 31 July 2018

/**
 * Collapsible tables
 *
 * Allows tables to be collapsed, showing only the header. See  [[Wikipedia:NavFrame]].
 *
 * @version 2.0.3 (2014-03-14)
 * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-collapsibleTables.js
 * @author [[User:R. Koot]]
 * @author [[User:Krinkle]]
 * @deprecated Since MediaWiki 1.20: Use class="mw-collapsible" instead which
 * is supported in MediaWiki core.
 */

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;
    var i;

    if ( Button.firstChild.data === collapseCaption ) {
        for ( i = 1; i < Rows.length; i++ ) {
            Rows[i].style.display = 'none';
        }
        Button.firstChild.data = expandCaption;
    } else {
        for ( i = 1; i < Rows.length; i++ ) {
            Rows[i].style.display = Rows[0].style.display;
        }
        Button.firstChild.data = collapseCaption;
    }
}

function createClickHandler( tableIndex ) {
    return function ( e ) {
        e.preventDefault();
        collapseTable( tableIndex );
    };
}

/**
 * Code for fundraising Thank You pages
 * e.g. https://foundation.wikimedia.org/wiki/Thank_You/en
 *
 * @author: [[User:Pcoombe (WMF)]]
 */

if ( mw.config.get('wgPageName').substring(0,9) === 'Thank_You' ) {

    mw.loader.using( 'mediawiki.util', function() {

        var paymentMethod = mw.util.getParamValue('payment_method'),
            country = mw.util.getParamValue('country');

        if ( paymentMethod === 'bt' ) {
            document.getElementById('ty-banktransfer').style.display = 'block';
        }
        if ( paymentMethod === 'bitcoin' ) {
            document.getElementById('ty-bitcoin').style.display = 'block';
        }
        if ( paymentMethod === 'bpay' ) {
            document.getElementById('ty-bpay').style.display = 'block';
        }

        if ( country === 'US' || country === 'CA' ) {
            document.getElementById('ty-store').style.display = 'block';
        }

    });

}

/**
 * This throws a "ReferenceError: createCollapseButtons is not defined" in every browser now that the createCollapseButtons function is gone.
 * On the other hand, why is this code even here? It's clearly marked as deprecated
 * since about four versions ago...
mw.hook( 'wikipage.content' ).add( createCollapseButtons );
 */