frontend/smart-hut/src/serviceWorker.js

142 lines
5.0 KiB
JavaScript
Raw Normal View History

2020-02-24 14:22:19 +00:00
// This optional code is used to register a service worker.
// register() is not called by default.
// This lets the app load faster on subsequent visits in production, and gives
// it offline capabilities. However, it also means that developers (and users)
// will only see deployed updates on subsequent visits to a page, after all the
// existing tabs open on the page have been closed, since previously cached
// resources are updated in the background.
// To learn more about the benefits of this model and instructions on how to
// opt-in, read https://bit.ly/CRA-PWA
const isLocalhost = Boolean(
2020-05-12 13:18:33 +00:00
window.location.hostname === 'localhost'
2020-02-24 14:22:19 +00:00
// [::1] is the IPv6 localhost address.
2020-05-12 13:18:33 +00:00
|| window.location.hostname === '[::1]'
2020-02-24 14:22:19 +00:00
// 127.0.0.0/8 are considered localhost for IPv4.
2020-05-12 13:18:33 +00:00
|| window.location.hostname.match(
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/,
),
2020-02-24 14:22:19 +00:00
);
export function register(config) {
2020-05-12 13:18:33 +00:00
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
2020-02-24 14:22:19 +00:00
// The URL constructor is available in all browsers that support SW.
const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);
if (publicUrl.origin !== window.location.origin) {
// Our service worker won't work if PUBLIC_URL is on a different origin
// from what our page is served on. This might happen if a CDN is used to
// serve assets; see https://github.com/facebook/create-react-app/issues/2374
return;
}
2020-05-12 13:18:33 +00:00
window.addEventListener('load', () => {
2020-02-24 14:22:19 +00:00
const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
if (isLocalhost) {
// This is running on localhost. Let's check if a service worker still exists or not.
checkValidServiceWorker(swUrl, config);
// Add some additional logging to localhost, pointing developers to the
// service worker/PWA documentation.
navigator.serviceWorker.ready.then(() => {
console.log(
2020-05-12 13:18:33 +00:00
'This web app is being served cache-first by a service '
+ 'worker. To learn more, visit https://bit.ly/CRA-PWA',
2020-02-24 14:22:19 +00:00
);
});
} else {
// Is not localhost. Just register service worker
registerValidSW(swUrl, config);
}
});
}
}
function registerValidSW(swUrl, config) {
navigator.serviceWorker
.register(swUrl)
2020-03-23 20:24:17 +00:00
.then((registration) => {
2020-02-24 14:22:19 +00:00
registration.onupdatefound = () => {
const installingWorker = registration.installing;
if (installingWorker == null) {
return;
}
installingWorker.onstatechange = () => {
2020-05-12 13:18:33 +00:00
if (installingWorker.state === 'installed') {
2020-02-24 14:22:19 +00:00
if (navigator.serviceWorker.controller) {
// At this point, the updated precached content has been fetched,
// but the previous service worker will still serve the older
// content until all client tabs are closed.
console.log(
2020-05-12 13:18:33 +00:00
'New content is available and will be used when all '
+ 'tabs for this page are closed. See https://bit.ly/CRA-PWA.',
2020-02-24 14:22:19 +00:00
);
// Execute callback
if (config && config.onUpdate) {
config.onUpdate(registration);
}
} else {
// At this point, everything has been precached.
// It's the perfect time to display a
// "Content is cached for offline use." message.
2020-05-12 13:18:33 +00:00
console.log('Content is cached for offline use.');
2020-02-24 14:22:19 +00:00
// Execute callback
if (config && config.onSuccess) {
config.onSuccess(registration);
}
}
}
};
};
})
2020-03-23 20:24:17 +00:00
.catch((error) => {
2020-05-12 13:18:33 +00:00
console.error('Error during service worker registration:', error);
2020-02-24 14:22:19 +00:00
});
}
function checkValidServiceWorker(swUrl, config) {
// Check if the service worker can be found. If it can't reload the page.
fetch(swUrl, {
2020-05-12 13:18:33 +00:00
headers: { 'Service-Worker': 'script' },
2020-02-24 14:22:19 +00:00
})
2020-03-23 20:24:17 +00:00
.then((response) => {
2020-02-24 14:22:19 +00:00
// Ensure service worker exists, and that we really are getting a JS file.
2020-05-12 13:18:33 +00:00
const contentType = response.headers.get('content-type');
2020-02-24 14:22:19 +00:00
if (
2020-05-12 13:18:33 +00:00
response.status === 404
|| (contentType != null && contentType.indexOf('javascript') === -1)
2020-02-24 14:22:19 +00:00
) {
// No service worker found. Probably a different app. Reload the page.
2020-03-23 20:24:17 +00:00
navigator.serviceWorker.ready.then((registration) => {
2020-02-24 14:22:19 +00:00
registration.unregister().then(() => {
window.location.reload();
});
});
} else {
// Service worker found. Proceed as normal.
registerValidSW(swUrl, config);
}
})
.catch(() => {
console.log(
2020-05-12 13:18:33 +00:00
'No internet connection found. App is running in offline mode.',
2020-02-24 14:22:19 +00:00
);
});
}
export function unregister() {
2020-05-12 13:18:33 +00:00
if ('serviceWorker' in navigator) {
2020-02-24 14:22:19 +00:00
navigator.serviceWorker.ready
2020-03-23 20:24:17 +00:00
.then((registration) => {
2020-02-24 14:22:19 +00:00
registration.unregister();
})
2020-03-23 20:24:17 +00:00
.catch((error) => {
2020-02-24 14:22:19 +00:00
console.error(error.message);
});
}
}