summaryrefslogtreecommitdiffstats
path: root/assets/js/hamburger.js
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-10 11:29:00 +0200
committerDanilo M. <danix@danix.xyz>2026-04-10 11:29:00 +0200
commitc42150058196f5affad5c6c590e99dd2fc7321c3 (patch)
treecb0a7ad297128a43d32111e403959491573b6ace /assets/js/hamburger.js
parentd51e4ef7dcd8609cd008a803f9d51674ac3d3ed2 (diff)
downloaddanixxyz-theme-c42150058196f5affad5c6c590e99dd2fc7321c3.tar.gz
danixxyz-theme-c42150058196f5affad5c6c590e99dd2fc7321c3.zip
feat: complete Hugo theme implementation from mockups
Transform all production-ready mockup files into a fully functional Hugo theme with all design patterns, components, and interactivity. Implements the complete plan: token alignment, global shell, homepage, articles section, single article views, photo gallery, static pages, and 404 page. Changes: - Phase 0: Token alignment (--color-* → --type-*, add spacing/z-index/timing scales) - Phase 1a: Global shell (baseof.html, hamburger menu, theme toggle, matrix rain) - Phase 1b: Homepage (hero layout, glitch/typing/scroll-reveal effects) - Phase 1c: Articles section (timeline layout, filter system, featured cards) - Phase 1d: Single article (meta bar, share sidebar, footer nav, progress bar) - Phase 1e: Photo gallery (lightbox, grid layout, shortcode updates) - Phase 1f: Static pages (about/contact page layout) - Phase 1g: 404 page (standalone HTML, quote randomization, recent articles) New files: - 6 CSS components: hamburger, article-hero, share-sidebar, timeline, lightbox, 404 - 8 JS modules: hamburger, glitch, typing, scroll-reveal, share-sidebar, lightbox, 404, photo-utils - 6 template partials: article-single, featured-card, photo-article, share-sidebar, static-page, timeline-item - 1 layout: 404.html (standalone) Updated: - All CSS variables with comprehensive token system - All JS modules integrated into main.js - All shortcodes (gallery, gal-img) for lightbox compatibility - All layout files (baseof, home, section, page) with new dispatching logic Verified: Hugo build succeeds with 21 pages, no errors. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Diffstat (limited to 'assets/js/hamburger.js')
-rw-r--r--assets/js/hamburger.js83
1 files changed, 83 insertions, 0 deletions
diff --git a/assets/js/hamburger.js b/assets/js/hamburger.js
new file mode 100644
index 0000000..1d27633
--- /dev/null
+++ b/assets/js/hamburger.js
@@ -0,0 +1,83 @@
+/**
+ * hamburger.js
+ * Hamburger menu toggle with focus trap and keyboard navigation
+ */
+
+export function initHamburger() {
+ 'use strict';
+
+ const hamburgerBtn = document.getElementById('hamburger-btn');
+ const menuOverlay = document.getElementById('menu-overlay');
+ const menuLinks = document.querySelectorAll('.menu-links a');
+ const themeSwitch = document.getElementById('theme-switch');
+
+ if (!hamburgerBtn || !menuOverlay) return;
+
+ // Toggle menu on hamburger click
+ hamburgerBtn.addEventListener('click', () => {
+ const isOpen = hamburgerBtn.getAttribute('aria-expanded') === 'true';
+ setMenuOpen(!isOpen);
+ });
+
+ // Close menu on overlay click
+ menuOverlay.addEventListener('click', (e) => {
+ if (e.target === menuOverlay) {
+ setMenuOpen(false);
+ }
+ });
+
+ // Close menu on menu link click
+ menuLinks.forEach((link) => {
+ link.addEventListener('click', () => {
+ setMenuOpen(false);
+ });
+ });
+
+ // Close menu on Escape key
+ document.addEventListener('keydown', (e) => {
+ if (e.key === 'Escape') {
+ setMenuOpen(false);
+ }
+ });
+
+ // Focus trap: Tab through menu items and theme switch
+ menuOverlay.addEventListener('keydown', (e) => {
+ if (e.key !== 'Tab') return;
+
+ const focusableElements = Array.from(
+ menuOverlay.querySelectorAll('a, button')
+ );
+ const firstElement = focusableElements[0];
+ const lastElement = focusableElements[focusableElements.length - 1];
+
+ if (e.shiftKey) {
+ if (document.activeElement === firstElement) {
+ lastElement.focus();
+ e.preventDefault();
+ }
+ } else {
+ if (document.activeElement === lastElement) {
+ firstElement.focus();
+ e.preventDefault();
+ }
+ }
+ });
+
+ function setMenuOpen(isOpen) {
+ hamburgerBtn.setAttribute('aria-expanded', isOpen);
+ hamburgerBtn.classList.toggle('active', isOpen);
+ menuOverlay.classList.toggle('active', isOpen);
+
+ if (isOpen) {
+ document.body.style.overflow = 'hidden';
+ // Focus the first menu link
+ const firstLink = menuLinks[0];
+ if (firstLink) {
+ setTimeout(() => firstLink.focus(), 100);
+ }
+ } else {
+ document.body.style.overflow = '';
+ hamburgerBtn.focus();
+ }
+ }
+}