Skip to content

Commit

Permalink
refactor: extract Header component
Browse files Browse the repository at this point in the history
  • Loading branch information
nix6839 committed Sep 15, 2023
1 parent ce250ba commit abd0503
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 71 deletions.
74 changes: 74 additions & 0 deletions apps/portfolio/src/components/Header.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
import { listIconPath } from '../icon-path.js';
import Button from './Button.astro';
import InternalLink from './InternalLink.astro';
const openNavButtonId = 'open-nav-button';
const navId = 'nav-menu';
---

<header>
<div>
<span aria-hidden="true">yeong-woo.<span>han</span></span>
<Button
id={openNavButtonId}
aria-label="탐색 메뉴 열기"
aria-expanded="false"
aria-controls="nav-menu"
>
<svg width="32" height="32" fill="none" viewBox="0 0 48 48">
<path fill="currentColor" d={listIconPath}></path>
</svg>
</Button>
</div>

<nav id={navId} class="hidden">
<ul>
<li>
<InternalLink href="/">홈</InternalLink>
</li>
<li>
<InternalLink href="/works">작업물</InternalLink>
</li>
<li>
<a href="https://blog.yeongwoo.dev/">블로그</a>
</li>
</ul>
</nav>
</header>

<script>
import { listIconPath, xIconPath } from '../icon-path.js';

const openNavButton = document.getElementById('open-nav-button');
if (!(openNavButton instanceof HTMLButtonElement)) {
throw new Error('Can not find "open-nav-button" element');
}
const buttonIconPath = openNavButton.getElementsByTagName('path').item(0);
if (!(buttonIconPath instanceof SVGPathElement)) {
throw new Error('Can not find <path> child of "open-nav-button" element');
}

const controlledId = openNavButton.getAttribute('aria-controls');
if (controlledId === null) {
throw new Error('There is no controlled element by "open-nav-button"');
}
const nav = document.getElementById(controlledId);
if (!(nav instanceof HTMLElement)) {
throw new Error('Can not find "nav-menu" element');
}

openNavButton.addEventListener('click', function () {
const ariaExpanded = this.ariaExpanded === 'true' ? true : false;

if (ariaExpanded) {
nav.classList.replace('flex', 'hidden');
buttonIconPath.setAttribute('d', listIconPath);
this.ariaExpanded = 'false';
} else {
nav.classList.replace('hidden', 'flex');
buttonIconPath.setAttribute('d', xIconPath);
this.ariaExpanded = 'true';
}
});
</script>
73 changes: 2 additions & 71 deletions apps/portfolio/src/layouts/BaseLayout.astro
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
---
import '../styles/index.css';
import Button from '../components/Button.astro';
import InternalLink from '../components/InternalLink.astro';
import { listIconPath } from '../icon-path.js';
import Header from '../components/Header.astro';
interface Props {
title: string;
}
const { title } = Astro.props;
const openNavButtonId = 'open-nav-button';
const navId = 'nav-menu';
---

<!DOCTYPE html>
Expand All @@ -24,71 +19,7 @@ const navId = 'nav-menu';
<title>{title}</title>
</head>
<body>
<header>
<div>
<span aria-hidden="true">yeong-woo.<span>han</span></span>
<Button
id={openNavButtonId}
aria-label="탐색 메뉴 열기"
aria-expanded="false"
aria-controls="nav-menu"
>
<svg width="32" height="32" fill="none" viewBox="0 0 48 48">
<path fill="currentColor" d={listIconPath}></path>
</svg>
</Button>
</div>

<nav id={navId} class="hidden">
<ul>
<li>
<InternalLink href="/">홈</InternalLink>
</li>
<li>
<InternalLink href="/works">작업물</InternalLink>
</li>
<li>
<a href="https://blog.yeongwoo.dev/">블로그</a>
</li>
</ul>
</nav>
</header>
<Header />
<slot />
</body>
</html>

<script>
import { listIconPath, xIconPath } from '../icon-path.js';

const openNavButton = document.getElementById('open-nav-button');
if (!(openNavButton instanceof HTMLButtonElement)) {
throw new Error('Can not find "open-nav-button" element');
}
const buttonIconPath = openNavButton.getElementsByTagName('path').item(0);
if (!(buttonIconPath instanceof SVGPathElement)) {
throw new Error('Can not find <path> child of "open-nav-button" element');
}

const controlledId = openNavButton.getAttribute('aria-controls');
if (controlledId === null) {
throw new Error('There is no controlled element by "open-nav-button"');
}
const nav = document.getElementById(controlledId);
if (!(nav instanceof HTMLElement)) {
throw new Error('Can not find "nav-menu" element');
}

openNavButton.addEventListener('click', function () {
const ariaExpanded = this.ariaExpanded === 'true' ? true : false;

if (ariaExpanded) {
nav.classList.replace('flex', 'hidden');
buttonIconPath.setAttribute('d', listIconPath);
this.ariaExpanded = 'false';
} else {
nav.classList.replace('hidden', 'flex');
buttonIconPath.setAttribute('d', xIconPath);
this.ariaExpanded = 'true';
}
});
</script>

0 comments on commit abd0503

Please sign in to comment.