-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (79 loc) · 2.57 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vue.js Search App</title>
<!-- Include Vue.js from CDN -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"/>
</head>
<body>
<div id="app">
<div class="jumbotron text-center" style="background-color:#c5c4c4; color: white;">
<h3><strong>Github User Search</strong></h3>
<p>
<a href="https://www.github.com/alpha74">@alpha74</a>
</p>
</div>
<div class="container">
<input v-model="searchText" @input="handleSearch" placeholder="Start typing to search" size="30">
</br></br></br>
<table v-if="users.length" class="table table-hover table-borderless">
<thead>
<tr>
<th>Avatar</th>
<th>Username</th>
<th>Followers</th>
</tr>
</thead>
<tbody>
<tr v-for="user in users" :key="user.id">
<td><img v-bind:src="user.avatar_url" width="80" height="80" class="img-rounded pt-1"></td>
<td>{{ user.login }}</td>
<td>{{ user.followers }}</td>
</tr>
</tbody>
</table>
</div>
</div>
<script>
new Vue({
el: '#app',
data: {
searchText: '',
users: [],
typingTimer: null,
doneTypingInterval: 2000 // Call API after delay
},
methods: {
handleSearch() {
clearTimeout(this.typingTimer);
this.typingTimer = setTimeout(this.searchUsers, this.doneTypingInterval);
},
async searchUsers() {
if (this.searchText.length > 0) {
try {
const response = await fetch(`https://api.github.com/search/users?q=${this.searchText}&sort=followers`);
const data = await response.json();
// Fetch information for returned user list
const detailedUsers = await Promise.all(
data.items.map(async (item) => {
const userResponse = await fetch(item.url);
const userData = await userResponse.json();
return { ...item, followers: userData.followers };
})
);
this.users = detailedUsers;
} catch (error) {
console.error('Error fetching data:', error);
}
} else {
this.users = [];
}
}
}
});
</script>
</body>
</html>