| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import { NavLink } from 'react-router-dom';
- import { useTranslation } from 'react-i18next';
- const navItems = [
- {
- to: '/spoolbuddy',
- labelKey: 'spoolbuddy.nav.dashboard',
- fallback: 'Dashboard',
- icon: (
- <svg className="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
- <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" />
- </svg>
- ),
- },
- {
- to: '/spoolbuddy/ams',
- labelKey: 'spoolbuddy.nav.ams',
- fallback: 'AMS',
- icon: (
- <svg className="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
- <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" />
- </svg>
- ),
- },
- {
- to: '/spoolbuddy/write-tag',
- labelKey: 'spoolbuddy.nav.writeTag',
- fallback: 'Write',
- icon: (
- <svg className="w-6 h-6" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2}>
- <path strokeLinecap="round" strokeLinejoin="round" d="M8.288 15.038a5.25 5.25 0 017.424 0M5.106 11.856c3.807-3.808 9.98-3.808 13.788 0M1.924 8.674c5.565-5.565 14.587-5.565 20.152 0" />
- <path strokeLinecap="round" strokeLinejoin="round" d="M12.53 18.22l-.53.53-.53-.53a.75.75 0 011.06 0z" />
- </svg>
- ),
- },
- {
- to: '/spoolbuddy/settings',
- labelKey: 'spoolbuddy.nav.settings',
- fallback: 'Settings',
- icon: (
- <svg className="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
- <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.066 2.573c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.573 1.066c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.066-2.573c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
- <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
- </svg>
- ),
- },
- ];
- export function SpoolBuddyBottomNav() {
- const { t } = useTranslation();
- return (
- <nav className="h-14 bg-bambu-dark-secondary border-t border-bambu-dark-tertiary flex items-stretch shrink-0">
- {navItems.map((item) => (
- <NavLink
- key={item.to}
- to={item.to}
- end={item.to === '/spoolbuddy'}
- className={({ isActive }) =>
- `flex-1 flex flex-col items-center justify-center gap-1 transition-colors ${
- isActive
- ? 'text-bambu-green bg-bambu-dark'
- : 'text-white/50 hover:text-white/70 hover:bg-bambu-dark-tertiary'
- }`
- }
- >
- {item.icon}
- <span className="text-xs font-medium">{t(item.labelKey, item.fallback)}</span>
- </NavLink>
- ))}
- </nav>
- );
- }
|