-
Notifications
You must be signed in to change notification settings - Fork 0
/
fetch-bonus.html
294 lines (241 loc) · 9.13 KB
/
fetch-bonus.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fetch bonus</title>
<script src="js/jquery.js"></script>
<script src="js/keys.js"></script>
</head>
<body>
<div>
<form action="">
<input type="text" id="userName">
<div id="colorList"></div>
<button id="getColor">Get color</button>
</form>
</div>
<div></div>
<div></div>
<div></div>
<script>
/**
*
*
=================== Fetch Bonuses
-- Ex. 1
In your data directory, create a profiles.json file with the following...
{
"sandy123": "brown",
"bob234": "green",
"sally345": "blue"
}
Add an input field and submit button (you will need to prevent the default behaviour) that when clicked, runs the following function...
Create a function that takes in a username and fetch's the color preference based on the username and sets the background color to that color.
fetch('https://api.github.com/users/' + userID + '/events/public',{headers: {'Authorization': githubKey}})
.then((response) => {
console.log(response);
return response.json();
})
.then((data) => {
// build html
console.log(data);
})
.catch(console.log);
**/
// (function () {
"use strict";
// $('document').ready()
// {
// TODO: Create an ajax GET request for /data/blog.json
//
function getColor(user) {
fetch("data/profiles.json")
.then((response) => {
return response.json();
})
.then((data) => {
const colorName = data[user];
$('body').css('background', colorName);
})
.catch(console.log);
};
$('#getColor').click(function (e) {
e.preventDefault(); // don't submit the form, we just want to update the data
getColor($('#userName').val());
});
/**
*
-- Ex. 2
Using the Star Wars API, log the first film a Star Wars character's homeworld appeared in
**/
const myPromise = fetch('https://cors-anywhere.herokuapp.com/https://swapi.co/api/people/1')
.then(response => {
//console.log(response);
return response.json()
})
.then(data => {
// console.log(data);
//console.log(data["homeworld"]);
return data["homeworld"];
})
.then(homeWorld => {
fetch(homeWorld)
.then(response => {
//console.log(response);
return response.json()
})
.then(homeWorldData => {
console.log(homeWorldData.name);
// console.log(data["homeworld"]);
console.log(`Luke's planet ${homeWorldData.name}`);
return homeWorldData.name;
})
.catch(error => console.error(error));
})
.catch(error => console.error(error));
//const lukePlanet = myPromise();
//console.log(`Luke's planet ${lukePlanet}`);
/**
-- Ex. 3
Using the GitHub API and reduce(), find the average hour of the last 3 pushes. Ignore minutes.
**/
function getProfile(userID) {
// fetch(`https://github.com/${userID}`, {headers: {'Authorization': githubToken}}).then(res => res.json)
// /users/:username/events
//https://cors-anywhere.herokuapp.com/https://github.com/users/${userID}/events`
fetch(`https://cors-anywhere.herokuapp.com/https://api.github.com/users/${userID}/events/public`, {headers: {'Authorization': githubKey}})
.then((response) => {
return response.json();
})
.then((data) => {
return data.filter(event => event["type"] === "PushEvent");
})
.then((pushedEvents) => {
let hoursOnly = pushedEvents.map((item) => item["created_at"]);
//return pushedEvents.map((item) => item["created_at"])[0];
//console.log(hoursOnly);
let average = hoursOnly.reduce((total, item, index) => {
if (index <= 3) {
var hours = new Date(item).getHours();
total += hours;
}
return total;
}, 0) / 3;
console.log(`Average hours pushes ${average.toFixed(2)}`);
})
.catch(console.log);
};
getProfile('gloriaLVela');
/**
-- Ex. 4
Create star-chars.json file in your data folder and paste in the following...
[
{
"name": "Leia Organa",
"coolness": 9
},
{
"name": "Luke Skywalker",
"coolness": 9
},
{
"name": "Darth Vadar",
"coolness": 10
}
]
Create a function that fetches this array and returns an array of homeworlds for the characters.
It will look something like the following...
['Jakku', 'Tatooine', 'Tatooine']
*/
// Promise.all([
// fetch('/'),
// fetch('foo')
// ])
// .then(responses => responses.map(response => response.statusText))
// .then(status => console.log(status.join(', ')))
// let names = ['iliakan', 'remy', 'jeresig'];
//
// let requests = names.map(name => fetch(`https://api.github.com/users/${name}`));
//
// Promise.all(requests)
// .then(responses => {
// // all responses are resolved successfully
// for(let response of responses) {
// alert(`${response.url}: ${response.status}`); // shows 200 for every url
// }
//
// return responses;
// })
// // map array of responses into array of response.json() to read their content
// .then(responses => Promise.all(responses.map(r => r.json())))
// // all JSON answers are parsed: "users" is the array of them
// .then(users => users.forEach(user => alert(user.name)));
// fetch('https://cors-anywhere.herokuapp.com/https://swapi.co/api/people')])
// let requests = names.map(name => fetch(`https://api.github.com/users/${name}`));
//const email_list = users.map(user => user.email);
function getData() {
fetch("data/star-chars.json")
.then((response) => {
//console.log(response);
return response.json();
})
.then((data) => {
//console.log(data);
let names = data.map(data => data.name);
fetch(`https://cors-anywhere.herokuapp.com/https://swapi.co/api/people/`)
.then(response => {
// console.log(response.json());
// let returnData = response.json();
// return returnData;
return response.json();
})
.then(currentData => {
// console.log(currentData.results);
const currentArray = currentData.results;
//console.log(currentArray);
const homeWorld = currentArray.filter(function (starChar) {
if (names.indexOf(starChar.name) >= 0) {
return starChar;
}
}, []);
const currentURL = homeWorld.map(data => 'https://cors-anywhere.herokuapp.com/' + data.homeworld);
// console.log(currentURL);
return currentURL;
})
.then(urlHomeworld => {
console.log(urlHomeworld);
//let homeworldNames = [];
urlHomeworld.forEach(urlAddress => {
fetch(urlAddress)
.then(response => {
const homeData = response.json();
console.log(homeData);
return homeData;
})
.then (planetInfo => console.log(planetInfo.name))
})
return 0;
})
// let requests = names.map(name => fetch(`https://cors-anywhere.herokuapp.com/https://swapi.co/api/people`));
// Promise.all(requests)
// .then(responses => {
// // all responses are resolved successfully
// for(let response of responses) {
// alert(`${response.url}: ${response.status}`); // shows 200 for every url
// }
//
// return responses;
// })
// // map array of responses into array of response.json() to read their content
// .then(responses => Promise.all(responses.map(r => r.json())))
// // all JSON answers are parsed: "users" is the array of them
// .then(users => users.forEach(user => alert(user.name)));
}
)
.catch('error');
}
;
getData();
</script>
</body>
</html>