aboutsummaryrefslogtreecommitdiff
path: root/static/js/refresh.ts
blob: d30801468b23a2439042c21d4fffa2bf4077aea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
(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() {
    const url = self.location.href.split("#")[0].split("?")[0];
    check(url, "HEAD", function (request) {
      const local = document.querySelector('meta[name="last-modified"]').content;
      const remote = request.getResponseHeader("last-modified") || local;
      const localSecond = local.substring(0, local.length - 5);
      const remoteSecond = remote.substring(0, remote.length - 5);
      const modified = localSecond !== remoteSecond;

      if (modified) {
        const indicator = document.querySelector("a[data-update]");
        check(url, "GET");
        indicator.href = url;
        indicator.removeAttribute("id");
        indicator.dataset.update = "refresh";
        self.removeEventListener("blur", update);
        console.log("R: " + remote);
        console.log("L: " + local);
        console.log("M: " + modified);
      }
    });
  }

  self.addEventListener("blur", update);
})();