-
Notifications
You must be signed in to change notification settings - Fork 131
Finished Project #112
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
base: main
Are you sure you want to change the base?
Finished Project #112
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,13 @@ | ||
| # GitHub Tracker | ||
|
|
||
| Replace this readme with your own information about your project. | ||
|
|
||
| Start by briefly describing the assignment in a sentence or two. Keep it short and to the point. | ||
| This weeks assignment was to create a Tracker for Github. | ||
|
|
||
| ## The problem | ||
|
|
||
| Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next? | ||
| I struggled a lot this week, I took several approaches until i finnaly got it to work I can honesty say It was like walking in the dark. | ||
| I just wished I had more time to read about the topic and truly understand it. | ||
|
|
||
|
|
||
| ## View it live | ||
|
|
||
| Every project should be deployed somewhere. Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about. | ||
| sjupunktertracker.netlify.app |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,34 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <title>Project GitHub Tracker</title> | ||
| <link rel="stylesheet" href="./style.css" /> | ||
| </head> | ||
| <body> | ||
| <h1>GitHub Tracker</h1> | ||
| <h2>Projects:</h2> | ||
| <main id="projects"></main> | ||
|
|
||
| <!-- This will be used to draw the chart 👇 --> | ||
| <canvas id="chart"></canvas> | ||
|
|
||
| <script src="./script.js"></script> | ||
| <script src="./chart.js"></script> | ||
| </body> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>GitHub Tracker</title> | ||
| <link rel="stylesheet" href="./style.css" /> | ||
| </head> | ||
| <body class="body"> | ||
| <section class="user-data" id="userData"> | ||
| <h1 class="header">GitHub Tracker</h1> | ||
| </section> | ||
| <h2 class="project-header">Projects</h2> | ||
| <section class="filters-sorting"> | ||
| <p class="filters-sorting-heading">Filter by</p> | ||
| <button class="sort-btn" id="filterLangJsBtn">JavaScript</button> | ||
| <button class="sort-btn" id="filterLangHtmlBtn">HTML</button> | ||
| <button class="sort-btn" id="filterAllBtn">All</button> | ||
| </section> | ||
| <section class="filters-sorting"> | ||
| <p class="filters-sorting-heading">Sort by:</p> | ||
| <button class="sort-btn" id="sortSizeBtn">size</button> | ||
| <button class="sort-btn" id="sortCreatedBtn">created</button> | ||
| <button class="sort-btn" id="sortNameBtn">name</button> | ||
| </section> | ||
| <main class="projects" id="projects"></main> | ||
| <!-- This will be used to draw the chart 👇 --> | ||
| <canvas class="chart" id="chart"></canvas> | ||
| <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> | ||
| <script src="./chart.js"></script> | ||
| <script src="./script.js"></script> | ||
| </body> | ||
| </html> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,208 @@ | ||
| // GITHUB API | ||
| const USER = 'Dopest0727' | ||
| const PARENT_OWNER = 'Technigo' | ||
| const REPOS_URL = `https://api.github.com/users/${USER}/repos` | ||
| const USER_URL = `https://api.github.com/users/${USER}` | ||
|
|
||
| // GLO VAR | ||
| const projects = document.getElementById('projects') | ||
| const userData = document.getElementById('userData') | ||
|
|
||
| // FILTER BY | ||
| const filterAllBtn = document.getElementById('filterAllBtn') | ||
| const filterLangJsBtn = document.getElementById('filterLangJsBtn') | ||
| const filterLangHtmlBtn = document.getElementById('filterLangHtmlBtn') | ||
|
|
||
| const sortSizeBtn = document.getElementById('sortSizeBtn') | ||
| const sortCreatedBtn = document.getElementById('sortCreatedBtn') | ||
| const sortNameBtn = document.getElementById('sortNameBtn') | ||
|
|
||
| let reposArr = [] | ||
| let reposData = {} | ||
|
|
||
| const pullReqData = { | ||
| total: 19, | ||
| done: 4, | ||
| } | ||
|
|
||
| const fetchAllReposFromUser = () => { | ||
| // FETCH MY REPOS | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good job adding the comments making it more clear for a a reviews |
||
| fetch(REPOS_URL) | ||
| .then(res => res.json()) | ||
| .then(allRepos => { | ||
| // FILTER FORKED REPOS | ||
| let filteredRepos = allRepos.filter( | ||
| repo => repo.name.includes('project-') && repo.fork | ||
| ) | ||
| sortRepos(filteredRepos, 'pushed_at', true) | ||
| fetchFullRepo(filteredRepos) | ||
| }) | ||
| .catch(err => alert('fetchAllReposFromUser error: ', err)) | ||
| } | ||
|
|
||
| const fetchFullRepo = repos => { | ||
| // FETCH DATA FROM REPOS | ||
| Promise.all(repos.map(repo => fetch(repo.url))) | ||
| .then(res => Promise.all(res.map(res => res.json()))) | ||
| .then(repos => { | ||
| repos.forEach(repo => { | ||
| if (repo.parent.owner.login === PARENT_OWNER) { | ||
| reposArr.push(repo) | ||
| reposData[repo.name] = { pullRequest: '', authors: '', commits: '' } | ||
|
|
||
| generateProjectCard(repo) | ||
| const COMMITS_URL = `https://api.github.com/repos/${USER}/${repo.name}/commits?per_page=100` | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good job inceasing the amout results from 30 to 100 |
||
| fetchCommits(COMMITS_URL, repo) | ||
| } | ||
| }) | ||
| }) | ||
| .catch(err => alert('fetchFullRepo error:', err)) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice :) |
||
| } | ||
|
|
||
| const generateProjectCard = repo => { | ||
| // GITHUB PROJJECT CARD GENERATOR | ||
| projects.innerHTML += /*html*/ ` | ||
| <div class="repo-info"> | ||
| <div class="repo-heading"> | ||
| <p class="repo"><a href=${repo.html_url} target="_blank">${repo.name}</a></p> | ||
| <p class="lang ${repo.language}">${repo.language}</p> | ||
| </div> | ||
| <p class="info">From ${repo.parent.owner.login}, default branch: ${repo.default_branch}</p> | ||
| <p class="pull" id="pull-${repo.name}">Pull request</p> | ||
| <div class="numbers"> | ||
| <p class="commit" id="commit-${repo.name}">Commits: </p> | ||
| <p class="size">Size: ${repo.size}</p> | ||
| </div> | ||
| <p class="update">Updated: ${new Date(repo.pushed_at).toDateString()}</p> | ||
| <p class="collaboration" id="collaborators-${repo.name}">Commit authors:</p> | ||
| </div> | ||
| ` | ||
| } | ||
|
|
||
| const fetchCommits = (myCommitsUrl, repo) => { | ||
| // FETCH COMMITS | ||
| fetch(myCommitsUrl) | ||
| .then(res => res.json()) | ||
| .then(data => { | ||
| // FILTER COMMITS AFTER REPO WAS FORKES | ||
| const commitsSinceFork = data.filter(commit => commit.commit.author.date > repo.created_at) | ||
| // storing necessary data for later sorting | ||
| reposData[repo.name].commits = commitsSinceFork | ||
| populateCommits(repo, commitsSinceFork) | ||
| getCollaborators(commitsSinceFork, repo) | ||
| }) | ||
| .catch(err => alert('fetchCommits error: ', repo.name, err)) | ||
| } | ||
|
|
||
| const populateCommits = (repo, commits) => { | ||
| document.getElementById(`commit-${repo.name}`).innerHTML += ` ${commits.length}, ` | ||
| } | ||
|
|
||
| const getCollaborators = (commits, repo) => { | ||
| // filter out each commit author and stor for later sort | ||
| let authors = {} | ||
| commits.forEach(commit => { | ||
| if (!Object.keys(authors).includes(commit.author.login)) { | ||
| authors[commit.author.login] = { | ||
| avatar_url: commit.author.avatar_url, | ||
| html_url: commit.author.html_url, | ||
| } | ||
| } | ||
| }) | ||
| reposData[repo.name].authors = authors | ||
| populateCollaborators(authors, repo) | ||
| fetchPullRequestsArray(repo, Object.keys(authors)) | ||
| } | ||
|
|
||
| const populateCollaborators = (authors, repo) => { | ||
| for (const author in authors) { | ||
| if (Object.keys(authors).length > 1) { | ||
| document.getElementById( | ||
| `collaborators-${repo.name}` | ||
| ).innerHTML += `<a href="${authors[author].html_url}" target="_blank"><img class="avatar-collaborator" src="${authors[author].avatar_url}"></a>` | ||
| } else { | ||
| document.getElementById(`collaborators-${repo.name}`).innerHTML = | ||
| 'Individual project' | ||
| } | ||
| } | ||
| } | ||
|
Comment on lines
+101
to
+128
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice detail to let users know your collabs for the project! |
||
|
|
||
| const fetchPullRequestsArray = (repo, authors) => { | ||
| // FETCH PULL REQUEST FROM REPO | ||
| const PULL_URL = `https://api.github.com/repos/${PARENT_OWNER}/${repo.name}/pulls?per_page=100` | ||
| fetch(PULL_URL) | ||
| .then(res => res.json()) | ||
| .then(data => { | ||
| // only pick pull requests connected to user | ||
| const myPullReq = data.find(pull => authors.includes(pull.user.login)) | ||
| if (myPullReq) { | ||
| pullReqData.done++ | ||
| reposData[repo.name].pullRequest = myPullReq | ||
| updatePieChart(pieChart, pullReqData.done) | ||
| } | ||
| populatePullRequest(myPullReq, repo) | ||
| }) | ||
| .catch(err => alert('fetchPullRequestsArray error:', err)) | ||
| } | ||
|
|
||
| const populatePullRequest = (myPullReq, repo) => { | ||
| if (myPullReq) { | ||
| document.getElementById( | ||
| `pull-${repo.name}` | ||
| ).innerHTML = `<a href=${myPullReq.html_url} target="_blank">Pull request</a>` | ||
| } else { | ||
| document.getElementById(`pull-${repo.name}`).innerHTML = 'No pull request' | ||
| } | ||
| } | ||
|
|
||
| const fetchUser = () => { | ||
| fetch(USER_URL) | ||
| .then(res => res.json()) | ||
| .then(data => { | ||
| userData.innerHTML += `<a href="${data.html_url}" target="_blank"><img class="avatar-user" src="${data.avatar_url}"></a><p class="user-name">${data.login}</p>` | ||
| }) | ||
| .catch(err => alert('fetchCommits error: ', err)) | ||
| } | ||
|
|
||
| const sortRepos = (array, param, init) => { | ||
| array.sort((a, b) => { | ||
| if (a[param] > b[param]) { | ||
| return -1 | ||
| } else if (a[param] < b[param]) { | ||
| return 1 | ||
| } else { | ||
| return 0 | ||
| } | ||
| }) | ||
| if (param === 'name') array.reverse() | ||
| if (!init) regenerateProjectCards(reposArr) | ||
| } | ||
|
|
||
| const filterRepos = (array, lang) => { | ||
| if (lang !== 'All') { | ||
| const filteredReposArr = array.filter(repo => repo.language === lang) | ||
| regenerateProjectCards(filteredReposArr) | ||
| } else { | ||
| regenerateProjectCards(array) | ||
| } | ||
| } | ||
|
|
||
| const regenerateProjectCards = repos => { | ||
| projects.innerHTML = '' | ||
| repos.forEach(repo => { | ||
| generateProjectCard(repo) | ||
| populateCommits(repo, reposData[repo.name].commits) | ||
| populateCollaborators(reposData[repo.name].authors, repo) | ||
| populatePullRequest(reposData[repo.name].pullRequest, repo) | ||
| }) | ||
| } | ||
|
|
||
| sortSizeBtn.addEventListener('click', () => sortRepos(reposArr, 'size', false)) | ||
| sortNameBtn.addEventListener('click', () => sortRepos(reposArr, 'name', false)) | ||
| sortCreatedBtn.addEventListener('click', () => sortRepos(reposArr, 'created_at', false)) | ||
| filterLangJsBtn.addEventListener('click', () => filterRepos(reposArr, 'JavaScript')) | ||
| filterLangHtmlBtn.addEventListener('click', () => filterRepos(reposArr, 'HTML')) | ||
| filterAllBtn.addEventListener('click', () => filterRepos(reposArr, 'All')) | ||
|
|
||
| fetchAllReposFromUser() | ||
| fetchUser() | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well done, I like the way you sorted this!