aboutsummaryrefslogblamecommitdiff
path: root/hovercard.js
blob: c8bd4911a8415680351caa177678135d6adca6f0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                           





                                

                                                                          

                                                  







                                                                                                                                          































                                                                                            














                                                                               
var curURL = document.URL
var baseURL = document.domain

// these will not attempt to get fetched, so can be used to override things
var hovercards = {
  curURL : {},
  baseURL: {}
};

var article = document.getElementsByTagName("article");

  if (article) {
    article = article[0];
  }

  function hover (target_link) {
    var hovercard_data = hovercards[target_link.href.replace(/\/+$/, "")];
    if (hovercard_data) {
      var new_box = document.createElement("div");
      new_box.classList.add("hovercard");
      new_box.innerHTML = "<strong>" + hovercard_data["title"] + "</strong>"
      if (hovercard_data["description"]) {
        new_box.innerHTML = new_box.innerHTML + "<p>" + hovercard_data["description"] + "</p>";
      }
      // if image available, add it
      if (hovercard_data["image"]) {
        new_box.innerHTML = "<img src='" + hovercard_data["image"] + "' alt='" + hovercard_data["title"] + "' /><br>" + new_box.innerHTML;
      }
      new_box.style.top = window.scrollY + target_link.getBoundingClientRect().top + "px";
      new_box.style.left = window.scrollX + target_link.getBoundingClientRect().left + "px";
      new_box.id = "tooltip";
      document.body.appendChild(new_box);
    }
  }

  function unhover (target_link) {
    var active_hovercard = document.getElementById("tooltip");

    if (active_hovercard) {
      active_hovercard.parentNode.removeChild(active_hovercard);
    }
  }

  var links = article.getElementsByTagName("a");

  for (var i = 0; i < links.length; i++) {
    links[i].addEventListener("mouseover", function() {
      hover(this);
    });
    links[i].addEventListener("mouseout", function() {
      unhover(this);
    });
    // these handlers are so that the hovercard will appear/disappear
    // with keyboard actions
    links[i].addEventListener("onfocus", function() {
      hover(this);
    });
    links[i].addEventListener("onfocusout", function() {
      unhover(this);
    });
    let url = links[i].href.replace(/\/+$/, "");
    if (!hovercards[url]) {
      let req = 'https://indieweb-glue.evgenykuznetsov.org/api/opengraph?url=';
      req += url;
      const r = encodeURI(req);
      var xmlhttp = new XMLHttpRequest();
      xmlhttp.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {
          hovercards[url] = JSON.parse(this.responseText);
        }
      };
      xmlhttp.open("GET", r, true);
      xmlhttp.send();
    }
  }