User:Gryllida/js/showToDoAtPageEnd-0.1.js

From Wikinews, the free news source you can write!
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes. Mozilla / Firefox / Safari: hold down Shift while clicking Reload, or press Ctrl-Shift-R (Cmd-Shift-R on Apple Mac); IE: hold Ctrl while clicking Refresh, or press Ctrl-F5; Konqueror: simply click the Reload button, or press F5; Opera users may need to completely clear their cache in Tools→Preferences. — More skins

/* Author : Svetlana Tkachenko svetlana@members.fsf.org
This file is a part of showToDoAtPageEnd-0.1.js
Licence: GPLv3+
Version 0.1
Release 2018-11-25
Description: [beta] shows contents of Category:Developed or disputed after the footer
See also <https://en.wikinews.org/wiki/User:Gryllida/Tasks>.
<nowiki>
*/ 
mw.loader.using(['mediawiki.api'], function () {
	"use strict";
	// == Create an API object ==
	var api = new mw.Api();
	// == Query the wiki API to get HTML of {{Special:MyPage/MyNotice}}==
	var fillMyDiv = function(){
		api.get( { 
	    		action: 'parse',
	    		disableeditsection: 'true',
text: `{{time}}
<DynamicPageList>
category=Developing or disputed
notcategory=Review
namespace=Main
suppresserrors=false
ordermethod=categoryadd
addfirstcategorydate = true
</DynamicPageList>`
		} ).done( function ( data ) {
			var $mydiv = $('#gryllida-todoattheend-div');
			$mydiv.empty();
			$mydiv.append($(data.parse.text['*']));
	    });
	};
	// == Add the HTML at the end of current page ==
	var $mydiv = $('<div></div>',{
		id: 'gryllida-todoattheend-div',
		style:"background-color: #dedede !important"
	});
	$mydiv.click(function(){fillMyDiv();});
	//$mydiv.mouseenter(function(){
	//	fillMyDiv();
	//});
	$('#mw-related-navigation').append($mydiv);
	fillMyDiv();
});
// </nowiki>