Bundled Themes: Import Twenty Twenty-One, the new default theme for WordPress 5.6.
Welcome to the bundled themes family!
Twenty Twenty-One is a blank canvas for your ideas, making the block editor your best brush.
Theme development to this point has taken place on GitHub. See: https://github.com/WordPress/twentytwentyone/.
Props poena, melchoyce, luminuu, elmastudio, bethsoderberg, williampatton, aristath, jffng, kjellr, jeffikus, audrasjb, fabiankaegy, mukesh27, dingo_d, kellylawrence, acosmin, whyisjake, metodiew, ryelle, nielslange, littlebigthing, mahesh901122, zebulan, kishanjasani, lukecavanagh, scruffian, abhijitrakas, utz119, sudoshreyansh, kau-boy, justinahinon, joostdevalk, bduclos, hareesh-pillai, mager19, rolfsiebers, webmigrates, sresok, guidooffermans, francina, marybaum, hareshlive, navanathbhosale, afercia, richtabor, joyously, sarahricker, nrqsnchz, glauberglauber, sabernhardt, kraftbj, ItsJonQ, joen, CTMartin0, decrecementofeliz, bhautikvirani.
See #51526.
Built from https://develop.svn.wordpress.org/trunk@49216
git-svn-id: http://core.svn.wordpress.org/trunk@48978 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-20 03:14:10 +02:00
|
|
|
/**
|
|
|
|
* File primary-navigation.js.
|
|
|
|
*
|
|
|
|
* Required to open and close the mobile navigation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggle an attribute's value
|
|
|
|
*
|
|
|
|
* @param {Element} el - The element.
|
|
|
|
* @param {boolean} withListeners - Whether we want to add/remove listeners or not.
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
|
|
|
function twentytwentyoneToggleAriaExpanded( el, withListeners ) {
|
|
|
|
if ( 'true' !== el.getAttribute( 'aria-expanded' ) ) {
|
|
|
|
el.setAttribute( 'aria-expanded', 'true' );
|
|
|
|
if ( withListeners ) {
|
|
|
|
document.addEventListener( 'click', twentytwentyoneCollapseMenuOnClickOutside );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
el.setAttribute( 'aria-expanded', 'false' );
|
|
|
|
if ( withListeners ) {
|
|
|
|
document.removeEventListener( 'click', twentytwentyoneCollapseMenuOnClickOutside );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function twentytwentyoneCollapseMenuOnClickOutside( event ) {
|
|
|
|
if ( ! document.getElementById( 'site-navigation' ).contains( event.target ) ) {
|
|
|
|
document.getElementById( 'site-navigation' ).querySelectorAll( '.sub-menu-toggle' ).forEach( function( button ) {
|
|
|
|
button.setAttribute( 'aria-expanded', 'false' );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle clicks on submenu toggles.
|
|
|
|
*
|
|
|
|
* @param {Element} el - The element.
|
|
|
|
*/
|
2020-10-20 20:34:06 +02:00
|
|
|
function twentytwentyoneExpandSubMenu( el ) { // jshint ignore:line
|
Bundled Themes: Import Twenty Twenty-One, the new default theme for WordPress 5.6.
Welcome to the bundled themes family!
Twenty Twenty-One is a blank canvas for your ideas, making the block editor your best brush.
Theme development to this point has taken place on GitHub. See: https://github.com/WordPress/twentytwentyone/.
Props poena, melchoyce, luminuu, elmastudio, bethsoderberg, williampatton, aristath, jffng, kjellr, jeffikus, audrasjb, fabiankaegy, mukesh27, dingo_d, kellylawrence, acosmin, whyisjake, metodiew, ryelle, nielslange, littlebigthing, mahesh901122, zebulan, kishanjasani, lukecavanagh, scruffian, abhijitrakas, utz119, sudoshreyansh, kau-boy, justinahinon, joostdevalk, bduclos, hareesh-pillai, mager19, rolfsiebers, webmigrates, sresok, guidooffermans, francina, marybaum, hareshlive, navanathbhosale, afercia, richtabor, joyously, sarahricker, nrqsnchz, glauberglauber, sabernhardt, kraftbj, ItsJonQ, joen, CTMartin0, decrecementofeliz, bhautikvirani.
See #51526.
Built from https://develop.svn.wordpress.org/trunk@49216
git-svn-id: http://core.svn.wordpress.org/trunk@48978 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-20 03:14:10 +02:00
|
|
|
// Close other expanded items.
|
|
|
|
el.closest( 'nav' ).querySelectorAll( '.sub-menu-toggle' ).forEach( function( button ) {
|
|
|
|
if ( button !== el ) {
|
|
|
|
button.setAttribute( 'aria-expanded', 'false' );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
// Toggle aria-expanded on the button.
|
|
|
|
twentytwentyoneToggleAriaExpanded( el, true );
|
|
|
|
|
|
|
|
// On tab-away collapse the menu.
|
|
|
|
el.parentNode.querySelectorAll( 'ul > li:last-child > a' ).forEach( function( linkEl ) {
|
|
|
|
linkEl.addEventListener( 'blur', function( event ) {
|
|
|
|
if ( ! el.parentNode.contains( event.relatedTarget ) ) {
|
|
|
|
el.setAttribute( 'aria-expanded', 'false' );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
( function() {
|
|
|
|
/**
|
|
|
|
* Menu Toggle Behaviors
|
|
|
|
*
|
|
|
|
* @param {string} id - The ID.
|
|
|
|
*/
|
|
|
|
var navMenu = function( id ) {
|
|
|
|
var wrapper = document.body, // this is the element to which a CSS class is added when a mobile nav menu is open
|
|
|
|
mobileButton = document.getElementById( id + '-mobile-menu' );
|
|
|
|
|
|
|
|
if ( mobileButton ) {
|
|
|
|
mobileButton.onclick = function() {
|
|
|
|
wrapper.classList.toggle( id + '-navigation-open' );
|
|
|
|
wrapper.classList.toggle( 'lock-scrolling' );
|
|
|
|
twentytwentyoneToggleAriaExpanded( mobileButton );
|
|
|
|
mobileButton.focus();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Trap keyboard navigation in the menu modal.
|
|
|
|
* Adapted from TwentyTwenty
|
|
|
|
*/
|
|
|
|
document.addEventListener( 'keydown', function( event ) {
|
|
|
|
var modal, elements, selectors, lastEl, firstEl, activeEl, tabKey, shiftKey, escKey;
|
|
|
|
if ( ! wrapper.classList.contains( id + '-navigation-open' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
modal = document.querySelector( '.' + id + '-navigation' );
|
|
|
|
selectors = 'input, a, button';
|
|
|
|
elements = modal.querySelectorAll( selectors );
|
|
|
|
elements = Array.prototype.slice.call( elements );
|
|
|
|
tabKey = event.keyCode === 9;
|
|
|
|
shiftKey = event.shiftKey;
|
|
|
|
escKey = event.keyCode === 27;
|
|
|
|
activeEl = document.activeElement;
|
|
|
|
lastEl = elements[ elements.length - 1 ];
|
|
|
|
firstEl = elements[0];
|
|
|
|
|
|
|
|
if ( escKey ) {
|
|
|
|
event.preventDefault();
|
|
|
|
wrapper.classList.remove( id + '-navigation-open', 'lock-scrolling' );
|
|
|
|
twentytwentyoneToggleAriaExpanded( mobileButton );
|
|
|
|
mobileButton.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! shiftKey && tabKey && lastEl === activeEl ) {
|
|
|
|
event.preventDefault();
|
|
|
|
firstEl.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( shiftKey && tabKey && firstEl === activeEl ) {
|
|
|
|
event.preventDefault();
|
|
|
|
lastEl.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there are no elements in the menu, don't move the focus
|
|
|
|
if ( tabKey && firstEl === lastEl ) {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
document.getElementById( 'site-navigation' ).querySelectorAll( '.menu-wrapper > .menu-item-has-children' ).forEach( function( li ) {
|
|
|
|
li.addEventListener( 'mouseenter', function() {
|
2020-10-27 03:00:07 +01:00
|
|
|
this.querySelector( '.sub-menu-toggle' ).setAttribute( 'aria-expanded', 'true' );
|
Bundled Themes: Import Twenty Twenty-One, the new default theme for WordPress 5.6.
Welcome to the bundled themes family!
Twenty Twenty-One is a blank canvas for your ideas, making the block editor your best brush.
Theme development to this point has taken place on GitHub. See: https://github.com/WordPress/twentytwentyone/.
Props poena, melchoyce, luminuu, elmastudio, bethsoderberg, williampatton, aristath, jffng, kjellr, jeffikus, audrasjb, fabiankaegy, mukesh27, dingo_d, kellylawrence, acosmin, whyisjake, metodiew, ryelle, nielslange, littlebigthing, mahesh901122, zebulan, kishanjasani, lukecavanagh, scruffian, abhijitrakas, utz119, sudoshreyansh, kau-boy, justinahinon, joostdevalk, bduclos, hareesh-pillai, mager19, rolfsiebers, webmigrates, sresok, guidooffermans, francina, marybaum, hareshlive, navanathbhosale, afercia, richtabor, joyously, sarahricker, nrqsnchz, glauberglauber, sabernhardt, kraftbj, ItsJonQ, joen, CTMartin0, decrecementofeliz, bhautikvirani.
See #51526.
Built from https://develop.svn.wordpress.org/trunk@49216
git-svn-id: http://core.svn.wordpress.org/trunk@48978 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-20 03:14:10 +02:00
|
|
|
} );
|
|
|
|
li.addEventListener( 'mouseleave', function() {
|
2020-10-27 03:00:07 +01:00
|
|
|
this.querySelector( '.sub-menu-toggle' ).setAttribute( 'aria-expanded', 'false' );
|
Bundled Themes: Import Twenty Twenty-One, the new default theme for WordPress 5.6.
Welcome to the bundled themes family!
Twenty Twenty-One is a blank canvas for your ideas, making the block editor your best brush.
Theme development to this point has taken place on GitHub. See: https://github.com/WordPress/twentytwentyone/.
Props poena, melchoyce, luminuu, elmastudio, bethsoderberg, williampatton, aristath, jffng, kjellr, jeffikus, audrasjb, fabiankaegy, mukesh27, dingo_d, kellylawrence, acosmin, whyisjake, metodiew, ryelle, nielslange, littlebigthing, mahesh901122, zebulan, kishanjasani, lukecavanagh, scruffian, abhijitrakas, utz119, sudoshreyansh, kau-boy, justinahinon, joostdevalk, bduclos, hareesh-pillai, mager19, rolfsiebers, webmigrates, sresok, guidooffermans, francina, marybaum, hareshlive, navanathbhosale, afercia, richtabor, joyously, sarahricker, nrqsnchz, glauberglauber, sabernhardt, kraftbj, ItsJonQ, joen, CTMartin0, decrecementofeliz, bhautikvirani.
See #51526.
Built from https://develop.svn.wordpress.org/trunk@49216
git-svn-id: http://core.svn.wordpress.org/trunk@48978 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-20 03:14:10 +02:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
};
|
|
|
|
|
|
|
|
window.addEventListener( 'load', function() {
|
|
|
|
new navMenu( 'primary' );
|
|
|
|
} );
|
|
|
|
}() );
|