Files
Homer/src/components/ConnectivityChecker.vue

108 lines
2.7 KiB
Vue

<template>
<div
v-if="offline"
class="offline-message mb-4"
role="alert"
aria-live="polite"
>
<i class="fa-solid fa-triangle-exclamation"></i>
<h1>
Network unreachable
<button
aria-label="Retry connection check"
class="retry-button"
@click="checkOffline"
>
<i class="fas fa-redo-alt"></i>
</button>
</h1>
<p>
<a
href="https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md#connectivity-checks"
>More information </a
>
</p>
</div>
</template>
<script>
export default {
name: "ConnectivityChecker",
data: function () {
return {
offline: false,
};
},
created: function () {
if (/t=\d+/.test(window.location.href)) {
window.history.replaceState({}, document.title, window.location.pathname);
}
this.checkOffline();
document.addEventListener(
"visibilitychange",
this.handleVisibilityChange,
false,
);
window.addEventListener("online", this.handleOnline, false);
window.addEventListener("offline", this.handleOffline, false);
},
beforeUnmount: function () {
document.removeEventListener(
"visibilitychange",
this.handleVisibilityChange,
);
window.removeEventListener("online", this.handleOnline);
window.removeEventListener("offline", this.handleOffline);
},
methods: {
handleVisibilityChange: function () {
if (document.visibilityState === "visible") {
this.checkOffline();
}
},
handleOnline: function () {
this.checkOffline();
},
handleOffline: function () {
this.offline = true;
},
checkOffline: function () {
// Global online check
if (!navigator.onLine) {
this.offline = true;
return;
}
// Check if the current URL is reachable
let that = this;
const aliveCheckUrl = new URL(window.location);
aliveCheckUrl.searchParams.set("t", new Date().valueOf());
return fetch(aliveCheckUrl, {
method: "HEAD",
cache: "no-store",
redirect: "manual",
})
.then(function (response) {
// opaqueredirect means request has been redirected, to auth provider probably
if (
(response.type === "opaqueredirect" && !response.ok) ||
[401, 403].indexOf(response.status) != -1
) {
window.location.href = aliveCheckUrl;
}
that.offline = !response.ok;
})
.catch(function () {
that.offline = true;
})
.finally(function () {
that.$emit("network-status-update", that.offline);
});
},
},
};
</script>