-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
60 lines (47 loc) · 1.37 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// OOJS VERSION
// MODEL
var User = function(name, username, gravatar, email, repos){
this.name = name;
this.username = username;
this.gravatar = gravatar;
this.email = email;
this.repos = repos
}
// COLLECTION
var Users = []
// VIEW
function renderUser(){
var i = Users.length - 1
var userTemplate = "<div id='"+ Users[i].name +"'><h1>" + Users[i].name + "</h1><p>" + Users[i].username +"</p><p>" +Users[i].email+ "</p><p>Repos: " + Users[i].repos+ "</p><img src='"+ Users[i].gravatar +"' alt='github image' height='300' width='300'</img> </div>"
$('.jumbotron').append(userTemplate)
}
// CONTROLLER
document.addEventListener("DOMContentLoaded", function() {
$('.form').on('submit', queryUser)
});
function queryUser(event) {
event.preventDefault()
var username = $(this).serialize().split('=')[1]
startGithub(username)
}
function startGithub(username){
var githubUrl = 'https://api.github.com/users/' + username
$.ajax({
url: githubUrl,
type: 'GET',
dataType: 'json',
data: {}
}).done(function(result) {
initializeUser(result)
console.log("success", result);
}).fail(function() {
console.log("error");
}).always(function() {
console.log("complete");
});
}
function initializeUser(result){
user = new User(result.name, result.login, result.avatar_url, result.email, result.public_repos)
Users.push(user)
renderUser()
}