-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathissue-loader.js
58 lines (46 loc) · 2.94 KB
/
issue-loader.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
var per_page = 15;
function loadMoreIssues(user, repo) {
// Which set of issues (page number) to be loaded is determined by how many issues are already loaded
var page = Math.ceil($('#' + user + '-' + repo + '-issues > div').length / per_page) + 1;
$.getJSON("https://api.github.com/repos/" + user + "/" + repo +"/issues?q=state:open&page=" + page + "&per_page=" + per_page, function(data) {
// Callback function
// Iterate over each issue
$(data).each(function(index) {
if (this.pull_request) {
// If this issue is a pull request, append empty div and continue
$('#' + user + '-' + repo + '-issues').append("<div></div>");
return; // Equivalent to continue in jQuery
}
var issue_url = this.html_url;
var title = this.title;
var author = this.user.login;
var author_url = this.user.html_url;
var labels = "";
var comments = this.comments;
var issue_type = '<a href="' + issue_url + '" target="_tab"><i class="pull-right fa fa-2x fa-external-link"></i></a>';
var repo_url = "https://github.com/" + user + "/" + repo;
var repo_name = repo;
$(this.labels).each(function(index) {
var link = 'https://github.com/'+user+'/'+repo+'/issues?q=is:issue is:open label:"' + this.name + '"';
labels += '<a href=\'' + link + '\' target="_blank" class="label-btn btn btn-success">' + this.name +'</a> ';
});
var issue_markup = '<div class="col col-12 col-sm-12 col-md-12 col-lg-6 total">' +
'<div class="issue">' +
'<blockquote>' +
'<p><a href="'+issue_url+'" target="_blank">' + title + '</a></p>' +
'<div class="issue1"><a href="' + author_url +'" target="_blank">' + author + '</a> in <a href="' + repo_url + '" target="_blank">' + repo_name + '</a></div>' +
'</blockquote>' +
labels +
'<a href="' + issue_url +'" target="_blank" class="comment-btn btn btn-success">' +
'<i class="fa fa-comment-o"></i> <span class="badge">' + comments + '</span>' +
'</a>' +
'</div>' +
'</div><br>' +
'</div>';
$('#' + user + '-' + repo + '-issues').append(issue_markup);
});
if ($('#' + user + '-' + repo + '-issues > div').length % per_page !== 0) {
$('#' + user + '-' + repo + '-load-more').remove();
}
});
}