User:Harsh4101991/EditCount.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:Harsh4101991/EditCount. |
mw.loader.using('mediawiki.api', function() {
//http://en.wikipedia.org/w/api.php?action=query&list=users&format=json&usprop=editcount&ususers=Harsh4101991
var x=0;
var api = new mw.Api();
api.get({
action: 'query',
list: 'users',
usprop: 'editcount',
ususers : wgUserName
})
.done( function(data){ // Function definition *only*
console.log( '2' );
console.log( data.query.users[0].editcount);
x = data.query.users[0].editcount;
}); // Means -> Start the API request, and run the code referred to by the name ‘requestSuccess’ when it is done. Don’t wait.
console.log('1');
// Add a link to the toolbox
//-------------------
// Add a link to the toolbox
var link = mw.util.addPortletLink(
'p-views',
'#',
'Edit Count',
't-prettylinkwidget',
'Show Edit Count of User',
null,
'#t-whatlinkshere'
);
$(link).click( function( e ) {
// Avoid the browser going to '#'
e.preventDefault();
//Adding Dialog
mw.loader.using( 'jquery.ui', function () {
$dialog = $('<div></div>')
.html('Your Edit Count is : '+ x)
.dialog({
autoOpen: true,
title: 'Thanks For Your Contribution',
width: '70%',
modal: true,
});
});
//END
});
//---------------------------
});