MediaWiki:Citizen.js: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
function isUserLoggedIn() {
+
$(document).ready(function() {
 
setTimeout(function() {
return !mw.user.isAnon();
+
if (mw.user.isAnon()) {
}
 
  +
var elements = $('.cs-header > .oo-ui-widget-disabled');
 
  +
elements.each(function() {
function handleElement($element) {
 
if ($element.attr('aria-disabled') === 'true') {
+
var $element = $(this);
 
var loginMessage = '<p style="cs-custom-login-prompt">Please <a href="/wiki/Special:UserLogin">login</a> or <a href="/wiki/Special:CreateAccount">sign up</a> to continue.</p>';
console.log('User not logged in; adding login message');
 
  +
$element.after(loginMessage);
$element.after('<p>Please <a href="/wiki/Special:UserLogin">login</a> or <a href="/wiki/Special:UserSignup">sign up</a> to continue.</p>');
 
} else {
 
console.log('User is logged in; no message added');
 
}
 
}
 
 
function handleMutations(mutationsList) {
 
mutationsList.forEach(function (mutation) {
 
if (mutation.type === 'childList') {
 
Array.prototype.forEach.call(mutation.addedNodes, function (node) {
 
if ($(node).hasClass('oo-ui-buttonElement-button')) {
 
console.log('Handling dynamic element');
 
handleElement($(node));
 
}
 
 
});
 
});
} else if (mutation.type === 'attributes' && mutation.attributeName === 'aria-disabled') {
 
console.log('Handling attribute change');
 
handleElement($(mutation.target));
 
 
}
 
}
});
+
}, 250);
}
 
 
 
$(document).ready(function () {
 
console.log('Checking initial state');
 
var observer = new MutationObserver(handleMutations);
 
observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['aria-disabled'] });
 
 
 
$('.oo-ui-buttonElement-button').each(function (index, element) {
 
console.log('Handling initial element');
 
handleElement($(element));
 
});
 
 
});
 
});

Latest revision as of 01:31, 15 October 2023

$(document).ready(function() {
    setTimeout(function() {
        if (mw.user.isAnon()) {
            var elements = $('.cs-header > .oo-ui-widget-disabled');
            elements.each(function() {
                var $element = $(this);
                var loginMessage = '<p style="cs-custom-login-prompt">Please <a href="/wiki/Special:UserLogin">login</a> or <a href="/wiki/Special:CreateAccount">sign up</a> to continue.</p>';
                $element.after(loginMessage);
            });
        }
    }, 250);
});