2020-07-24 02:56:55 +00:00
|
|
|
import React from 'react';
|
2020-09-06 00:27:01 +00:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2020-08-05 05:45:05 +00:00
|
|
|
import { useSelector } from 'react-redux';
|
|
|
|
|
import classNames from 'classnames';
|
2020-08-08 03:36:57 +00:00
|
|
|
import Link from 'components/common/Link';
|
2020-09-20 08:33:39 +00:00
|
|
|
import Icon from 'components/common/Icon';
|
|
|
|
|
import LanguageButton from 'components/settings/LanguageButton';
|
|
|
|
|
import ThemeButton from 'components/settings/ThemeButton';
|
2020-09-26 11:04:44 +00:00
|
|
|
import UpdateNotice from 'components/common/UpdateNotice';
|
2020-09-21 04:31:53 +00:00
|
|
|
import UserButton from 'components/settings/UserButton';
|
2020-08-07 05:03:02 +00:00
|
|
|
import Logo from 'assets/logo.svg';
|
2020-08-05 05:45:05 +00:00
|
|
|
import styles from './Header.module.css';
|
2020-07-24 02:56:55 +00:00
|
|
|
|
|
|
|
|
export default function Header() {
|
2020-08-05 05:45:05 +00:00
|
|
|
const user = useSelector(state => state.user);
|
|
|
|
|
|
2020-07-24 02:56:55 +00:00
|
|
|
return (
|
2020-08-15 08:17:15 +00:00
|
|
|
<header className="container">
|
2020-09-29 23:25:44 +00:00
|
|
|
{user?.is_admin && <UpdateNotice />}
|
2020-08-15 08:17:15 +00:00
|
|
|
<div className={classNames(styles.header, 'row align-items-center')}>
|
2020-09-20 09:54:38 +00:00
|
|
|
<div className="col-12 col-md-12 col-lg-3">
|
2020-08-07 05:03:02 +00:00
|
|
|
<div className={styles.title}>
|
2020-08-09 06:48:43 +00:00
|
|
|
<Icon icon={<Logo />} size="large" className={styles.logo} />
|
2020-08-23 05:01:14 +00:00
|
|
|
<Link href={user ? '/' : 'https://umami.is'}>umami</Link>
|
2020-08-07 05:03:02 +00:00
|
|
|
</div>
|
2020-08-05 05:45:05 +00:00
|
|
|
</div>
|
2020-09-20 09:54:38 +00:00
|
|
|
<div className="col-12 col-md-12 col-lg-6">
|
|
|
|
|
{user && (
|
|
|
|
|
<div className={styles.nav}>
|
|
|
|
|
<Link href="/dashboard">
|
|
|
|
|
<FormattedMessage id="label.dashboard" defaultMessage="Dashboard" />
|
|
|
|
|
</Link>
|
2020-10-08 22:02:48 +00:00
|
|
|
<Link href="/realtime">
|
|
|
|
|
<FormattedMessage id="label.realtime" defaultMessage="Realtime" />
|
|
|
|
|
</Link>
|
2020-09-20 09:54:38 +00:00
|
|
|
<Link href="/settings">
|
|
|
|
|
<FormattedMessage id="label.settings" defaultMessage="Settings" />
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="col-12 col-md-12 col-lg-3">
|
|
|
|
|
<div className={styles.buttons}>
|
|
|
|
|
<ThemeButton />
|
2020-09-20 10:28:05 +00:00
|
|
|
<LanguageButton menuAlign="right" />
|
2020-09-20 09:54:38 +00:00
|
|
|
{user && <UserButton />}
|
2020-09-09 23:43:37 +00:00
|
|
|
</div>
|
2020-09-07 22:25:09 +00:00
|
|
|
</div>
|
2020-08-05 05:45:05 +00:00
|
|
|
</div>
|
2020-07-24 02:56:55 +00:00
|
|
|
</header>
|
|
|
|
|
);
|
|
|
|
|
}
|