-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.js
86 lines (76 loc) · 2.72 KB
/
ui.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
class UI {
constructor() {
this.profile = document.getElementById('profile');
}
showProfile(user) {
this.profile.innerHTML = `
<div class="card card-body mb-3">
<div class="row">
<div class="col-md-3">
<img class="img-fluid mb-2" src="${user.avatar_url}">
<a href="${user.html_url}" target="_blank" class="btn btn-primary btn-block">Go to Profile</a>
</div>
<div class="col-md-9 mt-3">
<span class="badge badge-primary">Repos: ${user.public_repos}</span>
<span class="badge badge-secondary">Repos: ${user.public_gists}</span>
<span class="badge badge-info">Repos: ${user.followers}</span>
<span class="badge badge-success">Repos: ${user.following}</span>
<br><br>
<ul class="list-group">
<li class="list-group-item">Company: ${user.company}</li>
<li class="list-group-item">Location: ${user.location}</li>
<li class="list-group-item">Blog: ${user.blog}</li>
<li class="list-group-item">Date of creating: ${user.created_at}</li>
</ul>
</div>
</div>
</div>
<h3 class="page-heading mb-3">Latest Repos</h3>
<div id="repos"></div>
`;
}
showRepos(repos) {
let output = '';
repos.forEach((repo) => {
output += `
<div class="card card-body mb-2">
<div class="row">
<div class="col-md-6">
<a target="_blank" href="${repo.html_url}">${repo.full_name}</a>
</div>
<div class="col-md-6">
<span class="badge badge-primary mb-2">Stars: ${repo.stargazers_url}</span>
<span class="badge badge-secondary mb-2">Commits: ${repo.commits_url}</span>
<span class="badge badge-info mb-2">Created at: ${repo.created_at}</span>
</div>
</div>
</div>
`;
document.getElementById('repos').innerHTML = output;
});
}
clearProfile() {
this.profile.innerHTML = '';
}
showAlert(message, className) {
this.clearAlert();
const div = document.createElement('div');
div.className = `${className}`;
div.appendChild(document.createTextNode(message));
const parentElement = document.querySelector('.searchContainer');
const element = document.querySelector('.search');
parentElement.insertBefore(div, element);
//ugasi se posle 3 sec
setTimeout(() => {
document.querySelector('.alert').remove();
}, 3000);
}
// Clear alert
clearAlert() {
const alert = document.querySelector('.alert');
// ako vec postoji neki alert, on ce ga obrisati i napraviti novi
if (alert) {
alert.remove();
}
}
}