[go: up one dir, main page]

Jump to content

User:Nux/WikilinQs.js

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Nux (talk | contribs) at 20:35, 25 February 2024 (v1.0.0: from git • Wikiploy). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
/**
 * WikilinQs.
 * 
 * Show WD items id (Q) for links.
 * Show Q before links.
 * 
 * Repository (issues, pull requests):
 * https://github.com/Eccenux/WikilinQs
 * 
 * Authors:
 * Maciej Nux Jaros
 * 
 * Deployed with love using Wikiploy: [[Wikipedia:Wikiploy]]
 * 
 * <nowiki>
 */
var logTag = '[wdQs]';

/** API url */
var wdUrl = (title) => `/w/api.php?action=query&prop=pageprops&ppprop=wikibase_item&redirects=1&format=json&formatversion=2&titles=${title}`;

/**
 * Main links.
 */
class WikidataLinks {
	/**
	 * Show all WD ids beside wiki-links.
	 */
	async all() {
		const links = document.querySelectorAll('.mw-parser-output a[href^="/wiki"]');
		if (!links.length) {
			return;
		}

		// CSS
		this.addStyle();

		// read Q from links and show Q beside them
		const promki = [];
		for (const link of links) {
			promki.push(this.readAndShowQ(link));
		}
		console.log(logTag, 'scheduled %d requests', links.length);
		// wait
		await Promise.all(promki);
		console.log(logTag, 'done');
	}

	/** @private Add CSS. */
	addStyle() {
		const styleId = 'wikilinqs-css';
		if (document.getElementById(styleId)) {
			console.warn(logTag, 'addStyle repeat');
			return;
		}
		const css = /*css*/`
			.wikilinqs {
				display: inline-block;
				vertical-align: super;
				font-size: 80%;
				padding-left: .2em;
				color: mediumvioletred;
				background: white;
			}
		`;
		document.body.insertAdjacentHTML('beforeend', `<style id='${styleId}'>${css}</style>`);
	}

	/**
	 * Show WD item for the atricle link.
	 * 
	 * @private
	 * 
	 * @param {Element} link Article link element.
	 */
	async readAndShowQ(link) {
		const wd = await this.readQ(link);
		this.addQ(wd);
		console.log(logTag, wd);
	}

	/** @private Show Q beside link. */
	addQ(wd) {
		wd.el.insertAdjacentHTML('afterend', `<div class="wikilinqs">${wd.q}</div>`);
		return wd;
	}

	/** @private get WD id from API. */
	async readQ(el) {
		let title = el.href.replace(/.+\.org\/wiki\//, '');

		let url = wdUrl(title);

		const re = await fetch(url);
		const data = await re.json();
		//console.log(data);

		const page = data.query.pages.pop();
		return {
			title: page.title,
			q: page.pageprops.wikibase_item,
			el: el,
		};
	}
}

// export
if (typeof module === 'object' && module.exports) {
	module.exports.WikidataLinks = WikidataLinks;
	module.exports.logTag = logTag;
}
// </nowiki>
},{}],2:[function(require,module,exports){
const { WikidataLinks, logTag } = require("./WikidataLinks");

// WD instance
const wdLinks = new WikidataLinks();

// run hook
mw.hook('userjs.wikilinqs.ready').fire(wdLinks);

// prep. tool
mw.loader.using(["mediawiki.util"]).then( function() {
	var portletId = mw.config.get('skin') === 'timeless' ? 'p-pagemisc' : 'p-tb';
	var linkLabel = '🇶 Show WD-Q';
	var itemId = 'wikilinqs-tool';
	var item = mw.util.addPortletLink(portletId, '#', linkLabel, itemId);
	$(item).on('click', (evt) => {
		evt.preventDefault();
		wdLinks.all();
	});
});
},{"./WikidataLinks":1}]},{},[2]);