28_Github Profiles
๐ป ์ฃผ์ : ๊นํ๋ธ API๋ก ์ฌ์ฉ์๋ฅผ ๋ถ๋ฌ์ ์ฌ์ฉ์๋ฅผ ๊ฒ์ํด ํ๋กํ ๋ฐ์ดํฐ๋ฅผ ์ป์ด ์นด๋์ ํ์ํจ. ๋ํ, ์ฌ์ฉ์์ ์ต์ ๋ฆฌํฌ์งํ ๋ฆฌ 5๊ฐ๋ฅผ ๋ณด์ฌ์ค.


const APIURL = 'https://api.github.com/users/'
const main = document.getElementById('main')
const form = document.getElementById('form')
const search = document.getElementById('search')
async function getUser(username) {
try {
const { data } = await axios(APIURL + username)
createUserCard(data)
getRepos(username)
} catch(err) {
if(err.response.status == 404) {
createErrorCard('์ด ์ด๋ฆ์ ๊ฐ์ง ์ฌ์ฉ์๊ฐ ์์ต๋๋ค.')
}
}
}
async function getRepos(username) {
try {
const { data } = await axios(APIURL + username + '/repos?sort=created')
addReposToCard(data)
} catch(err) {
createErrorCard('Problem fetching repos')
}
}
function createUserCard(user) {
const userID = user.name || user.login
const userBio = user.bio ? `<p>${user.bio}</p>` : ''
const cardHTML = `
<div class="card">
<div>
<img src="${user.avatar_url}" alt="${user.name}" class="avatar">
</div>
<div class="user-info">
<h2>${userID}</h2>
${userBio}
<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 id="repos"></div>
</div>
</div>
`
main.innerHTML = cardHTML
}
function createErrorCard(msg) {
const cardHTML = `
<div class="card">
<h1>${msg}</h1>
</div>
`
main.innerHTML = cardHTML
}
function addReposToCard(repos) {
const reposEl = document.getElementById('repos')
repos
.slice(0, 5)
.forEach(repo => {
const repoEl = document.createElement('a')
repoEl.classList.add('repo')
repoEl.href = repo.html_url
repoEl.target = '_blank'
repoEl.innerText = repo.name
reposEl.appendChild(repoEl)
})
}
form.addEventListener('submit', (e) => {
e.preventDefault()
const user = search.value
if(user) {
getUser(user)
search.value = ''
}
})
https://api.github.com/users/ ๋ค์ ๊ฒ์ ์ฐฝ์ ์
๋ ฅ๋ ์ฌ์ฉ์ ID๊ฐ ๋ค์ด๊ฐ
์๋ ์ด๋ฏธ์ง๋ ๋์ ๊นํ๋ธ id๋ฅผ ์
๋ ฅํ์ ๋ ๋์ค๋ ์ ๋ณด์.
