mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 10:38:19 +00:00
a1139e7797
Happened on the recent changes table. While the added line in TableNowrapClasses also fixes this, I've left it in as a safeguard.
130 lines
3.4 KiB
JavaScript
130 lines
3.4 KiB
JavaScript
const config = require( './config.json' );
|
|
|
|
/**
|
|
* Set up scroll affordance for an overflowed element
|
|
* TODO: Move this out of tables when this is used by more stuff
|
|
*
|
|
* @param {HTMLElement} element
|
|
* @return {void}
|
|
*/
|
|
function setupOverflowState( element ) {
|
|
const initState = () => {
|
|
const updateState = () => {
|
|
const
|
|
containerWidth = element.parentNode.offsetWidth,
|
|
contentWidth = element.scrollWidth;
|
|
|
|
// Break if no horizontal overflow
|
|
if ( contentWidth <= containerWidth ) {
|
|
element.parentNode.classList.remove( 'citizen-overflow--left' );
|
|
element.parentNode.classList.remove( 'citizen-overflow--right' );
|
|
return;
|
|
}
|
|
|
|
const currentPosition = element.parentNode.scrollLeft;
|
|
|
|
if ( currentPosition <= 0 ) {
|
|
// At the start
|
|
element.parentNode.classList.remove( 'citizen-overflow--left' );
|
|
element.parentNode.classList.add( 'citizen-overflow--right' );
|
|
} else if ( currentPosition + containerWidth >= contentWidth ) {
|
|
// At the end
|
|
element.parentNode.classList.remove( 'citizen-overflow--right' );
|
|
element.parentNode.classList.add( 'citizen-overflow--left' );
|
|
} else {
|
|
// At the middle
|
|
element.parentNode.classList.add( 'citizen-overflow--left' );
|
|
element.parentNode.classList.add( 'citizen-overflow--right' );
|
|
}
|
|
};
|
|
|
|
if ( element.parentNode === null ) {
|
|
return;
|
|
}
|
|
|
|
updateState();
|
|
|
|
// Update state on element scroll
|
|
element.parentNode.addEventListener( 'scroll', () => {
|
|
window.requestAnimationFrame( updateState );
|
|
} );
|
|
};
|
|
|
|
initState();
|
|
|
|
// Listen for window resize
|
|
if ( window.ResizeObserver ) {
|
|
const overflowResizeObserver = new ResizeObserver( mw.util.debounce( 250, initState ) );
|
|
overflowResizeObserver.observe( element );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Wrap table in div container to make it scrollable without breaking layout
|
|
*
|
|
* @param {HTMLTableElement} table
|
|
* @return {void}
|
|
*/
|
|
function wrapTable( table ) {
|
|
// Load ignored classes from config
|
|
const ignoredClasses = config.wgCitizenTableNowrapClasses;
|
|
|
|
// Check table and parent for ignored classes
|
|
const hasIgnoredClass = ( ignoreClass ) => {
|
|
return table.classList.contains( ignoreClass ) ||
|
|
table.parentNode.classList.contains( ignoreClass );
|
|
};
|
|
|
|
// Return if table has one of the ignored classes
|
|
if ( ignoredClasses.some( hasIgnoredClass ) ) {
|
|
return;
|
|
}
|
|
|
|
const wrapper = document.createElement( 'div' );
|
|
|
|
// Some classes should be inherited from the table
|
|
// For example, float helper classes like floatleft and floatright
|
|
const inheritTableClass = () => {
|
|
// TODO: Make this a config flag
|
|
const inheritedClasses = [
|
|
'floatleft',
|
|
'floatright'
|
|
];
|
|
|
|
inheritedClasses.forEach( ( inheritedClass ) => {
|
|
if ( table.classList.contains( inheritedClass ) ) {
|
|
wrapper.classList.add( inheritedClass );
|
|
table.classList.remove( inheritedClass );
|
|
}
|
|
} );
|
|
};
|
|
|
|
wrapper.classList.add( 'citizen-table-wrapper' );
|
|
inheritTableClass();
|
|
table.parentNode.insertBefore( wrapper, table );
|
|
wrapper.appendChild( table );
|
|
|
|
setupOverflowState( table );
|
|
}
|
|
|
|
/**
|
|
* @param {HTMLElement} bodyContent
|
|
* @return {void}
|
|
*/
|
|
function init( bodyContent ) {
|
|
// Don't touch nested tables since we only need to wrap the outer layer
|
|
if ( !bodyContent.querySelector( 'table:not( table table )' ) ) {
|
|
return;
|
|
}
|
|
|
|
const tables = bodyContent.querySelectorAll( 'table:not( table table )' );
|
|
|
|
tables.forEach( ( table ) => {
|
|
wrapTable( table );
|
|
} );
|
|
}
|
|
|
|
module.exports = {
|
|
init: init
|
|
};
|