mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
65 lines
2.0 KiB
JavaScript
65 lines
2.0 KiB
JavaScript
import { Icon, Text, Row, Column } from 'react-basics';
|
|
import Link from 'next/link';
|
|
import classNames from 'classnames';
|
|
import Icons from 'components/icons';
|
|
import ThemeButton from 'components/input/ThemeButton';
|
|
import LanguageButton from 'components/input/LanguageButton';
|
|
import ProfileButton from 'components/input/ProfileButton';
|
|
import styles from './NavBar.module.css';
|
|
import useConfig from 'hooks/useConfig';
|
|
import useMessages from 'hooks/useMessages';
|
|
import { useRouter } from 'next/router';
|
|
import HamburgerButton from '../common/HamburgerButton';
|
|
|
|
export function NavBar() {
|
|
const { pathname } = useRouter();
|
|
const { cloudMode } = useConfig();
|
|
const { formatMessage, labels } = useMessages();
|
|
|
|
const links = [
|
|
{ label: formatMessage(labels.dashboard), url: '/dashboard' },
|
|
{ label: formatMessage(labels.realtime), url: '/realtime' },
|
|
!cloudMode && { label: formatMessage(labels.settings), url: '/settings' },
|
|
].filter(n => n);
|
|
|
|
return (
|
|
<div className={classNames(styles.navbar)}>
|
|
<Row>
|
|
<Column className={styles.left}>
|
|
<div className={styles.logo}>
|
|
<Icon size="lg">
|
|
<Icons.Logo />
|
|
</Icon>
|
|
<Text className={styles.text}>umami</Text>
|
|
</div>
|
|
<div className={styles.links}>
|
|
{links.map(({ url, label }) => {
|
|
return (
|
|
<Link
|
|
key={url}
|
|
href={url}
|
|
className={classNames({ [styles.selected]: pathname.startsWith(url) })}
|
|
>
|
|
<Text>{label}</Text>
|
|
</Link>
|
|
);
|
|
})}
|
|
</div>
|
|
</Column>
|
|
<Column className={styles.right}>
|
|
<div className={styles.actions}>
|
|
<ThemeButton />
|
|
<LanguageButton />
|
|
<ProfileButton />
|
|
</div>
|
|
<div className={styles.mobile}>
|
|
<HamburgerButton />
|
|
</div>
|
|
</Column>
|
|
</Row>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default NavBar;
|