Spaces:
Runtime error
Runtime error
File size: 5,626 Bytes
56b6519 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
import {
Disclosure,
DisclosureButton,
DisclosurePanel,
} from '@headlessui/react';
import {
ArrowRightStartOnRectangleIcon,
Bars3Icon,
CogIcon,
UserCircleIcon,
XMarkIcon,
} from '@heroicons/react/24/outline';
import { useTranslation } from 'react-i18next';
import { Link, useLocation } from 'react-router-dom';
import useAuth from '../../hooks/useAuth';
const classNames = (...classes: string[]) => classes.filter(Boolean).join(' ');
const Navbar = (): JSX.Element => {
const { logout } = useAuth();
const { t } = useTranslation();
const navigationOptions = [
{ name: t('nav.audits'), href: '/audits', current: true },
{
name: t('nav.vulnerabilities'),
href: '/vulnerabilities',
current: false,
},
{ name: t('nav.data'), href: '/data', current: false },
{ name: t('dashboard'), href: '/dashboard', current: false },
];
const location = useLocation();
return (
<Disclosure as="nav" className="bg-gray-900">
<div className="mx-auto max-w-7xl px-2 sm:px-6 lg:px-8">
<div className="relative flex h-16 items-center justify-between">
<div className="absolute inset-y-0 left-0 flex items-center sm:hidden">
<DisclosureButton className="group relative inline-flex items-center justify-center rounded-md p-2 text-gray-400 hover:bg-gray-700 hover:text-white focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white">
<span className="absolute -inset-0.5" />
<span className="sr-only">Open main menu</span>
<Bars3Icon
aria-hidden="true"
className="block h-6 w-6 group-data-[open]:hidden"
/>
<XMarkIcon
aria-hidden="true"
className="hidden h-6 w-6 group-data-[open]:block"
/>
</DisclosureButton>
</div>
<div className="flex flex-1 items-center justify-center sm:items-stretch sm:justify-start">
<div className="flex flex-shrink-0 items-center">
<img alt="Logo" className="h-8 w-auto" src="/logo.svg" />
</div>
<div className="hidden sm:ml-6 sm:block">
<div className="flex space-x-4">
{navigationOptions.map(item => (
<Link
aria-current={
item.href === location.pathname ? 'page' : undefined
}
className={classNames(
item.href === location.pathname
? 'bg-gray-900 text-white'
: 'text-gray-300 hover:bg-gray-700 hover:text-white',
'rounded-md px-3 py-2 text-sm font-medium',
)}
key={item.name}
to={item.href}
>
{item.name}
</Link>
))}
</div>
</div>
</div>
<div className="absolute inset-y-0 right-0 flex items-center pr-2 sm:static sm:inset-auto sm:ml-6 sm:pr-0">
<Link
className={classNames(
'/settings' === location.pathname
? 'bg-gray-900'
: 'text-gray-400 hover:bg-gray-700',
'relative rounded-full bg-gray-800 p-1 text-gray-400 hover:text-white',
)}
title={t('settings')}
to="/settings"
>
<span className="absolute -inset-1.5" />
<span className="sr-only">{t('settings')}</span>
<CogIcon aria-hidden="true" className="h-8 w-auto" />
</Link>
<Link
className={classNames(
'/profile' === location.pathname
? 'bg-gray-900'
: 'text-gray-400 hover:bg-gray-700',
'relative rounded-full bg-gray-800 p-1 text-gray-400 hover:text-white mx-2',
)}
title={t('profile')}
to="/profile"
>
<span className="absolute -inset-1.5" />
<span className="sr-only">{t('profile')}</span>
<UserCircleIcon aria-hidden="true" className="h-8 w-auto" />
</Link>
<button
className="relative rounded-full bg-gray-800 p-1 text-gray-400 hover:text-white"
onClick={logout}
title={t('logout')}
type="button"
>
<span className="absolute -inset-1.5" />
<span className="sr-only">{t('logout')}</span>
<ArrowRightStartOnRectangleIcon
aria-hidden="true"
className="h-8 w-auto"
/>
</button>
</div>
</div>
</div>
<DisclosurePanel className="sm:hidden">
<div className="space-y-1 px-2 pb-3 pt-2">
{navigationOptions.map(item => (
<DisclosureButton
aria-current={
item.href === location.pathname ? 'page' : undefined
}
className={classNames(
item.href === location.pathname
? 'bg-gray-900 text-white'
: 'text-gray-300 hover:bg-gray-700 hover:text-white',
'block rounded-md px-3 py-2 text-base font-medium',
)}
key={item.name}
>
<Link to={item.href}>{item.name}</Link>
</DisclosureButton>
))}
</div>
</DisclosurePanel>
</Disclosure>
);
};
export default Navbar;
|