-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgb.html
79 lines (62 loc) · 2.85 KB
/
gb.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-blue-800 min-h-screen m-10">
<div id="cont" class="text-white text-center">
<form onsubmit="event.preventDefault(); boom();">
<input type="text" placeholder="enter your GitHub username" id="ip" class="rounded-xl text-center text-black m-1"> <br>
<input type="submit" id="sbmt" class="rounded-2xl m-2 text-black p-2">
</form>
</div>
<h1 id="prevTxt" class="text-center text-white border-4 border-white m-1">Data will load here</h1>
<div id="imagedharak" class="flex justify-center items-center border-4 border-white text-center text-white flex-col hidden">
<!-- <h1 id="txt">Data will load here</h1> -->
</div>
</div>
<script>
let boom = () => {
document.getElementById('sbmt').disabled=true;
let ip = document.getElementById('ip').value;
let imagedharak = document.querySelector('#imagedharak');
// let txt = document.getElementById('txt');
let image = document.querySelector('img');
let profileImage = document.createElement('img');
let txt =document.createElement('div')
txt.id='newdiv'
let newdiv = document.querySelector('#newdiv');
let prevTxt= document.getElementById('prevTxt');
fetch(`https://api.github.com/users/${ip}`)
.then(response => response.json())
.then(data => {
if (image) image.remove();
if (prevTxt) prevTxt.remove()
if(newdiv) newdiv.remove();
imagedharak.classList.remove('hidden');
if (data.avatar_url) {
profileImage.src = data.avatar_url;
profileImage.className = "h-20 w-20 rounded-full m-5 ";
imagedharak.appendChild(profileImage);
txt.innerHTML = `
<h1> Name: ${data.name ?? ' is Not Available For this user'} :) </h1>
<h1> Followers: ${data.followers ?? 0}, <br/> Following: ${data.following ?? 0} </h1>
<h1> Public Repository: ${data.public_repos ?? "Not Available"}</h1>
<h1> Email: ${data.email ?? "Not Available"}</h1>
<h1> Bio: ${data.bio ?? "Not Available"}</h1>
<h1> Location: ${data.location ?? "No Location Available"}</h1>
`; // here ?? is used to provide a default value if (data.name) is null or undefined
imagedharak.appendChild(txt)
}
else {
txt.innerHTML=`<h1> User Not Found</h1>`
imagedharak.appendChild(txt)
}
document.getElementById('sbmt').disabled=false;
});
}
</script>
</body>
</html>