Some experiments with web applications
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

111 lines
2.8 KiB

  1. // server url
  2. var serverUrl = "http://widgets.vvo-online.de/abfahrtsmonitor/";
  3. // xmlhttp object function
  4. function getHTTPObject() {
  5. console.log("xml http object function");
  6. var xhr;
  7. if(window.XMLHttpRequest) {
  8. xhr = new XMLHttpRequest();
  9. } else if(window.ActiveXObject) {
  10. xhr = new ActiveXObject("Msxml2.XMLHTTP");
  11. }
  12. return xhr;
  13. }
  14. // ajax call function
  15. function ajaxCall(dataUrl, outputElement, callback) {
  16. console.log("ajax function");
  17. // get the xmlhttp object which is supported
  18. var request = getHTTPObject();
  19. outputElement.innerHTML = "Lade Daten ...";
  20. request.onreadystatechange = function() {
  21. if(request.readyState === 4 && request.status === 200) {
  22. //save ajax response
  23. var response = eval(request.responseText);
  24. // check if callback is a function
  25. if(typeof callback === "function") {
  26. callback(response);
  27. }
  28. }
  29. };
  30. request.open("get", dataUrl, true);
  31. request.send(null);
  32. }
  33. // wrap all in anonymous function to get out of global scope
  34. (function() {
  35. console.log("anonymous function");
  36. //var wurst = [["13","Prohlis","754"],["13","Prohlis","754"],["13","Prohlis","754"],["13","Prohlis","754"]];
  37. // get the search form
  38. var searchForm = document.getElementById("search-form");
  39. // haltestelle object
  40. var haltestelle = {
  41. getInfo : function(event) {
  42. console.log("getInfo function");
  43. // prevent submit default behaviour
  44. event.preventDefault();
  45. // get output area
  46. var target = document.getElementById("output");
  47. var hstName = document.getElementById("q").value;
  48. var hstUrl = serverUrl + "Abfahrten.do?ort=dresden&hst=" + hstName;
  49. ajaxCall(hstUrl, target, function(data) {
  50. var i;
  51. var y;
  52. var htmlOutput;
  53. var dataLength = data.length;
  54. htmlOutput = "<table>";
  55. htmlOutput += "<tr>";
  56. htmlOutput += "<th>Linie</th>";
  57. htmlOutput += "<th>Richtung</th>";
  58. htmlOutput += "<th>Abfahrt</th>";
  59. htmlOutput += "</tr>";
  60. for (i = 0; i < dataLength; i++) {
  61. htmlOutput += "<tr>";
  62. for (y = 0; y < 3; y++) {
  63. htmlOutput += "<td>" + data[i][y] + "</td>";
  64. }
  65. htmlOutput += "</tr>";
  66. }
  67. htmlOutput += "</table>";
  68. // print table into web page
  69. target.innerHTML = htmlOutput;
  70. });
  71. }
  72. };
  73. //event listeners
  74. searchForm.addEventListener("submit", haltestelle.getInfo, false);
  75. })(); // end of anonymous function