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