User:Sav/welcome.js: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:




const tag = "welcomingnice"; // Change this to change the query used to detect if you're welcoming
const tag = "Welcome!"; // Change this to change the query used to detect if you're welcoming


if (mw.config.get('wgNamespaceNumber') == 3) {
if (mw.config.get('wgNamespaceNumber') == 3) {

Revision as of 17:17, 13 June 2024

const WELCOME_TEMPLATE = "User:Sav/Welcome";
mw.loader.load('/w/index.php?title=User:Sav/welcome.js&action=raw&ctype=text/javascript');



const tag = "Welcome!"; // Change this to change the query used to detect if you're welcoming

if (mw.config.get('wgNamespaceNumber') == 3) {
	let actions = document.querySelector('.content-actions');
	let ul = actions.getElementsByClassName('dropdown')[0];
	
	let li = document.createElement('li');
	ul.insertBefore(li, document.getElementById('ca-history'));
	
	const params = new URLSearchParams(window.location.search);
	
	li.innerHTML = '<li id="ca-welcome" class="selected"><a href="/w/index.php?title=' + (params.has("title") ? params.get("title") : window.location.pathname.replaceAll("/wiki/", "")) + '&action=edit&section=new&' + tag + '=true" title="Welcome this user!">Welcome User</a></li>';
	
	if (params.has(tag)) {
		$("#wpSummary").textSelection('setContents', 'Welcome!');
		$("#wpTextbox1").textSelection('setContents', '{{' + WELCOME_TEMPLATE + '}}~~' + '~~\n');
	}
}

console.log("Loaded Wiki Welcome");