-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathuseCheckForApplicationUpdate.ts
94 lines (84 loc) · 3.41 KB
/
useCheckForApplicationUpdate.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import { useEffect, useRef } from 'react';
import { useEvent } from './useEvent';
/**
* Checks if the application code has changed and calls the provided onNewVersionAvailable function when needed.
*
* It checks for code update by downloading the provided URL (default to the HTML page) and
* comparing the hash of the response with the hash of the current page.
*
* @param {UseCheckForApplicationUpdateOptions} options The options
* @param {Function} options.onNewVersionAvailable The function to call when a new version of the application is available.
* @param {string} options.url Optional. The URL to download to check for code update. Defaults to the current URL.
* @param {number} options.interval Optional. The interval in milliseconds between two checks. Defaults to 3600000 (1 hour).
* @param {boolean} options.disabled Optional. Whether the check should be disabled. Defaults to false.
*/
export const useCheckForApplicationUpdate = (
options: UseCheckForApplicationUpdateOptions
) => {
const {
url = window.location.href,
interval: delay = ONE_HOUR,
onNewVersionAvailable: onNewVersionAvailableProp,
disabled = process.env.NODE_ENV !== 'production',
} = options;
const currentHash = useRef<number>();
const onNewVersionAvailable = useEvent(onNewVersionAvailableProp);
useEffect(() => {
if (disabled) return;
getHashForUrl(url).then(hash => {
if (hash != null) {
currentHash.current = hash;
}
});
}, [disabled, url]);
useEffect(() => {
if (disabled) return;
const interval = setInterval(() => {
getHashForUrl(url)
.then(hash => {
if (hash != null && currentHash.current !== hash) {
// Store the latest hash to avoid calling the onNewVersionAvailable function multiple times
// or when users have closed the notification
currentHash.current = hash;
onNewVersionAvailable();
}
})
.catch(() => {
// Ignore errors to avoid issues when connectivity is lost
});
}, delay);
return () => clearInterval(interval);
}, [delay, onNewVersionAvailable, disabled, url]);
};
const getHashForUrl = async (url: string) => {
try {
const response = await fetch(url);
if (!response.ok) return null;
const text = await response.text();
return hash(text);
} catch (e) {
return null;
}
};
// Simple hash function, taken from https://stackoverflow.com/a/52171480/3723993, suggested by Copilot
const hash = (value: string, seed = 0) => {
let h1 = 0xdeadbeef ^ seed,
h2 = 0x41c6ce57 ^ seed;
for (let i = 0, ch; i < value.length; i++) {
ch = value.charCodeAt(i);
h1 = Math.imul(h1 ^ ch, 2654435761);
h2 = Math.imul(h2 ^ ch, 1597334677);
}
h1 = Math.imul(h1 ^ (h1 >>> 16), 2246822507);
h1 ^= Math.imul(h2 ^ (h2 >>> 13), 3266489909);
h2 = Math.imul(h2 ^ (h2 >>> 16), 2246822507);
h2 ^= Math.imul(h1 ^ (h1 >>> 13), 3266489909);
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
};
const ONE_HOUR = 1000 * 60 * 60;
export interface UseCheckForApplicationUpdateOptions {
onNewVersionAvailable: () => void;
interval?: number;
url?: string;
disabled?: boolean;
}