mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 10:38:19 +00:00
dc3ca54d43
Check commit and GitHub actions for more details
93 lines
2.2 KiB
JavaScript
93 lines
2.2 KiB
JavaScript
const ACTIVE_SECTION_CLASS = 'citizen-toc__listItem--active';
|
|
|
|
let /** @type {HTMLElement | undefined} */ activeSection;
|
|
|
|
/**
|
|
* @param {string} id
|
|
*/
|
|
function changeActiveSection( id ) {
|
|
const toc = document.getElementById( 'mw-panel-toc' );
|
|
|
|
const getLink = ( hash ) => {
|
|
const
|
|
prefix = 'a[href="#',
|
|
suffix = '"]';
|
|
|
|
let el = toc.querySelector( prefix + hash + suffix );
|
|
|
|
if ( el === null ) {
|
|
// Sometimes the href attribute is encoded
|
|
el = toc.querySelector( prefix + encodeURIComponent( hash ) + suffix );
|
|
}
|
|
|
|
return el;
|
|
};
|
|
|
|
const link = getLink( id );
|
|
|
|
if ( activeSection ) {
|
|
activeSection.classList.remove( ACTIVE_SECTION_CLASS );
|
|
activeSection = undefined;
|
|
}
|
|
|
|
if ( link ) {
|
|
activeSection = link.parentNode;
|
|
activeSection.classList.add( ACTIVE_SECTION_CLASS );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Toggle active HTML class to items in table of content based on user viewport.
|
|
* Based on Vector
|
|
*
|
|
* @param {HTMLElement} bodyContent
|
|
* @return {void}
|
|
*/
|
|
function init( bodyContent ) {
|
|
if ( !document.getElementById( 'mw-panel-toc' ) ) {
|
|
return;
|
|
}
|
|
|
|
const getElements = () => {
|
|
/* T13555 */
|
|
return bodyContent.querySelectorAll( '.mw-headline' ).length > 0 ? bodyContent.querySelectorAll( '.mw-headline' ) :
|
|
bodyContent.querySelectorAll( '.mw-heading' );
|
|
};
|
|
|
|
// We use scroll-padding-top to handle scrolling with fixed header
|
|
// It is better to respect that so it is consistent
|
|
const getTopMargin = () => {
|
|
return Number(
|
|
window.getComputedStyle( document.documentElement )
|
|
.getPropertyValue( 'scroll-padding-top' )
|
|
.slice( 0, -2 )
|
|
) + 20;
|
|
};
|
|
|
|
const headlines = getElements();
|
|
|
|
// Do not continue if there are no headlines
|
|
// TODO: Need to revamp the selector so that it works better with MW 1.40,
|
|
// currently MW 1.40 has ToC on non-content pages as well
|
|
if ( !headlines ) {
|
|
return;
|
|
}
|
|
|
|
const initSectionObserver = require( './sectionObserver.js' ).init;
|
|
|
|
const sectionObserver = initSectionObserver( {
|
|
elements: headlines,
|
|
topMargin: getTopMargin(),
|
|
onIntersection: ( section ) => {
|
|
changeActiveSection( section.id );
|
|
}
|
|
} );
|
|
|
|
// TODO: Pause section observer on ToC link click
|
|
sectionObserver.resume();
|
|
}
|
|
|
|
module.exports = {
|
|
init: init
|
|
};
|