Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions components/GithubCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@
// 4️⃣ Pass the data into a function to create a user card.
// 5️⃣ Append the created card to the `.cards` container in the DOM.

//--------------------------------//


const API_URL = "https://api.github.com/users/mukhtaarbatuun"

function fetchGitHub(){
return axios.get(API_URL)
.then(response => response.data)
.catch(error => console.log(error))

}

// 🛠️ STEP 2: Create a Function to Build the Card
// 1️⃣ Write a function that takes a **user object** as a parameter.
Expand All @@ -26,12 +37,70 @@
// 3️⃣ Return the created card element.


//-----------------------------------------------//

function createUserCard(user){

const card = document.createElement("div")
card.classList.add("card")

const img = document.createElement("img")
img.src =user.avatar_url

const Info = document.createElement("div")
Info.classList.add("card-info")

const name = document.createElement("h3")
name.classList.add("name")
name.textContent = user.name

const username = document.createElement("p")
username.classList.add("username")
username.textContent = user.login

const location = document.createElement("p")
location.textContent = `location: ${user.location}`

const profile = document.createElement("p")
profile.innerHTML = `profile: <a href="${user.html_url}">${user.html_url}</a>`


const followers = document.createElement("p")
followers.textContent =`followers: ${user.followers}`

const following = document.createElement("p")
following.textContent =`following: ${user.following}`

const bio = document.createElement("p")
bio.textContent = `Bio: ${user.bio}`

Info.append(name, username, location, profile, followers, following, bio)

card.append(img, Info)




return card

}

// 🛠️ STEP 3: Add the Card to the DOM
// 1️⃣ Call the function with the GitHub data.
// 2️⃣ Select the `.cards` container using `document.querySelector('.cards')`.
// 3️⃣ Append the created card to the `.cards` container.


//---------------------------------------------------//

fetchGitHub() .then(user => {

const cardsContainer = document.querySelector('.cards')
const userCard = createUserCard(user)
cardsContainer.append(userCard)



// 🛠️ STEP 4: Fetch Followers Data
// 1️⃣ Use the `followers_url` from the GitHub user data or
//Use this: https://api.github.com/users/your_username/followers
Expand All @@ -42,6 +111,25 @@
// - Append the card to the `.cards` container.




axios.get(user.followers_url)
.then(response => {
const followers = response.data;

followers.forEach(follower => {

axios.get(follower.url)
.then(followerRes => {
const followerCard = createUserCard(followerRes.data);
cardsContainer.append(followerCard);
})
.catch(err => console.log(err));
});
})
.catch(err => console.log(err));
});

// 🛠️ STRETCH: Add More GitHub Users
// 1️⃣ Create an array `followersArray` with at least 5 GitHub usernames.
// 2️⃣ Loop through the array and send a GET request for each username.
Expand Down