MediaWiki:Gadget-editCount.js

From Old School Near-Reality Wiki
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
 1 /**
 2  * Adds total edit count on User, User talk and Contributions as a PortletLink
 3  * @author Jr_Mime
 4  */
 5 
 6 if (mw.config.get('wgNamespaceNumber') === 2 || mw.config.get('wgNamespaceNumber') === 3 || mw.config.get("wgCanonicalSpecialPageName") == "Contributions") {
 7 	$(function () {
 8 		var user = mw.config.get('wgRelevantUserName');
 9 		mw.util.addPortletLink(
10 			'p-namespaces',
11 			mw.util.getUrl('Special:EditCount/' + user),
12 			'.. edits',
13 			'ca-nstab-editcount',
14 			'Click to open the user\'s full editcount'
15 		);
16 		
17 		$.post("/w/Special:EditCount/" + user).done(function (data) {
18 			if (!$(data).find("#editcount > table > tbody > tr:nth-child(2) > td:nth-child(2) > table > tbody > tr:nth-child(1) > th:nth-child(2)").length) {
19 				$("#ca-nstab-editcount").css("display","none");
20 				return;
21 			} else {
22 				$("#ca-nstab-editcount > a").text($(data).find("#editcount > table > tbody > tr:nth-child(2) > td:nth-child(2) > table > tbody > tr:nth-child(1) > th:nth-child(2)").text() + ' edits')
23 			}
24 		});
25 	});
26 }