User:Guywan/Scripts/LEA.js

// [[Category:Wikipedia scripts]] // <nowiki> $(function() { if(mw.config.get("wgAction") != "view") return; const version = "

// [[Category:Wikipedia scripts]]
// <nowiki>
$(function()
{
	if(mw.config.get("wgAction") != "view") return;
	
	const version = "24.03.20";
	
	// Add portlet link.
	$("#p-cactions ul").append("<li id='ca-lea'><a href='#' title='Annotate list entries'>List Entry Annotator</a></li>");
	$("#ca-lea").on("click", () =>
	{
		mw.notify("Starting annotation procedure.");
		
		window.setTimeout(() =>
		{
			var reg = new RegExp(/^\*+\s*\[\[([^\]|]+).*?\]\](()|(\s*\(.+?\)))$/g);
			
			var text = getWikitext(mw.config.get("wgPageName"), "?action=raw");
			
			// Split the page into lines of text.
			text = text.split("\n");
			
			// Run a regex over each line.
			var linksFound = false;
			for(var i = 0; i < text.length; i++)
			{
				if(text[i].match(reg))
				{
					var targetText = getWikitext(reg.exec(text[i])[1], "?action=raw&section=0");
					
					targetText = targetText.split("\n");
					
					for(var k = 0; k < targetText.length; k++)
					{
						// Find the first paragraph. Likely to always be successful.
						if(targetText[k].match(/^[A-Za-z0-9'"(]/g))
						{
							//										Filter out HTML comments.
							text[i] += " &ndash; " + targetText[k].replace(/(<!--.*?-->)|(<!--.*?$)/g, "");
							
							break;
						}
					}

					linksFound = true;
				}
			}
			
			// If no list items were found, abort.
			if(!linksFound)
			{
				mw.notify("No lists to annotate!");
				return;
			}
			
			mw.notify("Completed. Showing preview.");
			
			// Put it back together!
			text = text.join("\n");
			
			// Setup the preview.
			api = new mw.Api();
			
			api.parse(text)
			.fail(function(result) { mw.notify("Failed to parse preview.", {type: "error"}); } )
			.done(function(data)
			{
				$("#mw-content-text").html(data).prepend("<div style='border-bottom:1px solid #a2a9b1;text-align:center'>"
				+ "<h3>This is a <strong>preview</strong> of the changes you will make.</h3><br/>"
				+ "<button id='lea-submit' class='mw-ui-button mw-ui-progressive'>Submit</button>"
				+ "<button id='lea-cancel' class='mw-ui-button mw-ui-quiet mw-ui-destructive'>Cancel</button></div>");
				
				$("#lea-submit").on("click", () =>
				{
					// Post edited text.
					api.post(
					{
						"action": "edit",
						"title": mw.config.get("wgPageName"),
						"text": text,
						"summary": "Annotating lists with [[User:Guywan/Scripts/LEA|List Entry Annotator]] V" + version + ". Content copied from respective articles.",
						"token": mw.user.tokens.get("csrfToken")
					})
					.fail(() => { mw.notify("Failed to post!", {type: "error"}); })
					.done(() =>
					{
						mw.notify("Success! Refreshing.");
						window.location.href = mw.util.getUrl(mw.config.get("wgPageName"));
					});
				});
				
				$("#lea-cancel").on("click", () =>
				{
					window.location.href = mw.util.getUrl(mw.config.get("wgPageName"));
				});
			});
		}, 100);
	});
	
	function getWikitext(page, params)
	{
		// Get page wikitext.
		return $.ajax(
		{
			url : mw.util.getUrl(page) + params,
			data : "text",
			async : false
		}).responseText;
	}
});
// </nowiki>

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.