mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 15:53:46 +00:00
d834329e15
Move A/B test code to AB.js Consolidate the show/hide code spread across scrollObserver and stickyHeader by adding a show and hide function. This is needed to fix T296680 Change-Id: Ia2e0c50278df0dfc1600610f281be20f4cc755c2
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
const
|
|
SCROLL_HOOK = 'vector.page_title_scroll',
|
|
SCROLL_CONTEXT_ABOVE = 'scrolled-above-page-title',
|
|
SCROLL_CONTEXT_BELOW = 'scrolled-below-page-title',
|
|
SCROLL_ACTION = 'scroll-to-top';
|
|
|
|
/**
|
|
* Fire a hook to be captured by WikimediaEvents for scroll event logging.
|
|
*
|
|
* @param {string} direction the scroll direction
|
|
*/
|
|
function fireScrollHook( direction ) {
|
|
if ( direction === 'down' ) {
|
|
// @ts-ignore
|
|
mw.hook( SCROLL_HOOK ).fire( { context: SCROLL_CONTEXT_BELOW } );
|
|
} else {
|
|
// @ts-ignore
|
|
mw.hook( SCROLL_HOOK ).fire( {
|
|
context: SCROLL_CONTEXT_ABOVE,
|
|
action: SCROLL_ACTION
|
|
} );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create an observer for showing/hiding feature and for firing scroll event hooks.
|
|
*
|
|
* @param {Function} show functionality for when feature is visible
|
|
* @param {Function} hide functionality for when feature is hidden
|
|
* @return {IntersectionObserver}
|
|
*/
|
|
function initScrollObserver( show, hide ) {
|
|
/* eslint-disable-next-line compat/compat */
|
|
return new IntersectionObserver( function ( entries ) {
|
|
if ( !entries[ 0 ].isIntersecting && entries[ 0 ].boundingClientRect.top < 0 ) {
|
|
// Viewport has crossed the bottom edge of the target element.
|
|
show();
|
|
} else {
|
|
// Viewport is above the bottom edge of the target element.
|
|
hide();
|
|
}
|
|
} );
|
|
}
|
|
|
|
module.exports = {
|
|
initScrollObserver,
|
|
fireScrollHook
|
|
};
|