Merge "Fix Preview not working with MathML rendering"

This commit is contained in:
jenkins-bot 2024-11-30 07:06:59 +00:00 committed by Gerrit Code Review
commit 500b9bcefc

View file

@ -1,6 +1,7 @@
( 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 isValidId = function ( qid ) {
return qid.match( /Q\d+/g ) === null;
@ -11,10 +12,24 @@
'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();
let qidstr = el.parentNode.parentNode.dataset.qid;
if ( isValidId( qidstr ) ) {
const parent = el.closest( '.mwe-math-element' );
let qidstr = getQidStr( parent );
if ( parent.dataset.qid ) {
qidstr = parent.dataset.qid;
}
if ( !qidstr || isValidId( qidstr ) ) {
return deferred.reject();
}
qidstr = qidstr.slice( 1 );
@ -35,16 +50,16 @@
};
// popups require title attributes
[].forEach.call(
document.querySelectorAll( '.mwe-math-element[data-qid] img' ),
document.querySelectorAll( selector ),
( node ) => {
if ( isValidId( node.parentNode.parentNode.dataset.qid ) ) {
const qidstr = getQidStr( node );
if ( qidstr && isValidId( qidstr ) ) {
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 : {