umami/components/common/UpdateNotice.js

63 lines
1.8 KiB
JavaScript
Raw Normal View History

2023-07-27 23:47:41 +02:00
import { useEffect, useCallback, useState } from 'react';
2023-03-22 22:05:55 +01:00
import { Button, Row, Column } from 'react-basics';
2022-08-29 05:20:54 +02:00
import { setItem } from 'next-basics';
2022-06-24 10:54:55 +02:00
import useStore, { checkVersion } from 'store/version';
2022-07-16 08:53:31 +02:00
import { REPO_URL, VERSION_CHECK } from 'lib/constants';
2022-06-24 10:54:55 +02:00
import styles from './UpdateNotice.module.css';
2023-03-22 22:05:55 +01:00
import useMessages from 'hooks/useMessages';
2023-07-27 23:47:41 +02:00
import { useRouter } from 'next/router';
2023-07-27 23:47:41 +02:00
export function UpdateNotice({ user, config }) {
2023-03-22 22:05:55 +01:00
const { formatMessage, labels, messages } = useMessages();
2022-07-16 08:53:31 +02:00
const { latest, checked, hasUpdate, releaseUrl } = useStore();
2023-07-27 23:47:41 +02:00
const { pathname } = useRouter();
const [dismissed, setDismissed] = useState(checked);
const allowUpdate =
user?.isAdmin &&
!config?.updatesDisabled &&
!config?.cloudMode &&
!pathname.includes('/share/') &&
!dismissed;
2022-06-24 10:54:55 +02:00
const updateCheck = useCallback(() => {
setItem(VERSION_CHECK, { version: latest, time: Date.now() });
}, [latest]);
2020-09-30 06:22:08 +02:00
function handleViewClick() {
updateCheck();
2022-06-24 10:54:55 +02:00
setDismissed(true);
2022-09-21 15:19:18 +02:00
open(releaseUrl || REPO_URL, '_blank');
}
2020-09-30 06:22:08 +02:00
function handleDismissClick() {
updateCheck();
2022-06-24 10:54:55 +02:00
setDismissed(true);
2020-09-30 06:22:08 +02:00
}
2022-06-24 10:54:55 +02:00
useEffect(() => {
2023-07-27 23:47:41 +02:00
if (allowUpdate) {
2022-06-24 10:54:55 +02:00
checkVersion();
}
2023-07-27 23:47:41 +02:00
}, [allowUpdate]);
2022-06-24 10:54:55 +02:00
2023-07-27 23:47:41 +02:00
if (!allowUpdate || !hasUpdate) {
return null;
}
return (
2023-03-02 08:59:01 +01:00
<Row className={styles.notice}>
<Column variant="two" className={styles.message}>
{formatMessage(messages.newVersionAvailable, { version: `v${latest}` })}
</Column>
<Column className={styles.buttons}>
<Button variant="primary" onClick={handleViewClick}>
{formatMessage(labels.viewDetails)}
</Button>
2023-03-02 08:59:01 +01:00
<Button onClick={handleDismissClick}>{formatMessage(labels.dismiss)}</Button>
</Column>
</Row>
);
}
2023-04-21 17:00:42 +02:00
export default UpdateNotice;