Website for visualizing a persons github network.
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.

98 lines
3.3 KiB

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <link rel="icon" href="./favicon.ico" type="image/x-icon" />
  7. <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
  8. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  9. <link rel="stylesheet" href="./style.css" />
  10. <script
  11. src="https://code.jquery.com/jquery-3.3.1.min.js"
  12. integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
  13. crossorigin="anonymous">
  14. </script>
  15. <script src="js/githubAPI.js"></script>
  16. <script src="js/friendsGraph.js"></script>
  17. <script src="js/profileGen.js"></script>
  18. <script src="js/utilities.js"></script>
  19. <script type="text/javascript" src="js/vis/vis.js"></script>
  20. <link href="js/vis/vis-network.min.css" rel="stylesheet" type="text/css" />
  21. </head>
  22. <body>
  23. <div id="header-bar" class="d-flex flex-column flex-md-row shadow-sm align-items-center">
  24. <div id="header-title">
  25. <a href="./index.html">
  26. <img id="logo" src="./logo.svg" />
  27. </a>
  28. </div>
  29. <div id="navigation">
  30. <ul class="nav">
  31. <li class="nav-item">
  32. <a href="./GraphGenerator.html">
  33. Generate graphs
  34. </a>
  35. </li>
  36. <div class="nav-sep"></div>
  37. <li class="nav-item">
  38. <a href="https://github.com/jrtechs/github-graphs">
  39. View on GitHub
  40. </a>
  41. </li>
  42. <div class="nav-sep"></div>
  43. <li class="nav-item">
  44. <a href="./about.html">
  45. About
  46. </a>
  47. </li>
  48. </ul>
  49. </div>
  50. </div>
  51. <div class="main container">
  52. <div class="row">
  53. <div class="col-md-8 col-12">
  54. <h2 id="graphLabel"></h2>
  55. <div id="myGraph" class="w-100"></div>
  56. <pre id="eventSpan"></pre>
  57. </div>
  58. <div class="col-md-4 col-12 w-100">
  59. <div id="profileGen"></div>
  60. </div>
  61. </div>
  62. <script>
  63. document.addEventListener("keydown", event => {
  64. if (event.key === "Enter") {
  65. fetchUserInput();
  66. }
  67. })
  68. function fetchUserInput()
  69. {
  70. const inputedName = $("#txtUsername").val();
  71. createGraphs(inputedName);
  72. }
  73. function createGraphs(username)
  74. {
  75. options.width = $("#myGraph").width() + "px";
  76. options.height = "700px";
  77. createFriendsGraph(username, "myGraph", "graphLabel");
  78. profileGen(username, "profileGen");
  79. $("#searchBarTop").html("");
  80. }
  81. if(findGetParameter("name") !== null)
  82. {
  83. createGraphs(findGetParameter("name"))
  84. }
  85. </script>
  86. </div>
  87. </body>
  88. </html>