diff options
Diffstat (limited to '')
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | csci4131/hw7/public/contacts_old.html | 82 | 
2 files changed, 83 insertions, 1 deletions
@@ -7,4 +7,4 @@ GRTAGS  *.zip
  node_modules/
  **/package-lock.json
 -**/public/contacts_old.html
 +**/public/contacts.html
 diff --git a/csci4131/hw7/public/contacts_old.html b/csci4131/hw7/public/contacts_old.html new file mode 100644 index 0000000..d0131ee --- /dev/null +++ b/csci4131/hw7/public/contacts_old.html @@ -0,0 +1,82 @@ +<html>
 +  <head>
 +    <meta charset="utf-8">
 +    <meta name="viewport" content="width=device-width, initial-scale=1">
 +    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
 +    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
 +    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
 +        <script type="text/javascript" defer>
 +        //Get JSON
 +          var xmlhttp = new XMLHttpRequest();
 +          var url = "api/contacts";
 +          xmlhttp.onreadystatechange = function () {
 +            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
 +              var parse = JSON.parse(xmlhttp.responseText);
 +              process(parse);
 +            }
 +          }
 +          xmlhttp.open("GET", url, true);
 +          xmlhttp.send();
 +
 +          function process(a) {
 +            var table = document.getElementsByTagName("tbody")[0];
 +            var contacts = a;
 +            for (var i of contacts) {
 +              var contact = i;
 +              var row = table.insertRow();
 +              for (var j in contact) {
 +                if (j === "contact_id") continue;
 +                if (j === "website_url") {
 +                  var url = row.insertCell();
 +                  url.innerHTML = "<a href =" + contact[j] + ">" + contact[j] + "</a>";
 +                } else if (j === "email") {
 +                  var email = row.insertCell();
 +                  email.innerHTML = "<a href =mailto://" + contact[j] + ">" + contact[j] + "</a>";
 +                } else {
 +                  var value = row.insertCell();
 +                  value.innerHTML = contact[j];
 +                }
 +              }
 +            }
 +          }
 +
 +          function add() {
 +            
 +          }
 +
 +        </script>
 +  </head>
 +  <body>
 +    <nav class="navbar navbar-default">
 +      <div class="container-fluid">
 +        <ul class="nav navbar-nav">
 +          <li><a href="/"><b>Home</b></a></li>
 +          <li><a href="contacts"><b>Contacts</b></a></li>
 +          <li><a href="stock"><b>Stock Page</b></a></li>
 +          <li><a href="logout"><b>Logout</b></a></li>
 +        </ul>
 +      </div>
 +    </nav>
 +    <br><br>
 +
 +    <div class="container">
 +      <button type="button" id="add">Add Contact</button>
 +      <table class="table" id="contactsTable">
 +        <thead>
 +          <tr>
 +            <th scope="col">Name</th>
 +            <th scope="col">Category</th>
 +            <th scope="col">Location</th>
 +            <th scope="col">Contact Information</th>
 +            <th scope="col">Email</th>
 +            <th scope="col">Website <br> (URL) </th>
 +          </tr>
 +        </thead>
 +        <tbody></tbody>
 +      </table>
 +    </div>
 +    <script type="text/javascript">
 +    
 +    </script>
 +  </body>
 +</html>
\ No newline at end of file  | 
