Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

first commit #658

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
61 changes: 60 additions & 1 deletion 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', 'luishrd', 'bigknell'];

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 @@ -28,7 +44,50 @@
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');

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);
cardInfo.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.
Expand Down
100 changes: 86 additions & 14 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": "^1.3.6"
}
}