2022-10-19 20:43:40 +00:00
|
|
|
const PINNED_HEADER_CLASS = 'vector-pinnable-header-pinned';
|
|
|
|
const UNPINNED_HEADER_CLASS = 'vector-pinnable-header-unpinned';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {HTMLElement} header
|
|
|
|
*/
|
|
|
|
function bindPinnableToggleButtons( header ) {
|
|
|
|
const name = header.dataset.name;
|
|
|
|
if ( !name ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const toggleButtons = header.querySelectorAll( '.vector-pinnable-header-toggle-button' );
|
|
|
|
const pinnableElementId = header.dataset.pinnableElementId;
|
|
|
|
const pinnedContainerId = header.dataset.pinnedContainerId;
|
|
|
|
const unpinnedContainerId = header.dataset.unpinnedContainerId;
|
|
|
|
|
|
|
|
toggleButtons.forEach( function ( button ) {
|
|
|
|
button.addEventListener( 'click', () => {
|
|
|
|
// Toggle body classes, assumes default pinned classes are initialized serverside
|
|
|
|
document.body.classList.toggle( `${name}-pinned` );
|
|
|
|
document.body.classList.toggle( `${name}-unpinned` );
|
|
|
|
|
|
|
|
// Toggle pinned class
|
|
|
|
header.classList.toggle( PINNED_HEADER_CLASS );
|
|
|
|
header.classList.toggle( UNPINNED_HEADER_CLASS );
|
|
|
|
|
|
|
|
// Optional functionality of moving the pinnable element in the DOM
|
|
|
|
// to different containers based on it's pinned status
|
|
|
|
if ( pinnableElementId && pinnedContainerId && unpinnedContainerId ) {
|
2022-11-21 22:16:07 +00:00
|
|
|
const pinned = document.body.classList.contains( `${name}-pinned` );
|
|
|
|
const newContainerId = pinned ? pinnedContainerId : unpinnedContainerId;
|
|
|
|
movePinnableElement( pinnableElementId, newContainerId );
|
2022-10-19 20:43:40 +00:00
|
|
|
}
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} pinnableElementId
|
2022-11-21 22:16:07 +00:00
|
|
|
* @param {string} newContainerId
|
2022-10-19 20:43:40 +00:00
|
|
|
*/
|
2022-11-21 22:16:07 +00:00
|
|
|
function movePinnableElement( pinnableElementId, newContainerId ) {
|
2022-10-19 20:43:40 +00:00
|
|
|
const pinnableElem = document.getElementById( pinnableElementId );
|
2022-11-21 22:16:07 +00:00
|
|
|
const newContainer = document.getElementById( newContainerId );
|
2022-10-19 20:43:40 +00:00
|
|
|
const currContainer = /** @type {HTMLElement} */ ( pinnableElem && pinnableElem.parentElement );
|
|
|
|
|
2022-11-21 22:16:07 +00:00
|
|
|
if ( !pinnableElem || !newContainer || !currContainer ) {
|
2022-10-19 20:43:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Avoid moving element if unnecessary
|
2022-11-21 22:16:07 +00:00
|
|
|
if ( currContainer.id !== newContainerId ) {
|
2022-10-19 20:43:40 +00:00
|
|
|
newContainer.insertAdjacentElement( 'beforeend', pinnableElem );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-28 21:08:40 +00:00
|
|
|
function initPinnableElement() {
|
2022-10-19 20:43:40 +00:00
|
|
|
const pinnableHeader = /** @type {NodeListOf<HTMLElement>} */ ( document.querySelectorAll( '.vector-pinnable-header' ) );
|
|
|
|
pinnableHeader.forEach( bindPinnableToggleButtons );
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
2022-11-28 21:08:40 +00:00
|
|
|
initPinnableElement,
|
2022-10-19 20:43:40 +00:00
|
|
|
movePinnableElement,
|
|
|
|
PINNED_HEADER_CLASS,
|
|
|
|
UNPINNED_HEADER_CLASS
|
|
|
|
};
|