mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-23 23:25:02 +00:00
39c15f76f9
Change-Id: I02045047af1f392ae6d6f08e422024b0e9386ccf
59 lines
1.6 KiB
JavaScript
59 lines
1.6 KiB
JavaScript
( function () {
|
|
'use strict';
|
|
const previewType = 'math';
|
|
const api = new mw.Rest();
|
|
const isValidId = function ( qid ) {
|
|
return qid.match( /Q\d+/g ) === null;
|
|
};
|
|
const fetch = function ( qid ) {
|
|
return api.get( '/math/v0/popup/html/' + qid, {}, {
|
|
Accept: 'application/json; charset=utf-8',
|
|
'Accept-Language': mw.config.language
|
|
} );
|
|
};
|
|
const fetchPreviewForTitle = function ( title, el ) {
|
|
const deferred = $.Deferred();
|
|
let qidstr = el.parentNode.parentNode.dataset.qid;
|
|
if ( isValidId( qidstr ) ) {
|
|
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 title attributes
|
|
[].forEach.call(
|
|
document.querySelectorAll( '.mwe-math-element[data-qid] img' ),
|
|
( node ) => {
|
|
if ( isValidId( node.parentNode.parentNode.dataset.qid ) ) {
|
|
node.dataset.title = 'math-unique-identifier';
|
|
}
|
|
}
|
|
);
|
|
|
|
const mathDisabledByUser = mw.user.isNamed() && mw.user.options.get( 'math-popups' ) !== '1';
|
|
const selector = '.mwe-math-element[data-qid] img';
|
|
const mathAppliesToThisPage = document.querySelectorAll( selector ).length > 0;
|
|
|
|
module.exports = !mathAppliesToThisPage || mathDisabledByUser ? null : {
|
|
type: previewType,
|
|
selector,
|
|
gateway: {
|
|
fetch,
|
|
fetchPreviewForTitle
|
|
}
|
|
};
|
|
}() );
|