mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-19 11:00:45 +00:00
b66e28b237
The previewin MathML mode was always at the left side of the website. Added values for `node.offsetWidth` and `node.offsetHeight`. Values are taken from `node.getBoundingClientRect()`. Cleaned up if-clause(node.dataset.title) as it is not needed anymore. In-lined IsValidId funtion as there was only one remaining reference. Bug: T381311 Change-Id: Ied17aaaaf9156e2712ed6c7d6d6f08ecccc12286
73 lines
2 KiB
JavaScript
73 lines
2 KiB
JavaScript
( function () {
|
|
'use strict';
|
|
const previewType = 'math';
|
|
const selector = '.mwe-math-element[href*="qid"], .mwe-math-element[data-qid] img';
|
|
const api = new mw.Rest();
|
|
const fetch = function ( qid ) {
|
|
return api.get( '/math/v0/popup/html/' + qid, {}, {
|
|
Accept: 'application/json; charset=utf-8',
|
|
'Accept-Language': mw.config.language
|
|
} );
|
|
};
|
|
const getQidStr = function ( parent ) {
|
|
if ( parent.getAttribute( 'href' ) ) {
|
|
const href = parent.getAttribute( 'href' );
|
|
const match = href.match( /qid=(Q\d+)/ );
|
|
if ( match ) {
|
|
return match[ 1 ];
|
|
}
|
|
}
|
|
return null;
|
|
};
|
|
const fetchPreviewForTitle = function ( title, el ) {
|
|
const deferred = $.Deferred();
|
|
const parent = el.closest( '.mwe-math-element' );
|
|
let qidstr = getQidStr( parent );
|
|
if ( parent.dataset.qid ) {
|
|
qidstr = parent.dataset.qid;
|
|
}
|
|
if ( !qidstr || ( qidstr.match( /Q\d+/g ) === null ) ) {
|
|
return deferred.reject();
|
|
}
|
|
qidstr = qidstr.slice( 1 );
|
|
fetch( qidstr ).then( ( body ) => {
|
|
const model = {
|
|
title: body.title,
|
|
url: body.canonicalurl,
|
|
languageCode: body.pagelanguagehtmlcode,
|
|
languageDirection: body.pagelanguagedir,
|
|
extract: body.extract,
|
|
type: previewType,
|
|
thumbnail: undefined,
|
|
pageId: body.pageId
|
|
};
|
|
deferred.resolve( model );
|
|
} );
|
|
return deferred.promise();
|
|
};
|
|
// popups require offsetHeight and offsetWidth attributes
|
|
[].forEach.call(
|
|
document.querySelectorAll( selector ),
|
|
( node ) => {
|
|
if ( typeof node.offsetWidth === 'undefined' ) {
|
|
node.offsetWidth = node.getBoundingClientRect().width || 1;
|
|
}
|
|
if ( typeof node.offsetHeight === 'undefined' ) {
|
|
node.offsetHeight = node.getBoundingClientRect().height || 1;
|
|
}
|
|
}
|
|
);
|
|
|
|
const mathDisabledByUser = mw.user.isNamed() && mw.user.options.get( 'math-popups' ) !== '1';
|
|
const mathAppliesToThisPage = document.querySelectorAll( selector ).length > 0;
|
|
|
|
module.exports = !mathAppliesToThisPage || mathDisabledByUser ? null : {
|
|
type: previewType,
|
|
selector,
|
|
gateway: {
|
|
fetch,
|
|
fetchPreviewForTitle
|
|
}
|
|
};
|
|
}() );
|