forked from Dezenix/frontend-html-css-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
62 lines (51 loc) · 1.32 KB
/
script.js
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
const APIURL = "https://api.github.com/users/";
const form = document.getElementById("form");
const search = document.getElementById("search");
const main = document.getElementById("main");
async function getUser(username) {
try {
const { data } = await axios(APIURL + username);
createUserCard(data);
} catch (err) {
if (err.response.status === 404) {
createErrorCard("No profile with this userName");
}
}
}
function createUserCard(user) {
const cardHTML = `
<div class="card">
<div>
<img src="${user.avatar_url}" alt="${user.name}" class="avatar" />
</div>
<div class="user-info">
<h2>${user.name}</h2>
<p>
${user.bio}
</p>
<ul>
<li>${user.followers}<strong>Followers</strong></li>
<li>${user.following}<strong>following</strong></li>
<li>${user.public_repos}<strong>Repos</strong></li>
</ul>
</div>
</div>
`;
main.innerHTML = cardHTML;
}
function createErrorCard(msg) {
const cardHTML = `
<div class="card">
<h1>${msg}</h1>
</div>
`;
main.innerHTML = cardHTML;
}
form.addEventListener("submit", (e) => {
e.preventDefault();
const user = search.value;
if (user) {
getUser(user);
search.value = "";
}
});