-
Notifications
You must be signed in to change notification settings - Fork 154
/
vuejs-component-demo.html
146 lines (139 loc) · 5.88 KB
/
vuejs-component-demo.html
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<title>Vuejs Demo</title>
<link rel="stylesheet" type="text/css"
href="https://bootswatch.com/4/cerulean/bootstrap.min.css" />
<link rel="stylesheet" type="text/css"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<style type="text/css">
.git-user-avatar {
width: 100px;
height: 100px;
}
.center{
text-align: center;
padding-top: 5px;
}
.space{
margin-top: 10px;
}
.git-stars{
color: goldenrodyellow;
}
[v-cloak]{
display: none;
}
</style>
</head>
<body>
<div class="container">
<div class="page-header"><h1>Vuejs Demo</h1></div>
<div class="row">
<div class="col-md-offset-3 col-md-6">
<h3>Select user</h3>
<select id="git-users" class="form-control" v-model="gituser">
<option value=""></option>
<option value="facebook">Facebook</option>
<option value="google">Google</option>
<option value="netflix">Netflix</option>
<option value="flipkart">Flipkart</option>
<option value="amzn">Amazon</option>
<option value="microsoft">Microsoft</option>
</select>
</div>
</div>
<div class="space"></div>
<div class="row" v-cloak>
<div class="col-md-offset-3 col-md-6">
<div class="alert alert-info center" v-if="!userSelected">
<i class="fa fa-exclamation-triangle"></i> Select a GitHub User
</div>
<div v-if="userSelected">
<div class="center" >
<loading v-if="loadingDetail" :message="'Loading Detail...'"></loading>
<div v-if="!loadingDetail">
<img :src="detail.avatar_url" class="git-user-avatar" />
<div class="space"></div>
Github User <a :href="detail.html_url">{{detail.login}}</a>
<div class="space"></div>
Name <a :href="detail.blog">{{detail.name}}</a>
<div v-if="isBio" class="space">
{{detail.bio}}
</div>
</div>
</div>
<div class="space"></div>
<div>
<loading v-if="loadingRepos" :message="'Loading Repos...'"></loading>
<ul class="list-group" v-if="!loadingRepos">
<li class="list-group-item" v-for="item in repos.items">
<span class="badge">
<i class="fa fa-star git-stars"></i> {{item.stargazers_count}}
</span>
<a :href="item.html_url">{{item.full_name}}</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<script src="https://vuejs.org/js/vue.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript">
var vm;
Vue.component('loading', {
template: '<div class="alert alert-info">\
<i class="fa fa-spinner fa-spin"></i> {{message}} \
</div>',
props: ["message"],
});
$(function() {
vm = new Vue({
el: ".container",
data: {
gituser: "",
loadingDetail: false,
loadingRepos: false,
detail: {},
repos: {}
},
computed: {
userSelected: function(){
return this.gituser != '';
},
isBio: function(){
return this.detail.bio != ''
&& this.detail.bio != null;
}
},
watch:{
gituser: function(){
if ( this.gituser){
getUserDetail(this.gituser);
getMostStarredRepos(this.gituser);
}
}
}
});
});
function getUserDetail(username){
vm.loadingDetail = true;
$.getJSON('https://api.github.com/users/'+username, function(data){
vm.detail = data;
vm.loadingDetail = false;
});
}
function getMostStarredRepos(username){
vm.loadingRepos = true;
$.getJSON('https://api.github.com/search/repositories?q=user:'
+username+'&sort=stars&per_page=10', function(data){
vm.repos = data;
vm.loadingRepos = false;
});
}
</script>
</body>
</html>