Now that we have the communication working with the Open PHACTS LDA, it is time to make a nice GUI. I will not go into details, but we can use basic JavaScript to iterate over the JSON results, and, for example, create a HTML table:

In fact, I hooked in some HTML onClick() functionality so that when you click one of the compound names, you get further details (under Compound Details), though that only outputs the ConceptWiki URI at this moment. A simple for-loop does the heavy work:

html = "<table>";
for (var i=0; i<response.length; i++) {
  html += "<tr>";
  html += "<td>";
  dataJSON = JSON.stringify(response[i]);
  //   dataJSON.replace(/"/g, "'");
  html += "Name: <span>" + response[i].prefLabel + "</span>";
  html += "</td>";
  html += "</tr>";
}
html += "</table>";
document.getElementById("table").innerHTML = html;

So, we’re set to teach the students all the basics of programming: loops, variables, functions, etc.