-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
109 lines (84 loc) · 2.25 KB
/
main.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
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
const API_URL = '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(API_URL + username)
//console.log(data)
createUserCard(data)
getRepos(username)
} catch (err) {
if (err.response.status == 404) {
createErrorCard('Ardığınız kullanıcı bulunamadı :(')
}
}
}
form.addEventListener('submit', (e) => {
e.preventDefault()
const user = search.value
if (user) {
getUser(user)
search.value = ''
}
})
function createUserCard(user) {
const userName = user.name || user.login
const userBio = user.bio ? `<p>${user.bio}</p>` : ''
const cardHTML = `
<div class="card">
<img
class="user-image"
src="${user.avatar_url}"
alt="${user.name}"
/>
<div class="user-info">
<div class="user-name">
<h2>${userName}</h2>
<small>@${user.login}</small>
</div>
</div>
<p>
${userBio}
</p>
<ul>
<li>
<i class="fa-solid fa-user-group"></i> ${user.followers}
<strong>Followers</strong>
</li>
<li> ${user.following} <strong>Following</strong></li>
<li>
<i class="fa-solid fa-bookmark"></i> ${user.public_repos} <strong>Repository</strong>
</li>
</ul>
<div class="repos" id="repos"></div>
</div>
`
main.innerHTML = cardHTML
}
function createErrorCard(msg) {
const cardErrorHTML = `
<div class="card">
<h2> ${msg} </h2>
</div>
`
main.innerHTML = cardErrorHTML
}
async function getRepos(username) {
try {
const { data } = await axios(API_URL + username + '/repos')
addReposToCard(data)
} catch (err) {
createErrorCard('Repoları çekerken hata oluştu.')
}
}
function addReposToCard(repos) {
const reposEl = document.getElementById('repos')
repos.slice(0, 3).forEach((repo) => {
const reposLink = document.createElement('a')
reposLink.href = repo.html_url
reposLink.target = '_blank'
reposLink.innerHTML = ` <i class="fa-solid fa-book-bookmark"></i> ${repo.name} `
reposEl.appendChild(reposLink)
})
}