91 lines
2.7 KiB
JavaScript
91 lines
2.7 KiB
JavaScript
|
const isLocalhost = Boolean(
|
||
|
window.location.hostname === 'localhost' ||
|
||
|
// [::1] is the IPv6 localhost address.
|
||
|
window.location.hostname === '[::1]' ||
|
||
|
// 127.0.0.1/8 is considered localhost for IPv4.
|
||
|
window.location.hostname.match(
|
||
|
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
|
||
|
)
|
||
|
);
|
||
|
|
||
|
function registerValidSW(swUrl, config) {
|
||
|
navigator.serviceWorker
|
||
|
.register(swUrl)
|
||
|
.then(registration => {
|
||
|
registration.onupdatefound = () => {
|
||
|
const installingWorker = registration.installing;
|
||
|
if (installingWorker == null) {
|
||
|
return;
|
||
|
}
|
||
|
installingWorker.onstatechange = () => {
|
||
|
if (installingWorker.state === 'installed') {
|
||
|
if (navigator.serviceWorker.controller) {
|
||
|
if (config && config.onUpdate) {
|
||
|
config.onUpdate(registration);
|
||
|
}
|
||
|
} else {
|
||
|
if (config && config.onSuccess) {
|
||
|
config.onSuccess(registration);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
};
|
||
|
})
|
||
|
.catch(error => {
|
||
|
console.error('Error during service worker registration:', error);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function checkValidServiceWorker(swUrl, config) {
|
||
|
// Check if the service worker can be found. If it can't reload the page.
|
||
|
fetch(swUrl)
|
||
|
.then(response => {
|
||
|
// Ensure service worker exists, and that we really are getting a JS file.
|
||
|
const contentType = response.headers.get('content-type');
|
||
|
if (
|
||
|
response.status === 404 ||
|
||
|
(contentType != null && contentType.indexOf('javascript') === -1)
|
||
|
) {
|
||
|
// No service worker found. Probably a different app. Reload the page.
|
||
|
navigator.serviceWorker.ready.then(registration => {
|
||
|
registration.unregister().then(() => {
|
||
|
window.location.reload();
|
||
|
});
|
||
|
});
|
||
|
} else {
|
||
|
// Service worker found. Proceed as normal.
|
||
|
registerValidSW(swUrl, config);
|
||
|
}
|
||
|
})
|
||
|
.catch(() => {
|
||
|
console.log(
|
||
|
'No internet connection found. App is running in offline mode.'
|
||
|
);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function register(config) {
|
||
|
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
|
||
|
window.addEventListener('load', () => {
|
||
|
const swUrl = '/sw.js';
|
||
|
|
||
|
if (isLocalhost) {
|
||
|
// This is running on localhost. Let's check if a service worker still exists or not.
|
||
|
checkValidServiceWorker(swUrl, config);
|
||
|
} else {
|
||
|
// Is not localhost. Just register service worker
|
||
|
registerValidSW(swUrl, config);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function unregister() {
|
||
|
if ('serviceWorker' in navigator) {
|
||
|
navigator.serviceWorker.ready.then(registration => {
|
||
|
registration.unregister();
|
||
|
});
|
||
|
}
|
||
|
}
|