aboutsummaryrefslogtreecommitdiff
path: root/modern/src/UpdateCheckPrompt.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/UpdateCheckPrompt.tsx')
-rw-r--r--modern/src/UpdateCheckPrompt.tsx57
1 files changed, 57 insertions, 0 deletions
diff --git a/modern/src/UpdateCheckPrompt.tsx b/modern/src/UpdateCheckPrompt.tsx
new file mode 100644
index 00000000..096cca8a
--- /dev/null
+++ b/modern/src/UpdateCheckPrompt.tsx
@@ -0,0 +1,57 @@
+import { Snackbar, Button } from '@mui/material';
+import React from 'react'
+import { useTranslation } from './common/components/LocalizationProvider';
+import { useAttributePreference } from './common/util/preferences';
+import { useRegisterSW } from 'virtual:pwa-register/react'
+
+// Based on https://vite-pwa-org.netlify.app/frameworks/react.html
+function UpdateCheckPrompt() {
+ const t = useTranslation();
+
+ const serviceWorkerUpdateInterval = useAttributePreference('serviceWorkerUpdateInterval', 3600000);
+
+ const {
+ needRefresh: [needRefresh],
+ updateServiceWorker,
+ } = useRegisterSW({
+ onRegisteredSW(swUrl, swRegistration) {
+ if (serviceWorkerUpdateInterval > 0 && swRegistration) {
+ setInterval(async () => {
+ if (!(!swRegistration.installing && navigator)) {
+ return;
+ }
+
+ if (('connection' in navigator) && !navigator.onLine) {
+ return;
+ }
+
+ const newSW = await fetch(swUrl, {
+ cache: 'no-store',
+ headers: {
+ 'cache': 'no-store',
+ 'cache-control': 'no-cache',
+ },
+ });
+
+ if (newSW?.status === 200) {
+ await swRegistration.update();
+ }
+ }, serviceWorkerUpdateInterval);
+ }
+ }
+ });
+
+ return (
+ <Snackbar
+ open={needRefresh}
+ message={t('settingsUpdateAvailable')}
+ action={(
+ <Button onClick={() => updateServiceWorker(true)}>
+ {t('settingsReload')}
+ </Button>
+ )}
+ />
+ );
+}
+
+export default UpdateCheckPrompt;