2020-10-13 01:19:35 +02:00
|
|
|
import 'packs/public-path';
|
2022-10-11 11:39:52 +02:00
|
|
|
import loadPolyfills from 'flavours/glitch/load_polyfills';
|
2022-10-11 11:23:59 +02:00
|
|
|
import ready from 'flavours/glitch/ready';
|
2022-10-11 11:39:52 +02:00
|
|
|
import loadKeyboardExtensions from 'flavours/glitch/load_keyboard_extensions';
|
2022-06-28 09:42:13 +02:00
|
|
|
import 'cocoon-js-vanilla';
|
2019-09-30 16:38:12 +02:00
|
|
|
|
|
|
|
function main() {
|
2020-03-22 16:10:44 +01:00
|
|
|
const { delegate } = require('@rails/ujs');
|
2019-09-30 16:38:12 +02:00
|
|
|
|
2022-10-30 18:15:28 +01:00
|
|
|
const toggleSidebar = () => {
|
|
|
|
const sidebar = document.querySelector('.sidebar ul');
|
|
|
|
const toggleButton = document.querySelector('.sidebar__toggle__icon');
|
|
|
|
|
|
|
|
if (sidebar.classList.contains('visible')) {
|
|
|
|
document.body.style.overflow = null;
|
|
|
|
toggleButton.setAttribute('aria-expanded', false);
|
|
|
|
} else {
|
|
|
|
document.body.style.overflow = 'hidden';
|
|
|
|
toggleButton.setAttribute('aria-expanded', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleButton.classList.toggle('active');
|
|
|
|
sidebar.classList.toggle('visible');
|
|
|
|
};
|
|
|
|
|
2019-09-30 16:38:12 +02:00
|
|
|
delegate(document, '.sidebar__toggle__icon', 'click', () => {
|
2022-10-30 18:15:28 +01:00
|
|
|
toggleSidebar();
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '.sidebar__toggle__icon', 'keydown', e => {
|
|
|
|
if (e.key === ' ' || e.key === 'Enter') {
|
|
|
|
e.preventDefault();
|
|
|
|
toggleSidebar();
|
|
|
|
}
|
2019-09-30 16:38:12 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-04 13:03:09 +01:00
|
|
|
loadPolyfills()
|
|
|
|
.then(main)
|
|
|
|
.then(loadKeyboardExtensions)
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|