aboutsummaryrefslogtreecommitdiff
path: root/source/javascripts/github.js
diff options
context:
space:
mode:
authorZhiming Wang <zmwangx@gmail.com>2014-10-20 16:38:24 -0700
committerZhiming Wang <zmwangx@gmail.com>2014-10-20 16:38:24 -0700
commitd139da3a3277f73d7f01e4283d8dc01630a5317c (patch)
tree5a58aeb89869f09cc48543c0540a1fbd4910040e /source/javascripts/github.js
parentc434de5977c316c8406c00bb24221fa61ca8fe88 (diff)
downloadmy_new_personal_website-d139da3a3277f73d7f01e4283d8dc01630a5317c.tar.xz
my_new_personal_website-d139da3a3277f73d7f01e4283d8dc01630a5317c.zip
initial setup
Diffstat (limited to 'source/javascripts/github.js')
-rw-r--r--source/javascripts/github.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/source/javascripts/github.js b/source/javascripts/github.js
new file mode 100644
index 00000000..fc2bb12c
--- /dev/null
+++ b/source/javascripts/github.js
@@ -0,0 +1,32 @@
+var github = (function(){
+ function escapeHtml(str) {
+ return $('<div/>').text(str).html();
+ }
+ function render(target, repos){
+ var i = 0, fragment = '', t = $(target)[0];
+
+ for(i = 0; i < repos.length; i++) {
+ fragment += '<li><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p>'+escapeHtml(repos[i].description||'')+'</p></li>';
+ }
+ t.innerHTML = fragment;
+ }
+ return {
+ showRepos: function(options){
+ $.ajax({
+ url: "https://api.github.com/users/"+options.user+"/repos?sort=pushed&callback=?"
+ , dataType: 'jsonp'
+ , error: function (err) { $(options.target + ' li.loading').addClass('error').text("Error loading feed"); }
+ , success: function(data) {
+ var repos = [];
+ if (!data || !data.data) { return; }
+ for (var i = 0; i < data.data.length; i++) {
+ if (options.skip_forks && data.data[i].fork) { continue; }
+ repos.push(data.data[i]);
+ }
+ if (options.count) { repos.splice(options.count); }
+ render(options.target, repos);
+ }
+ });
+ }
+ };
+})();