Skip to content
Open
Show file tree
Hide file tree
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
93 changes: 77 additions & 16 deletions GitHubCard/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
import axios from 'axios';

/*
STEP 1: using axios, send a GET request to the following URL
(replacing the placeholder with your Github name):
https://api.github.com/users/<your name>
*/
const followersArray = [ 'tetondan', 'dustinmyers', 'justsml', 'crharding', 'luishrd', 'bigknell', 'dbehrashi' ];

for(let i = 0; i < followersArray.length; i++){
getGitCard(followersArray[i]);
}

function getGitCard(username){
axios.get(`https://api.github.com/users/${username}`)
.then(resp => {
document.querySelector('.cards').appendChild(githubCard(resp.data));
})
.catch(err => console.error(err))
}


/*
STEP 2: Inspect and study the data coming back, this is YOUR
Expand All @@ -12,11 +28,13 @@
Skip to STEP 3 (line 34).
*/


/*
STEP 4: Pass the data received from Github into your function,
and append the returned markup to the DOM as a child of .cards
*/


/*
STEP 5: Now that you have your own card getting added to the DOM, either
follow this link in your browser https://api.github.com/users/<Your github name>/followers,
Expand All @@ -28,27 +46,70 @@
user, and adding that card to the DOM.
*/

const followersArray = [];


function githubCard(gitInfo){
const card = document.createElement('div');
const img = document.createElement('img');
const cardInfo = document.createElement('div');
const name = document.createElement('h3');
const login = document.createElement('p');
const location = document.createElement('p');
const profile = document.createElement('p');
const profileLink = document.createElement('a');
const followers = document.createElement('p');
const following = document.createElement('p');
const bio = document.createElement('p');

// <div class="card">
// <img src={image url of user} />
// <div class="card-info">
// <h3 class="name">{users name}</h3>
// <p class="username">{users user name}</p>
// <p>Location: {users location}</p>
// <p>Profile:
// <a href={address to users github page}>{address to users github page}</a>
// </p>
// <p>Followers: {users followers count}</p>
// <p>Following: {users following count}</p>
// <p>Bio: {users bio}</p>
// </div>
// </div>

card.classList.add('card');
cardInfo.classList.add('card-info');
name.classList.add('name');
login.classList.add('username');

img.src = gitInfo.avatar_url;
img.alt = "github user";
name.textContent = gitInfo.name;
login.textContent = gitInfo.login;
location.textContent = gitInfo.location;
profile.textContent = "Profile";
profileLink.textContent = "Link to profile";
profileLink.href = gitInfo.html_url;
followers.textContent = `Followers: ${gitInfo.followers}`;
following.textContent = `Following: ${gitInfo.following}`;
bio.textContent = gitInfo.bio;

card.appendChild(img);
card.appendChild(cardInfo);
cardInfo.appendChild(name);
cardInfo.appendChild(login);
cardInfo.appendChild(location);
cardInfo.appendChild(profile);
profile.appendChild(profileLink);
cardInfo.appendChild(followers);
cardInfo.appendChild(following);
cardInfo.appendChild(bio);

return card;
}
/*
STEP 3: Create a function that accepts a single object as its only argument.
Using DOM methods and properties, create and return the following markup:

<div class="card">
<img src={image url of user} />
<div class="card-info">
<h3 class="name">{users name}</h3>
<p class="username">{users user name}</p>
<p>Location: {users location}</p>
<p>Profile:
<a href={address to users github page}>{address to users github page}</a>
</p>
<p>Followers: {users followers count}</p>
<p>Following: {users following count}</p>
<p>Bio: {users bio}</p>
</div>
</div>
*/

/*
List of LS Instructors Github username's:
Expand Down
43 changes: 43 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@
"eslint": "^8.10.0",
"parcel-bundler": "^1.12.4"
},
"dependencies": {}
"dependencies": {
"axios": "^0.26.1"
}
}