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.

88 lines
3.2 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 type="text/javascript" src="js/vis/vis.js"></script>
  19. <link href="js/vis/vis-network.min.css" rel="stylesheet" type="text/css" />
  20. </head>
  21. <body>
  22. <div id="header-bar" class="d-flex flex-column flex-md-row shadow-sm align-items-center">
  23. <div id="header-title">
  24. <a href="./index.html">
  25. <img id="logo" src="./logo.svg" />
  26. </a>
  27. </div>
  28. <div id="navigation">
  29. <ul class="nav">
  30. <li class="nav-item">
  31. <a href="./FriendsGraph.html">
  32. Generate graphs
  33. </a>
  34. </li>
  35. <div class="nav-sep"></div>
  36. <li class="nav-item">
  37. <a href="https://github.com/jrtechs/github-graphs">
  38. View on GitHub
  39. </a>
  40. </li>
  41. <div class="nav-sep"></div>
  42. <li class="nav-item">
  43. <a href="./about.html">
  44. About
  45. </a>
  46. </li>
  47. </ul>
  48. </div>
  49. </div>
  50. <div class="main container">
  51. <div class="row" id="searchBarTop">
  52. <nav class="navbar navbar-light bg-light justify-content-between">
  53. <a class="navbar-brand">Create Graph</a>
  54. <form class="form-inline">
  55. <input class="form-control mr-sm-2" id='txtUsername' type="search" placeholder="GitHub Username" aria-label="Search">
  56. <button class="btn btn-outline-success my-2 my-sm-0" onclick='createGraphs()' type='button'>Look Up</button>
  57. </form>
  58. </nav>
  59. </div>
  60. <div class="row">
  61. <div class="col-md-10 col-12">
  62. <h2 id="graphLabel"></h2>
  63. <div id="myGraph" class="w-100"></div>
  64. <pre id="eventSpan"></pre>
  65. </div>
  66. <div class="col-md-2 col-12 w-100">
  67. <div id="profileGen"></div>
  68. </div>
  69. </div>
  70. </body>
  71. <script>
  72. function createGraphs()
  73. {
  74. options.width = $("#myGraph").width() + "px";
  75. options.height = "700px";
  76. const inputedName = $("#txtUsername").val();
  77. createFriendsGraph(inputedName, "myGraph", "graphLabel");
  78. profileGen(inputedName, "profileGen");
  79. $("#searchBarTop").html("");
  80. }
  81. </script>
  82. </html>