MediaWiki:Citizen.js: Difference between revisions

MediaWiki interface page
m (test)
No edit summary
Line 68: Line 68:
         $('#ca-history').after(requestAccountEditBtn);
         $('#ca-history').after(requestAccountEditBtn);
     }
     }
}(jQuery, mediaWiki));
}(jQuery, mediaWiki));*/
*/


function addEditButtonForAnonymous() {
(function($, mw) {
    // Check if the user is anonymous
    function addEditButtonForAnonymous() {
    if (mw.user.isAnon()) {
        // Check if the user is anonymous
        // Create the HTML for the "request account" edit button. Styled in MediaWiki:Citizen.css
        if (mw.user.isAnon()) {
        var requestAccountEditBtn = '<li id="ca-ve-edit" class="mw-list-item">' +
            // Create the HTML for the "request account" edit button. Styled in MediaWiki:Citizen.css
            '<a href="/index.php?title=Special:RequestAccount" title="Edit page">Edit this page</a>' +
            var requestAccountEditBtn = '<li id="ca-ve-edit" class="mw-list-item">' +
            '</li>';
                '<a href="/index.php?title=Special:RequestAccount" title="Edit page">Edit this page</a>' +
                '</li>';


        // Insert the button after the #ca-history element
            // Insert the button after the #ca-history element
        $('#ca-history').after(requestAccountEditBtn);
            $('#ca-history').after(requestAccountEditBtn);
        }
     }
     }
}


// Call the function when the document is ready
    // Call the function when the document is ready
$(document).ready(addEditButtonForAnonymous);
    $(document).ready(addEditButtonForAnonymous);
})(jQuery, mediaWiki);
 


//</nowiki>
//</nowiki>

Revision as of 16:34, 19 September 2023

/* All JavaScript here will be loaded for users of the Citizen skin */
"use strict";

/**
 *		Adds icons for the Citizen skin toggle menu
 *	
**/
/* obsolete while menu icons are loaded by CSS.
(function($, mw) {
	var $ul = $('#p-Navigation').children()[1]; // This selects the <ul> list of elements
	for (var i=0;i<$ul.children.length;i++) {
		var $a = $ul.children[i].children[0];
		var $span = $('<span>').text("")
		.addClass('citizen-ui-icon')
		switch ($a.text) {
			case " Main page":
				if (mw.config.get('wgIsMainPage')) {
					$ul.children[i].remove();
				}
				break;
			case "Library":
				$span.addClass('prolewiki-ui-icon-library')
				$a.prepend($span[0]);
				break;
			case "Wanted pages":
				$span.addClass('prolewiki-ui-icon-wanted')
				$a.prepend($span[0]);
				break;
			case "Recruitment":
				$span.addClass('prolewiki-ui-icon-recruitment');
				$a.prepend($span[0]);
				break;
			case "Special pages":
				$span.addClass('prolewiki-ui-icon-special')
				$a.prepend($span[0]);
				break;
			case "Upload file":
				$span.addClass('prolewiki-ui-icon-upload')
				$a.prepend($span[0]);
				break;
				
		}
	}
}(jQuery, mediaWiki)); */

/* Adds Sandbox icon for the Citizen skin preferences menu */
(function($, mw) {
	var $a = $('#pt-sandbox').children()[0];
	var $span = $('<span>')
		.addClass('citizen-ui-icon')
		.addClass('prolewiki-ui-icon-sandbox');
	$a.prepend($span[0]);
}(jQuery, mediaWiki));

/**
 * Append edit button to non-logged in users that redirects to Request Account.
**/
/*
(function($, mw) {
    // Check if the user is anonymous
    if (mw.user.isAnon()) {
        // Create the HTML for the "request account" edit button. Styled in MediaWiki:Citizen.css
        var requestAccountEditBtn = '<li id="ca-ve-edit" class="mw-list-item">' +
            '<a href="/index.php?title=Special:RequestAccount" title="Edit page">Edit this page</a>' +
            '</li>';

        // Insert the button after the #ca-history element
        $('#ca-history').after(requestAccountEditBtn);
    }
}(jQuery, mediaWiki));*/

(function($, mw) {
    function addEditButtonForAnonymous() {
        // Check if the user is anonymous
        if (mw.user.isAnon()) {
            // Create the HTML for the "request account" edit button. Styled in MediaWiki:Citizen.css
            var requestAccountEditBtn = '<li id="ca-ve-edit" class="mw-list-item">' +
                '<a href="/index.php?title=Special:RequestAccount" title="Edit page">Edit this page</a>' +
                '</li>';

            // Insert the button after the #ca-history element
            $('#ca-history').after(requestAccountEditBtn);
        }
    }

    // Call the function when the document is ready
    $(document).ready(addEditButtonForAnonymous);
})(jQuery, mediaWiki);


//</nowiki>