55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
function getById(className) {
|
|
return document.getElementById(className);
|
|
}
|
|
function getClassList(className) {
|
|
return getById(className).classList;
|
|
}
|
|
|
|
function blur(event, className) {
|
|
setTimeout(() => {
|
|
if (document.activeElement !== getById(className)) {
|
|
getClassList('crayons-header__menu').remove('showing');
|
|
}
|
|
}, 10);
|
|
}
|
|
|
|
function removeShowingMenu() {
|
|
getClassList('crayons-header__menu').remove('showing');
|
|
setTimeout(() => {
|
|
getClassList('crayons-header__menu').remove('showing');
|
|
}, 5);
|
|
setTimeout(() => {
|
|
getClassList('crayons-header__menu').remove('showing');
|
|
}, 150);
|
|
}
|
|
|
|
function toggleMenu() {
|
|
getClassList('crayons-header__menu').toggle('showing');
|
|
}
|
|
|
|
function initializeTouchDevice() {
|
|
var isTouchDevice = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|DEV-Native-ios/i.test(
|
|
navigator.userAgent,
|
|
);
|
|
if (navigator.userAgent === 'DEV-Native-ios') {
|
|
document.body.classList.add('dev-ios-native-body');
|
|
}
|
|
setTimeout(() => {
|
|
removeShowingMenu();
|
|
if (isTouchDevice) {
|
|
// Use a named function instead of anonymous so duplicate event handlers are discarded
|
|
getById('navigation-butt').addEventListener('click', toggleMenu);
|
|
} else {
|
|
getClassList('crayons-header__menu').add('desktop');
|
|
getById('navigation-butt').addEventListener('focus', (e) =>
|
|
getClassList('crayons-header__menu').add('showing'),
|
|
);
|
|
getById('last-nav-link').addEventListener('blur', (e) =>
|
|
blur(e, 'second-last-nav-link'),
|
|
);
|
|
getById('navigation-butt').addEventListener('blur', (e) =>
|
|
blur(e, 'first-nav-link'),
|
|
);
|
|
}
|
|
}, 10);
|
|
}
|