2024-06-21 18:29:04 +00:00
|
|
|
/**
|
|
|
|
* Adapted from https://en.wiktionary.org/wiki/MediaWiki:Gadget-CodeLinks.js
|
|
|
|
* Original authors: Kephir, Erutuon
|
|
|
|
* License: CC-BY-SA 4.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
$( () => {
|
|
|
|
// by John Gruber, from https://daringfireball.net/2010/07/improved_regex_for_matching_urls
|
|
|
|
const URLRegExp = /\b((?:https?:\/\/|www\d{0,3}[.]|[a-z0-9.-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()[\]{};:'".,<>?«»“”‘’]))/i;
|
|
|
|
|
2024-09-14 16:59:28 +00:00
|
|
|
const wikilinkRegExp = /\[\[([^|{}[\]\n]+)?(?:\|.*?)?]]/;
|
|
|
|
const templateRegExp = /\{\{([^|{}[\]\n#]+)(?=\||}})/;
|
|
|
|
|
|
|
|
function processComment( textNode, node ) {
|
2024-06-21 18:29:04 +00:00
|
|
|
let wikilinkMatch, templateMatch, URLMatch;
|
|
|
|
|
2024-09-14 16:59:28 +00:00
|
|
|
if (
|
|
|
|
( wikilinkMatch = wikilinkRegExp.exec( textNode.data ) ) ||
|
|
|
|
( templateMatch = templateRegExp.exec( textNode.data ) ) ||
|
2024-06-21 18:29:04 +00:00
|
|
|
( URLMatch = URLRegExp.exec( textNode.data ) )
|
|
|
|
) {
|
|
|
|
const link = document.createElement( 'a' );
|
|
|
|
let start = ( wikilinkMatch || templateMatch || URLMatch ).index;
|
2024-09-14 16:59:28 +00:00
|
|
|
let linkText, title;
|
2024-06-21 18:29:04 +00:00
|
|
|
link.classList.add( 'code-link' );
|
|
|
|
|
|
|
|
if ( URLMatch ) {
|
2024-09-26 08:04:25 +00:00
|
|
|
let url = URLMatch[ 0 ];
|
|
|
|
|
|
|
|
if ( !/^https?:/i.test( url ) ) {
|
|
|
|
url = '//' + url;
|
|
|
|
}
|
|
|
|
|
|
|
|
link.href = url;
|
|
|
|
linkText = URLMatch[ 0 ]; // Preserve visual link text as is
|
2024-10-11 16:50:32 +00:00
|
|
|
} else if ( wikilinkMatch && wikilinkMatch[ 1 ] ) {
|
2024-09-14 16:59:28 +00:00
|
|
|
linkText = wikilinkMatch[ 0 ];
|
|
|
|
title = mw.Title.newFromText( wikilinkMatch[ 1 ] );
|
|
|
|
} else if ( templateMatch ) {
|
|
|
|
const pageName = templateMatch[ 1 ];
|
|
|
|
start += 2; // opening braces "{{"
|
|
|
|
linkText = pageName;
|
|
|
|
title = mw.Title.newFromText( pageName, 10 );
|
2024-06-21 18:29:04 +00:00
|
|
|
}
|
2024-09-14 16:59:28 +00:00
|
|
|
if ( title ) {
|
2024-10-12 16:10:56 +00:00
|
|
|
link.href = title.getUrl();
|
2024-09-14 16:59:28 +00:00
|
|
|
link.title = title.toText();
|
|
|
|
}
|
|
|
|
if ( link.href ) {
|
|
|
|
const textBeforeLink = textNode.data.slice( 0, Math.max( 0, start ) ),
|
|
|
|
textAfterLink = textNode.data.slice( Math.max( 0, start + linkText.length ) );
|
2024-06-21 18:29:04 +00:00
|
|
|
|
2024-09-14 16:59:28 +00:00
|
|
|
textNode.data = textAfterLink;
|
|
|
|
link.appendChild( document.createTextNode( linkText ) );
|
|
|
|
node.insertBefore( link, textNode );
|
|
|
|
const beforeTextNode = node.insertBefore( document.createTextNode( textBeforeLink ), link );
|
|
|
|
processComment( beforeTextNode, node );
|
|
|
|
processComment( textNode, node );
|
|
|
|
}
|
2024-06-21 18:29:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const commentClasses = [ 'c', 'c1', 'cm' ];
|
2024-10-12 16:10:56 +00:00
|
|
|
|
|
|
|
mw.hook( 'wikipage.content' ).add( ( $content ) => {
|
|
|
|
$content.find( '.mw-highlight' ).get().forEach( ( codeBlock ) => {
|
|
|
|
commentClasses.forEach( ( commentClass ) => {
|
|
|
|
Array.from( codeBlock.getElementsByClassName( commentClass ) ).forEach( ( node ) => {
|
|
|
|
processComment( node.firstChild, node );
|
|
|
|
} );
|
2024-09-14 16:59:28 +00:00
|
|
|
} );
|
2024-06-21 18:29:04 +00:00
|
|
|
} );
|
|
|
|
|
2024-10-12 16:10:56 +00:00
|
|
|
} );
|
2024-06-21 18:29:04 +00:00
|
|
|
} );
|