-
-
Save jpsilvashy/5725579 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function hostReachable() { | |
// Handle IE and more capable browsers | |
var xhr = new ( window.ActiveXObject || XMLHttpRequest )( "Microsoft.XMLHTTP" ); | |
var status; | |
// Open new request as a HEAD to the root hostname with a random param to bust the cache | |
xhr.open( "HEAD", "//" + window.location.hostname + "/?rand=" + Math.floor((1 + Math.random()) * 0x10000), false ); | |
// Issue request and handle response | |
try { | |
xhr.send(); | |
return ( xhr.status >= 200 && xhr.status < 300 || xhr.status === 304 ); | |
} catch (error) { | |
return false; | |
} | |
} |
And if you want to wait until online you can use this:
public waitUntilOnline(): any {
return new window.Promise((resolve, reject) => {
let interval: any = window.setInterval(() => {
if (this.isOnline()) {
window.clearInterval(interval);
interval = undefined;
resolve(true);
} else {
console.log('Browser is still offine...');
}
}, 2500);
});
}
this.waitUntilOnline().then((isOnline: boolean) => {
//always returns true here. Do anything when the browser switches from offline to online
});
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// Open new request as a HEAD to the root hostname with a random param to bust the cache << Why do you have to bust the cache? And how is it going to bust the cache? Thanks!