-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepos.html
146 lines (129 loc) · 4.64 KB
/
repos.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<style>
body {
word-break: break-all;
}
</style>
<body>
<div id="app" class="container">
<div>
<div class="form-group">
<br>
<div style="text-align: center">
<label for="username">GitHub Username</label>
</div>
<input class="form-control" placeholder="Enter the GitHub Username" id="username">
</div>
<div style="text-align: center">
<button id="submit" class="btn btn-primary">Get Repositories</button>
</div>
</div>
<br>
<div class="alert alert-danger" role="alert" id="Fill_Username" style="display: none">
<div style="text-align: center">
Fill Username
</div>
</div>
<div class="alert alert-danger" role="alert" id="Wrong_Username" style="display: none">
<div style="text-align: center">
Wrong Username
</div>
</div>
<div style="text-align: center">
<div class="spinner-border" role="status" id="loader" style="display: none">
</div>
</div>
<div id="information">
<ul class="list-group mx-auto mb-5">
<li class="list-group-item" v-for="x in data">
<p><strong>Repo:</strong> {{x['name']}}</p>
<p><strong>Description:</strong> {{x['description']}}</p>
<p><strong>URL:</strong> <a :href="x['html_url']" target="_blank">{{x['html_url']}}</a></p>
</li>
</ul>
<h3 style="text-align: center;display: none" id="no_more">
No more repos
</h3>
<br>
</div>
</div>
<script>
window.page = 0;
window.username = undefined;
window.max = false;
function get_repos(username) {
if (window.username === username){
window.page += 1;
if (window.max){
return ;
}
}else {
window.page = 0;
window.username = username;
window.max = false;
}
$("#loader").css("display", "");
$.get(`https://api.github.com/users/${username}/repos?page=${window.page + 1}`, function(data){
console.log(data);
if (data.length === 0){
$("#no_more").css("display", "");
window.max = true;
}else {
$("#no_more").css("display", "none");
}
if (window.page === 0){
myObject.$data.data = data;
}else {
myObject.$data.data = myObject.$data.data.concat(data);
}
$("#Wrong_Username").css("display", "none");
$("#loader").css("display", "none")
}).fail(function() {
console.log("Problem")
$('#Wrong_Username').css("display", "")
$("#loader").css("display", "none")
});
}
const myObject = new Vue({
el: '#information',
data: {
data: [],
}
})
$(window).scroll(function() {
if(Math.ceil($(window).scrollTop()) === Math.ceil(($(document).height() - $(window).height()))) {
get_repos(window.username)
}
});
$('#submit').on("click", function (){
const username = $("#username").val();
get_repos(username)
})
$('#username').keypress(function(event){
const keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
$("#submit").click();
}
});
document.getElementsByTagName("html")[0].addEventListener("keydown", function(event){
const keycode = (event.keyCode ? event.keyCode : event.which);
console.log(keycode)
if (keycode === 191){
event.preventDefault();
document.getElementById("username").focus();
document.getElementById("username").value = "";
}
})
</script>
</body>