mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 06:47:16 +00:00
83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
const SCROLL_DOWN_CLASS = 'citizen-scroll--down';
|
|
const SCROLL_UP_CLASS = 'citizen-scroll--up';
|
|
const STICKY_CLASS = 'citizen-page-header--sticky';
|
|
const { initDirectionObserver, initIntersectionObserver } = require( './scrollObserver.js' );
|
|
|
|
/**
|
|
* Observes the scroll direction and adds/removes corresponding classes to the body element.
|
|
*
|
|
* @return {void}
|
|
*/
|
|
function observeScrollDirection() {
|
|
const toggleScrollClass = ( removeClass, addClass ) => () => {
|
|
window.requestAnimationFrame( () => {
|
|
document.body.classList.remove( removeClass );
|
|
document.body.classList.add( addClass );
|
|
} );
|
|
};
|
|
const addScrollDownClass = toggleScrollClass( SCROLL_UP_CLASS, SCROLL_DOWN_CLASS );
|
|
const addScrollUpClass = toggleScrollClass( SCROLL_DOWN_CLASS, SCROLL_UP_CLASS );
|
|
|
|
initDirectionObserver( addScrollDownClass, addScrollUpClass, 50 );
|
|
}
|
|
|
|
/**
|
|
* Initializes the sticky header functionality for Citizen
|
|
*
|
|
* @return {void}
|
|
*/
|
|
function init() {
|
|
observeScrollDirection();
|
|
|
|
const header = document.querySelector( '.citizen-page-header' );
|
|
const sentinel = document.createElement( 'div' );
|
|
sentinel.id = 'citizen-page-header-sticky-sentinel';
|
|
header.insertAdjacentElement( 'afterend', sentinel );
|
|
|
|
const shouldStickyHeader = getComputedStyle( sentinel ).getPropertyValue( 'display' ) !== 'none';
|
|
if ( !shouldStickyHeader ) {
|
|
return;
|
|
}
|
|
|
|
const placeholder = document.createElement( 'div' );
|
|
placeholder.id = 'citizen-page-header-sticky-placeholder';
|
|
header.insertAdjacentElement( 'afterend', placeholder );
|
|
|
|
let staticHeaderHeight = header.getBoundingClientRect().height;
|
|
|
|
const toggleStickyHeader = ( isSticky ) => {
|
|
window.requestAnimationFrame( () => {
|
|
document.body.classList.toggle( STICKY_CLASS, isSticky );
|
|
placeholder.style.height = `${ staticHeaderHeight - header.getBoundingClientRect().height }px`;
|
|
} );
|
|
};
|
|
|
|
const onResize = () => {
|
|
toggleStickyHeader( false );
|
|
};
|
|
|
|
const onResizeEnd = mw.util.debounce( () => {
|
|
// Refresh static header height after resize
|
|
staticHeaderHeight = header.getBoundingClientRect().height;
|
|
toggleStickyHeader( true );
|
|
}, 250 );
|
|
|
|
const observer = initIntersectionObserver(
|
|
() => {
|
|
toggleStickyHeader( true );
|
|
window.addEventListener( 'resize', onResize );
|
|
window.addEventListener( 'resize', onResizeEnd );
|
|
},
|
|
() => {
|
|
toggleStickyHeader( false );
|
|
window.removeEventListener( 'resize', onResize );
|
|
window.removeEventListener( 'resize', onResizeEnd );
|
|
}
|
|
);
|
|
observer.observe( sentinel );
|
|
}
|
|
|
|
module.exports = {
|
|
init: init
|
|
};
|