/**
* shared-bottom-nav.js — 하단 네비게이션 공유 컴포넌트
* 각 페이지에서 로드하면 자동 생성
*/
(function() {
var SVG_ATTR = 'viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"';
var NAV_ITEMS = [
{
href: '/pages/dashboard-new.html',
label: '홈',
icon: ''
},
{
href: 'https://tkreport.technicalkorea.net/',
label: '신고',
icon: ''
},
{
href: '/pages/purchase/request-mobile.html',
label: '소모품',
icon: ''
}
];
var currentPath = location.pathname;
var nav = document.createElement('nav');
nav.className = 'm-bottom-nav';
nav.innerHTML = NAV_ITEMS.map(function(item) {
var active = currentPath === item.href ? ' active' : '';
return ''
+ item.icon + '' + item.label + '';
}).join('');
document.body.appendChild(nav);
})();