-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
104 lines (96 loc) · 2.98 KB
/
example.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<style>
header, footer{
background-color: #EEEEEE;
}
header, section, footer{
padding: 1em 5em;
margin: 0;
}
button{
color:white;
background-color:#5757CF;
border-radius:5px;
padding:2px;
border:0;
font-size:1.2em;
}
button[disabled]{
background-color:#8080FF;
}
button:focus {outline:0;border:1px solid #3333FF}
.half{
float:left;
width:50%;
}
.cb{
clear:both;
border-bottom:1px solid #333333;
}
</style>
<title>GapiAutoBatcher.js Example</title>
<script>
</script>
<script src="GapiAutoBatcher.js"></script>
<script src="https://apis.google.com/js/client.js?onload=initGapi"></script>
</head>
<body>
<header>
<h1>GapiAutoBatcher Example</h1>
</header>
<section id="multishorten">
<h2>Multi URL shortener.</h2>
<div class="half">
<p><label for="urls">urls:</label></p>
<p><textarea cols="75" rows="5" id="urls" wrap="hard"></textarea></p>
<p><button id="shorten" disabled>shorten</button></p>
</div>
<div class="half">
<p>Result:</p>
<ul id="shortlist">
</ul>
</div>
<div class="cb"></div>
</section>
<script>
clearShortlist = function(){
var sl = document.getElementById('shortlist');
while (sl.firstChild){
sl.removeChild(sl.firstChild);
}
}
createLi = function(url){
var sl = document.getElementById('shortlist');
var li = document.createElement("li");
var a = document.createElement("a");
a.href = url;
a.innerText = url;
li.appendChild(a);
sl.appendChild(li);
}
GapiAutoBatcher.gapi.then(function(){
gapi.client.load("urlshortener", "v1").then(function() {
var shorten = document.getElementById("shorten");
batcher = new GapiAutoBatcher();
shorten.disabled = false;
shorten.addEventListener("click", function(){
var urls = document.getElementById("urls").value.split("\n");
clearShortlist();
for(var i=0; i<urls.length; i++){
req = gapi.client.urlshortener.url.insert({longUrl: urls[i]});
result = batcher.execute(req);
result.then(function(r){
console.log("then called with argument:");
console.log(r);
createLi(r.result.id)
});
}
});
});
})
</script>
</body>
</html>