add navigation menu

This commit is contained in:
smanylov
2025-11-25 19:20:50 +07:00
parent 4b8660ca65
commit 7a8c2cee56
3 changed files with 208 additions and 30 deletions
+82
View File
@@ -0,0 +1,82 @@
import styles from '@/app/ui/ui.module.scss';
import { useState } from 'react';
import Link from 'next/link';
import clsx from 'clsx';
import { usePathname } from 'next/navigation';
export default function DropDownList() {
const pathname = usePathname();
const [dropDownExpanded, setDropDownExpanded] = useState(false);
function dropDownHandler() {
setDropDownExpanded(!dropDownExpanded);
}
const links = [
{
name: 'Маркировка фото',
href: '/pages/page1'
},
{
name: 'Маркировка видео',
href: '/pages/page1'
},
{
name: 'Маркировка аудио',
href: '/pages/page1'
},
{
name: 'Маркировка PDF',
href: '/pages/page1'
},
{
name: 'Маркировка PHP/JS',
href: '/pages/page1'
},
{
name: 'Маркировка Текста',
href: '/pages/page1'
},
];
return (
<div
className={`
${styles['nav-dropdown']}
${dropDownExpanded ? styles['expanded'] : ''}
`}
onClick={dropDownHandler}
>
<div className={`flex ${styles['nav-link']} cursor-pointer select-none`}>
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2l-5.37.84z"></path>
</svg>
<p>Маркировка</p>
<svg className={`${styles['dropdown-arrow']}`} viewBox="0 0 24 24" fill="currentColor">
<path d="M7 10l5 5 5-5z"></path>
</svg>
</div>
<ul className={`
${styles['sub-menu']}
${dropDownExpanded ? styles['expanded'] : ''}
`}>
{links.map((link) => {
return (
<Link
key={link.name}
href={link.href}
className={clsx(
`flex ${styles['nav-link']} ${styles['sub-link']}`,
{
'bg-[#5659f1]': pathname === link.href,
},
)}
>
<p className="hidden md:block">{link.name}</p>
</Link>
);
})}
</ul>
</div>
)
}
+75 -29
View File
@@ -5,23 +5,49 @@ import { usePathname } from 'next/navigation';
import clsx from 'clsx'; import clsx from 'clsx';
import styles from './ui.module.scss' import styles from './ui.module.scss'
import Logo from '@/app/ui/logo'; import Logo from '@/app/ui/logo';
import DropDownList from '@/app/ui/nav-link-dropdown';
const links = [ const links = [
{ {
name: 'Главная', name: 'Отчёты',
href: '/pages/dashboard',
img: 'M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z'
},
{
name: 'Page1',
href: '/pages/page1', href: '/pages/page1',
img: '' img: 'M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z'
}, },
{ {
name: 'Page2', name: 'Настройка',
href: '/pages/page2', href: '/pages/page2',
img: '' img: 'M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.82,11.69,4.82,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z'
} },
{
name: 'Мой контент',
href: '/pages/page1',
img: 'M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z'
},
{
name: 'Реферальная программа',
href: '/pages/page1',
img: 'M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63A1.5 1.5 0 0 0 18.54 8H16c-.8 0-1.54.37-2 1l-3 4v2h2l2.54-3.82L16.5 18H20z'
},
{
name: 'Нарушения',
href: '/pages/page1',
img: 'M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'
},
{
name: 'Поиск',
href: '/pages/page1',
img: 'M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'
},
{
name: 'API',
href: '/pages/page1',
img: 'M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0L19.2 12l-4.6-4.6L16 6l6 6-6 6-1.4-1.4z'
},
{
name: 'Выход',
href: '/pages/page1',
img: 'M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z'
},
]; ];
export default function NavLinks() { export default function NavLinks() {
@@ -31,25 +57,45 @@ export default function NavLinks() {
<div className=''> <div className=''>
<nav className={`${styles.sidebar}`}> <nav className={`${styles.sidebar}`}>
<Logo /> <Logo />
{links.map((link) => { <ul>
return ( <Link
<Link key='Главная'
key={link.name} href='/pages/dashboard'
href={link.href} className={clsx(
className={clsx( `flex ${styles['nav-link']}`,
`flex ${styles['nav-item']}`, {
{ 'bg-[#5659f1]': pathname === '/pages/dashboard',
'bg-[#5659f1]': pathname === link.href, },
}, )}
)} >
> <svg viewBox="0 0 24 24" fill="currentColor">
<svg viewBox="0 0 24 24" fill="currentColor"> <path d="M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z"></path>
<path d={link.img}></path> </svg>
</svg> <p className="hidden md:block">Главная</p>
<p className="hidden md:block">{link.name}</p> </Link>
</Link>
); <DropDownList />
})}
{links.map((link) => {
return (
<Link
key={link.name}
href={link.href}
className={clsx(
`flex ${styles['nav-link']}`,
{
'bg-[#5659f1]': pathname === link.href,
},
)}
>
<svg viewBox="0 0 24 24" fill="currentColor">
<path d={link.img}></path>
</svg>
<p className="hidden md:block">{link.name}</p>
</Link>
);
})}
</ul>
</nav> </nav>
</div> </div>
); );
+51 -1
View File
@@ -9,8 +9,24 @@
z-index: 100; z-index: 100;
} }
.nav-item { .nav-link {
display: flex;
align-items: center;
padding: 15px 30px;
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s;
border-radius: 0 25px 25px 0;
margin-right: 20px;
margin-bottom: 8px; margin-bottom: 8px;
font-weight: 500;
text-transform: uppercase;
&:hover {
background: rgba(255, 255, 255, 0.15);
color: white;
transform: translateX(5px)
}
svg { svg {
margin-right: 15px; margin-right: 15px;
@@ -19,6 +35,40 @@
} }
} }
.sub-link {
padding: 12px 50px;
font-size: 14px;
border-radius: 0;
margin-right: 0;
}
.nav-dropdown {
.dropdown-arrow {
margin-left: auto;
transition: transform 0.3s;
}
&.expanded {
.dropdown-arrow {
transform: rotate(180deg);
}
}
}
.sub-menu.expanded {
max-height: 400px;
}
.sub-menu {
list-style: none;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
background: rgba(255, 255, 255, 0.1);
margin-right: 20px;
border-radius: 0 15px 15px 0;
}
.logo { .logo {
display: flex; display: flex;
align-items: center; align-items: center;