-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
37 lines (35 loc) · 930 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Add Github Class
const github = new Github();
// Add Ui Class
const ui = new Ui();
// Search Input
const searchInput = document.querySelector('#user');
searchInput.addEventListener('keyup', (e) => {
const userText = e.target.value.trim();
if (userText !== '') {
github
.getUser(userText)
.then((data) => {
if (data.profile.message === 'Not Found') {
// Show alert
ui.showAlert('No user found on this username.', 'danger');
ui.clearProfile();
ui.clearRepos();
ui.clearRepoTag();
} else {
ui.clearAlert();
// Show Profile
ui.showProfile(data.profile);
// Show repos
ui.showRepoTag();
ui.showRepos(data.repos);
}
})
.catch((error) => console.log(error));
} else {
// Clear Profile
ui.clearProfile();
ui.clearRepos();
ui.clearRepoTag();
}
});