From f0cbdec755e91fc3f02e96b03e1fc200b135815e Mon Sep 17 00:00:00 2001 From: tdro Date: Sat, 8 Apr 2023 14:35:37 -0400 Subject: static/js: Add update check In the case of heavy caching attempt a naive site update check with voluntary refresh. Not fully idempotent? --- static/icons/feather/refresh-cw.svg | 15 ++++++++++++ static/js/index.ts | 1 + static/js/refresh.ts | 46 +++++++++++++++++++++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 static/icons/feather/refresh-cw.svg create mode 100644 static/js/refresh.ts (limited to 'static') diff --git a/static/icons/feather/refresh-cw.svg b/static/icons/feather/refresh-cw.svg new file mode 100644 index 0000000..1773a2f --- /dev/null +++ b/static/icons/feather/refresh-cw.svg @@ -0,0 +1,15 @@ + + + + + diff --git a/static/js/index.ts b/static/js/index.ts index e00907b..6de3166 100644 --- a/static/js/index.ts +++ b/static/js/index.ts @@ -1,4 +1,5 @@ import "./pager.ts"; +import "./refresh.ts"; import "./plumber.ts"; import "./instantpage.ts"; import "./contextmenu.ts"; diff --git a/static/js/refresh.ts b/static/js/refresh.ts new file mode 100644 index 0000000..5d44854 --- /dev/null +++ b/static/js/refresh.ts @@ -0,0 +1,46 @@ +(function () { + function check(url, method, callback) { + const http = new XMLHttpRequest(); + http.onreadystatechange = function () { + if (http.readyState === 4 && http.status === 200) { + if (callback) callback(http); + } + }; + http.open(method, url); + http.setRequestHeader("Pragma", "no-cache"); + http.setRequestHeader("Cache-Control", "no-cache"); + http.send(); + } + + function update(id) { + const url = self.location.href; + check(url, "HEAD", function (request) { + const local = document.querySelector('meta[name="last-modified"]').content; + const remote = request.getResponseHeader("last-modified") || local; + const localHour = local.substring(0, local.length - 9); + const remoteHour = remote.substring(0, remote.length - 9); + const modified = localHour !== remoteHour; + + if (modified) { + const indicator = document.querySelector("a[data-update]"); + check(url, "GET"); + indicator.href = url; + indicator.removeAttribute("id"); + indicator.dataset.update = "refresh"; + clearInterval(id); + } + console.log("R: " + remote); + console.log("L: " + local); + console.log("M: " + modified); + }); + } + + self.addEventListener("load", function () { + let meta = document.querySelector('meta[name="refresh"]'); + if (meta) meta = document.querySelector('meta[name="refresh"]').content; + const interval = meta || 3600000; + const monitor = setInterval(function () { + if (navigator.onLine) update(monitor); + }, interval); + }); +})(); -- cgit v1.2.3