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.

105 lines
3.5 KiB

5 years ago
  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 align-center" id="searchBarTop">
  53. <nav class="navbar navbar-light bg-light justify-content-between">
  54. <a class="navbar-brand">Create Graph</a>
  55. <form class="form-inline">
  56. <input class="form-control mr-sm-2" id='txtUsername' type="search" placeholder="GitHub Username" aria-label="Search">
  57. <button class="btn btn-outline-success my-2 my-sm-0" onclick='fetchUserInput()' type='button'>Look Up</button>
  58. </form>
  59. </nav>
  60. </div>
  61. <div class="row">
  62. <div class="col-md-8 col-12">
  63. <div id="graphLoading"></div>
  64. <div id="myGraph" class="w-100"></div>
  65. <pre id="eventSpan"></pre>
  66. </div>
  67. <div class="col-md-4 col-12 w-100">
  68. <div id="profileGen"></div>
  69. </div>
  70. </div>
  71. </body>
  72. <script>
  73. document.addEventListener("keydown", event => {
  74. if (event.key === "Enter") {
  75. fetchUserInput();
  76. }
  77. })
  78. function fetchUserInput()
  79. {
  80. const inputedName = $("#txtUsername").val();
  81. createGraphs(inputedName);
  82. }
  83. function createGraphs(username)
  84. {
  85. options.width = $("#myGraph").width() + "px";
  86. options.height = "700px";
  87. createFriendsGraph(username, "myGraph", "graphLoading");
  88. profileGen(username, "profileGen");
  89. $("#searchBarTop").html("");
  90. }
  91. if(findGetParameter("name") !== null)
  92. {
  93. createGraphs(findGetParameter("name"))
  94. }
  95. </script>
  96. </html>