umami/components/layout/Footer.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

import { Row, Column } from 'react-basics';
2022-08-02 09:24:17 +02:00
import { useRouter } from 'next/router';
import Script from 'next/script';
2020-10-03 19:53:06 +02:00
import classNames from 'classnames';
import { useIntl, defineMessages } from 'react-intl';
2022-08-08 20:31:36 +02:00
import { CURRENT_VERSION, HOMEPAGE_URL, REPO_URL } from 'lib/constants';
import styles from './Footer.module.css';
const messages = defineMessages({
poweredBy: { id: 'message.powered-by', defaultMessage: 'Powered by {name}' },
});
2020-08-07 11:27:12 +02:00
export default function Footer({ className }) {
2022-08-02 09:24:17 +02:00
const { pathname } = useRouter();
const { formatMessage } = useIntl();
2021-05-13 08:15:37 +02:00
2020-08-07 11:27:12 +02:00
return (
<footer className={classNames(styles.footer, className)}>
<Row>
<Column>
<div>
{formatMessage(messages.poweredBy, {
name: (
2023-02-09 08:14:11 +01:00
<a href={HOMEPAGE_URL}>
<b>umami</b>
2023-02-09 08:14:11 +01:00
</a>
),
})}
</div>
</Column>
<Column className={styles.version}>
2023-02-09 08:14:11 +01:00
<a href={REPO_URL}>{`v${CURRENT_VERSION}`}</a>
</Column>
</Row>
2022-08-08 20:31:36 +02:00
{!pathname.includes('/share/') && <Script src={`/telemetry.js`} />}
2020-08-07 11:27:12 +02:00
</footer>
);
}