-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
181 lines (138 loc) · 3.69 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<style>
body {
box-sizing:border-box;
background-color:#eca5ff;
overflow:hidden;
border:20x dolid #fff;
}
header{
text-align:center;
margin-top:50px;
margin-bottom:10px;
font-size 60px;
}
.p{
font-weight:bold;
color:green;
font-size:25px;
}
.p span
{
text-decoration:underline;
color:red;
font-size:18px;
}
.div{
background-color:#ddd;
margin:auto 15px ;
overflow:hidden;
direction:rtl;
width:80%
}
.div div{
display:flex;
align-items:center;
}
.div a
{
text-decoration:none;
}
.div h3{
color:brown;
font-size:22px;
}
.div img{
margin:0 7px;
border-radius:50%;
width:60px;
height:60px;
}
.div span{
font-size:14px;
margin-top:-5px;
margin-right:7px
}
#spinner{
visibility:hidden;
width: 30px;
height: 30px;
border: 2px solid #f3f3f3;
border-top:3px solid green;
border-radius: 100%;
position: absolute;
top:0;
bottom:0;
left:0;
right: 0;
margin: auto;
animation: spin .5s infinite linear;
}
@keyframes spin {
from {
transform: rotate(0deg);
} to {
transform: rotate(360deg);
}
}
#spinner.show{
visibility:visible;
}
</style>
</head>
<body>
<div id="spinner"></div>
<header>
<h1>YouTube Comment App</h1>
<p class="p">Type Youtube Link id ,Like This one:<br> https://youtube/<span>fpDsw4vBzAg</span></p>
<form id="form">
<input type="text" id="videoId" placeholder="type youtube video id here" style="color:green">
<button type="submit" onclick="api();showSpinner()" style="font-weight:bold">Display Comments</button>
</form>
</header>
<div id="show"></div>
<script>
// show and hide spinner
const spinner = document.getElementById("spinner");
function showSpinner() {
spinner.classList.add("show");
}
function hideSpinner(){
spinner.classList.remove("show");
}
function api(){
$("form").submit(function(event){
event.preventDefault()
})
videoId = $("#videoId").val()
console.log(videoId)
apiKey = "AIzaSyBJ82gJco3jhHuXhZrqA48ZlHFMbcFtq9g";
url = "https://www.googleapis.com/youtube/v3/commentThreads?part=snippet&key="+apiKey+"&videoId="+videoId+"&maxResults=100";
async function gett(){
response = await fetch(url);
data = await response.json();
show = document.getElementById("show");
for (i=0;i<data.items.length;i++){
show.innerHTML+=
`
<div class="div">
<div>
<img src="${data.items[i].snippet.topLevelComment.snippet.authorProfileImageUrl}">
<a href="${data.items[i].snippet.topLevelComment.snippet.authorChannelUrl}"><h1>${data.items[i].snippet.topLevelComment.snippet.authorDisplayName}</h1></a>
</div>
<span>${data.items[i].snippet.topLevelComment.snippet.textDisplay}</span>
</div>
`
;
}
hideSpinner()
}
gett()
}
</script>
</body>
</html>