diff --git a/app/components/Navbar/Navbar.tsx b/app/components/Navbar/Navbar.tsx deleted file mode 100644 index 20bce24..0000000 --- a/app/components/Navbar/Navbar.tsx +++ /dev/null @@ -1,290 +0,0 @@ -"use client"; -import Link from "next/link"; -import { usePathname } from "next/navigation"; -import { useUserStore } from "#/store/auth"; -import { Dropdown } from "flowbite-react"; -import { useState } from "react"; -import Image from "next/image"; -import { SettingsModal } from "#/components/SettingsModal/SettingsModal"; - -export const Navbar = () => { - const pathname = usePathname(); - const userStore: any = useUserStore((state) => state); - const [isSettingModalOpen, setIsSettingModalOpen] = useState(false); - - const navLinks = [ - { - id: 1, - icon: "material-symbols--home-outline", - iconActive: "material-symbols--home", - title: "Домашняя", - href: "/", - categoryHref: "/home", - withAuthOnly: false, - mobileMenu: false, - }, - { - id: 2, - icon: "material-symbols--search", - iconActive: "material-symbols--search", - title: "Поиск", - href: "/search", - withAuthOnly: false, - mobileMenu: false, - }, - { - id: 3, - icon: "material-symbols--bookmarks-outline", - iconActive: "material-symbols--bookmarks", - title: "Закладки", - href: "/bookmarks", - withAuthOnly: true, - mobileMenu: false, - }, - { - id: 4, - icon: "material-symbols--favorite-outline", - iconActive: "material-symbols--favorite", - title: "Избранное", - href: "/favorites", - withAuthOnly: true, - mobileMenu: true, - }, - { - id: 5, - icon: "material-symbols--collections-bookmark-outline", - iconActive: "material-symbols--collections-bookmark", - title: "Коллекции", - href: "/collections", - withAuthOnly: true, - mobileMenu: true, - }, - { - id: 6, - icon: "material-symbols--history", - iconActive: "material-symbols--history", - title: "История", - href: "/history", - withAuthOnly: true, - mobileMenu: true, - }, - ]; - - return ( - <> -
-
- - {userStore.isAuth ? ( - <> -
- - - - - - Профиль - - - {navLinks.map((link) => { - return ( - - - - - {link.title} - - - - ); - })} - { - setIsSettingModalOpen(true); - }} - className="flex items-center gap-1 text-sm md:text-base" - > - - Настройки - - { - userStore.logout(); - }} - className="flex items-center gap-1 text-sm md:text-base" - > - - Выйти - - -
-
- - -

{userStore.user.login}

- -
- - ) : ( - ( -
- - Меню -
- )} - inline={true} - dismissOnClick={true} - theme={{ - arrowIcon: - "ml-1 w-4 h-4 [transform:rotateX(180deg)] sm:transform-none", - }} - > - - - - - Войти - - - - { - setIsSettingModalOpen(true); - }} - className="flex items-center gap-1 text-sm md:text-base" - > - - Настройки - -
- )} -
-
- - - ); -}; diff --git a/app/components/Navbar/NavbarUpdate.tsx b/app/components/Navbar/NavbarUpdate.tsx index 9ee4d76..71b74d0 100644 --- a/app/components/Navbar/NavbarUpdate.tsx +++ b/app/components/Navbar/NavbarUpdate.tsx @@ -87,8 +87,8 @@ export const Navbar = () => { return ( <>
-
-
+
+
{menuItems.map((item) => { return ( { ); })}
-
+
{!userStore.isAuth ?