50 project 50 days practice
github-profiles
<template>
<div class="github-profiles">
<div class="user-form" id="form">
<input
type="text"
id="search"
v-model="username"
@keydown.enter="getInfo"
autocomplete="off"
placeholder="Search a Github User"
/>
</div>
<main id="main" v-if="showCard && !reqError">
<div class="card">
<div>
<img :src="user.avatar_url" :alt="user.name" class="avatar" />
</div>
<div class="user-info">
<h1>{{ user.name }}</h1>
<p>{{ user.bio }}</p>
<ul>
<li>{{ user.followers }} <strong>Followers</strong></li>
<li>{{ user.following }} <strong>Followeing</strong></li>
<li>{{ user.public_repos }} <strong>Repos</strong></li>
</ul>
<div id="repos">
<a
class="repo"
:href="item.html_url"
v-for="(item, index) in reopTop5"
target="_blank"
:key="index"
>{{ item.name }}</a
>
</div>
</div>
</div>
<div class="card" v-if="reqError">
<h1>{{ ErrMessage }}</h1>
</div>
</main>
</div>
</template>
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
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
<script>
const APIURL = "https://api.github.com/users/";
const config = {
headers: {
Accept: "application/json",
},
};
export default {
data() {
return {
showCard: false,
reqError: false,
ErrMessage: "",
username: "",
user: "",
reopTop5: [],
};
},
methods: {
async getUser() {
try {
const data = await fetch(APIURL + this.username, config);
const json = await data.json();
this.user = json;
} catch (e) {
this.reqError = true;
this.ErrMessage = "No profile with this username";
}
},
async getRepos() {
try {
const data = await fetch(
APIURL + this.username + "/repos?sort=created",
config
);
const json = await data.json();
console.log(json);
this.reopTop5 = json.slice(0, 5);
} catch (e) {
this.reqError = true;
this.ErrMessage = "Problem fetching repos";
}
},
getInfo() {
this.showCard = true;
this.getUser();
this.getRepos();
},
},
};
</script>
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
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
<style scoped>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap");
* {
box-sizing: border-box;
}
.github-profiles {
background-color: #2a2a72;
color: #fff;
font-family: "Poppins", sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 60vh;
overflow: hidden;
margin: 0;
}
.user-form {
width: 100%;
max-width: 700px;
}
.user-form input {
width: 100%;
display: block;
background-color: #4c2885;
border: none;
border-radius: 10px;
color: #fff;
padding: 1rem;
margin-bottom: 2rem;
font-family: inherit;
font-size: 1rem;
box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05),
0 15px 40px rgba(0, 0, 0, 0.1);
}
.user-form input::placeholder {
color: #bbb;
}
.user-form input:focus {
outline: none;
}
.card {
max-width: 800px;
background-color: #4c2885;
border-radius: 20px;
box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05),
0 15px 40px rgba(0, 0, 0, 0.1);
display: flex;
padding: 3rem;
margin: 0 1.5rem;
}
.avatar {
border-radius: 50%;
border: 10px solid #2a2a72;
height: 150px;
width: 150px;
}
.user-info {
color: #eee;
margin-left: 2rem;
}
.user-info h2 {
margin-top: 0;
}
.user-info ul {
list-style-type: none;
display: flex;
justify-content: space-between;
padding: 0;
max-width: 400px;
}
.user-info ul li {
display: flex;
align-items: center;
}
.user-info ul li strong {
font-size: 0.9rem;
margin-left: 0.5rem;
}
.repo {
text-decoration: none;
color: #fff;
background-color: #212a72;
font-size: 0.7rem;
padding: 0.25rem 0.5rem;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
display: inline-block;
}
@media (max-width: 500px) {
.card {
flex-direction: column;
align-items: center;
}
.user-form {
max-width: 400px;
}
}
</style>
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
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