1
+ /*!
2
+ GitHub-Repo-Widget.js - Not depend on jQuery or Other Framework.
3
+ License: MIT
4
+ */
5
+ ( function ( ) {
6
+ var rendered = 'github-widget-rendered' ,
7
+ cssStr = '.path-divider{margin:0 .25em}.github-box *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.github-box{font-family:helvetica,arial,sans-serif;font-size:13px;line-height:18px;background:#fafafa;border:1px solid #ddd;color:#666;border-radius:3px}.github-box a{color:#4183c4;border:0;text-decoration:none}.github-box .github-box-title{position:relative;border-bottom:1px solid #ddd;border-radius:3px 3px 0 0;background:#fcfcfc;background:-moz-linear-gradient(#fcfcfc,#ebebeb);background:-webkit-linear-gradient(#fcfcfc,#ebebeb);}.github-box .github-box-title h3{word-wrap:break-word;font-family:helvetica,arial,sans-serif;font-weight:normal;font-size:16px;color:gray;margin:0;padding:10px 10px 10px 30px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAXBAMAAAD0LQLXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAASUExURQAAAL29vc3NzcLCwsjIyNbW1pvTNOEAAAABdFJOUwBA5thmAAAATElEQVQI12MIFoQAEQZFYwcGEGBkUDRUQLCcsYjRXhbqKkEGZQYGqJgSnKXCwGgsAGYpqyobG4WGhioyhBhDgClI3EQAqpaZwQBEAQARmA4G2o55nQAAAABJRU5ErkJggg==) 7px center no-repeat; width: auto;}.github-box .github-box-title h3 .repo{font-weight:bold}.github-box .github-box-title .github-stats{float:right;position:absolute;top:8px;right:10px;font-size:11px;font-weight:bold;line-height:21px;height:auto;min-height:21px}.github-box .github-box-title .github-stats a{display:inline-block;height:21px;color:#666;border:1px solid #ddd;border-radius:3px;padding:0 5px 0 18px;background: white url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAqBAMAAABB12bjAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAYUExURf///5mZmdbW1u/v7/r6+rGxscXFxaSkpHLccIMAAABsSURBVBjTY2CgBmBODTOAsFgSi9TFHMBMc1Fmk8BiEItJUMhQWFFQAZXJoC7q7FJYhNBmgG7YQAIWMYTvEExXIbh8oAJWQQe4IGsIlKmowAZVwaKowgxlMgkKmwtCjRAUYBSEqnVkYBAm39EALMwNXwql3eYAAAAASUVORK5CYII=) no-repeat}.github-box .github-box-title .github-stats .watchers{border-right:1px solid #ddd}.github-box .github-box-title .github-stats .forks{background-position:-4px -21px;padding-left:15px}.github-box .github-box-content{padding:10px;font-weight:300}.github-box .github-box-content p{margin:0}.github-box .github-box-content .link{font-weight:bold}.github-box .github-box-download{position:relative;border-top:1px solid #ddd;background:white;border-radius:0 0 3px 3px;padding:10px;height:auto;min-height:24px;}.github-box .github-box-download .updated{word-wrap:break-word;margin:0;font-size:11px;color:#666;line-height:24px;font-weight:300;width:auto}.github-box .github-box-download .updated strong{font-weight:bold;color:#000}.github-box .github-box-download .download{float:right;position:absolute;top:10px;right:10px;height:24px;line-height:24px;font-size:12px;color:#666;font-weight:bold;text-shadow:0 1px 0 rgba(255,255,255,0.9);padding:0 10px;border:1px solid #ddd;border-bottom-color:#bbb;border-radius:3px;background:#f5f5f5;background:-moz-linear-gradient(#f5f5f5,#e5e5e5);background:-webkit-linear-gradient(#f5f5f5,#e5e5e5);}.github-box .github-box-download .download:hover{color:#527894;border-color:#cfe3ed;border-bottom-color:#9fc7db;background:#f1f7fa;background:-moz-linear-gradient(#f1f7fa,#dbeaf1);background:-webkit-linear-gradient(#f1f7fa,#dbeaf1);}@media (max-width: 767px) {.github-box .github-box-title{height:auto;min-height:60px}.github-box .github-box-title h3 .repo{display:block}.github-box .github-box-title .github-stats a{display:block;clear:right;float:right;}.github-box .github-box-download{height:auto;min-height:46px;}.github-box .github-box-download .download{top:32px;}}' ;
8
+ function _getAttribute ( node , name , defaultValue ) {
9
+ return node . getAttribute ( name ) || defaultValue ;
10
+ }
11
+ function _querySelector ( dom , sel ) {
12
+ return dom . querySelector ( sel ) ;
13
+ }
14
+ function _setHtml ( dom , h ) {
15
+ dom . innerHTML = h ;
16
+ }
17
+ function _appendCss ( ) {
18
+ var x = document . createElement ( 'div' ) ;
19
+ x . innerHTML = 'x<style>' + cssStr + '</style>' ;
20
+ document . getElementsByTagName ( 'head' ) [ 0 ] . appendChild ( x . lastChild ) ;
21
+ }
22
+ function _renderGitHubWidget ( repoEle , repo ) {
23
+ repo = JSON . parse ( repo ) ;
24
+ _setHtml ( _querySelector ( repoEle , '.watchers' ) , repo . watchers ) ;
25
+ _setHtml ( _querySelector ( repoEle , '.forks' ) , repo . forks ) ;
26
+ _setHtml ( _querySelector ( repoEle , '.description span' ) , repo . description ) ;
27
+ _setHtml ( _querySelector ( repoEle , '.updated' ) , 'Latest commit to the <strong>' + repo . default_branch + '</strong> branch on <strong>' + repo . pushed_at . substring ( 0 , 10 ) + '</strong>' ) ;
28
+
29
+ if ( repo . homepage !== null ) {
30
+ _setHtml ( _querySelector ( repoEle , '.link' ) , '<a href="' + repo . homepage + '">' + repo . homepage + '</a>' ) ;
31
+ }
32
+ repoEle . setAttribute ( rendered , '1' ) ;
33
+ }
34
+ function _ajaxReq ( repoEle , repo ) {
35
+ var xmlhttp ;
36
+ if ( window . XMLHttpRequest ) {
37
+ //code for IE7,firefox chrome and above
38
+ xmlhttp = new XMLHttpRequest ( ) ;
39
+ } else {
40
+ //code for Internet Explorer
41
+ xmlhttp = new ActiveXObject ( 'Microsoft.XMLHTTP' ) ;
42
+ }
43
+ xmlhttp . onreadystatechange = function ( ) {
44
+ if ( xmlhttp . readyState == 4 && xmlhttp . status == 200 ) {
45
+ _renderGitHubWidget ( repoEle , xmlhttp . responseText ) ;
46
+ } else {
47
+ }
48
+ } ;
49
+ xmlhttp . open ( 'GET' , 'https://api.github.com/repos/' + repo , true ) ;
50
+ xmlhttp . send ( ) ;
51
+ }
52
+ function _init ( ) {
53
+ var github_eles = document . querySelectorAll ( '.github-widget' ) , repoEle , repo , vendorName , repoName , vendorUrl , repoUrl , widget ;
54
+ for ( var i = 0 ; i < github_eles . length ; i ++ ) {
55
+ repoEle = github_eles [ i ] ;
56
+ if ( ! _getAttribute ( repoEle , rendered , '' ) ) {
57
+ repo = _getAttribute ( repoEle , 'data-repo' , '' ) ,
58
+ vendorName = repo . split ( '/' ) [ 0 ] ,
59
+ repoName = repo . split ( '/' ) [ 1 ] ,
60
+ vendorUrl = 'http://github.com/' + vendorName ,
61
+ repoUrl = 'http://github.com/' + vendorName + '/' + repoName ;
62
+
63
+ widget = '<div class="github-box repo">' +
64
+ '<div class="github-box-title">' +
65
+ '<h3>' +
66
+ '<a class="owner" href="' + vendorUrl + '" title="' + vendorUrl + '">' + vendorName + '</a>' +
67
+ '<span class="path-divider">/</span>' +
68
+ '<a class="repo" href="' + repoUrl + '" title="' + repoUrl + '">' + repoName + '</a>' +
69
+ '</h3>' +
70
+ '<div class="github-stats">' +
71
+ '<span class="github-text">Star </span>' +
72
+ '<a class="watchers" href="' + repoUrl + '/watchers" title="See watchers">?</a>' +
73
+ '<span class="github-text"> Fork </span>' +
74
+ '<a class="forks" href="' + repoUrl + '/network/members" title="See forkers">?</a>' +
75
+ '</div>' +
76
+ '</div>' +
77
+ '<div class="github-box-content">' +
78
+ '<p class="description"><span></span> — <a href="' + repoUrl + '#readme">Read More</a></p>' +
79
+ '<p class="link"></p>' +
80
+ '</div>' +
81
+ '<div class="github-box-download">' +
82
+ '<div class="updated"></div>' +
83
+ '<a class="download" href="' + repoUrl + '/zipball/master" title="Get repository">Download as zip</a>' +
84
+ '</div>' +
85
+ '</div>' ;
86
+ _setHtml ( repoEle , widget ) ;
87
+ _ajaxReq ( repoEle , repo ) ;
88
+ }
89
+ }
90
+ }
91
+ _appendCss ( ) ;
92
+ _init ( ) ;
93
+ window . GithubRepoWidget = {
94
+ init : _init
95
+ } ;
96
+ } ) ( ) ;
0 commit comments