-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpromises-lecture.html
More file actions
290 lines (221 loc) · 7.25 KB
/
promises-lecture.html
File metadata and controls
290 lines (221 loc) · 7.25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Promises Lecture</title>
</head>
<body>
<main>
<h1>Intro to JavaScript Promises</h1>
<h3>Articles relevant to the local weather conditions...</h3>
<div id="articles"></div>
</main>
<script src="js/keys.js"></script>
<script
src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg="
crossorigin="anonymous"></script>
<script>
"use strict";
// ====================================================================================
// ==================================== PROMISES ======================================
// ====================================================================================
/*
A promise is a wrapper for asynchronous data/actions.
Promises make writing asynchronous JS code cleaner (avoiding "callback hell" nesting).
Working with jQuery AJAX requests (jqXhr) is very similar to promises
(can even use promises in later version of jQuery!).
Promises have now become VERY common in both client and server side JS.
You will very likely handle promises far more often than having to create them.
*/
// ============ Basic Example of Promise Creation and Handling
//
// let goodKid = false;
//
// // a promise is made to do something
// const getCake = new Promise((resolve, reject) => {
// if (goodKid) {
// resolve("Here is some cake");
// } else {
// reject("Bad. No cake. :(");
// }
// });
//
// console.log(getCake); // promise object
//
// // once the promise is resolved or rejected, take additional action
//
// getCake.then(data => {
// console.log(data);
// }).catch(error => {
// console.log(error);
// });
// ============ Using Promises with jQuery version 3+
// jQuery AJAX methods
// $.ajax('https://swapi.dev/api/people/1')
// .done(function(data) {
// console.log(data);
// })
// .fail(function(jqXHR, message) {
// console.log(message);
// });
// Using promise methods (jQuery version 3.x.x and after)
// $.ajax('https://swapi.dev/api/people/1')
// .then(function(data) {
// console.log(data);
// })
// .catch(function(jqXHR, message) {
// console.log(message);
// });
// ====================================== FETCH API
// ============ Fetch API
// jQuery AJAX request example
// $.ajax('https://swapi.dev/api/people/1')
// .done(function(data) {
// console.log(data.name);
// })
// .fail(function(jqXHR, message) {
// console.log(message);
// });
// fetch('https://swapi.dev/api/people/1').then(response => {
// return response.json();
// }).then(data => {
// console.log(data.name);
// }).catch(err => {
// console.log(err);
// });
// fetch('https://swapi.dev/api/people/1')
// .then(response => response.json())
// .then(console.log)
// .catch(console.log);
// Fetch API POST example
// fetch('https://hookb.in/K3RyG3md1lH0zzW3VPMq', {
// method: 'POST',
// headers: {
// 'Content-Type': 'application/json'
// },
// body: JSON.stringify({
// username: "bill",
// password: "pass123"
// })
// })
// .then(res => res.json())
// .then(console.log)
// .catch(console.log);
// ============ Promise Chaining
// function countSlow(count) {
// return new Promise(function(res) {
// setTimeout(function() {
// console.log(count);
// res(++count);
// }, 500);
// });
// }
//
// countSlow(1)
// .then(countSlow)
// .then(countSlow)
// .then(countSlow)
// .then(countSlow);
// ============ NY Times Articles Based on Forecast of Current Location
// function getForecast(coord) {
// return fetch(`https://cors-anywhere.herokuapp.com/https://api.darksky.net/forecast/${darkSkyAPI}/${coord.lat},${coord.lng}`)
// .then(res => res.json())
// }
//
//
// function getCurrentLocation() {
// return new Promise(function(res, rej) {
// navigator.geolocation.getCurrentPosition(function(pos) {
// res({"lat": pos.coords.latitude, "lng": pos.coords.longitude});
// });
// });
// }
//
// function getLocalForecast() {
// return getCurrentLocation()
// .then(getForecast)
// }
//
// function getNYTimesArticle(search) {
// const apiKey = apiKeyNYT;
// return fetch(`https://api.nytimes.com/svc/search/v2/articlesearch.json?q=${search}&api-key=${apiKey}`)
// .then(res => res.json());
// }
//
// function buildWeatherHtml(articles) {
// return articles.reduce((accum, curr) => {
// return accum + `
// <article>
// <a href="${curr.web_url}">${curr.headline.main}</a>
// </article>
// `;
// }, "");
// }
//
// getLocalForecast()
// .then(forecast => forecast.currently.summary)
// .then(getNYTimesArticle)
// .then(data => {
// document.getElementById("articles").innerHTML = buildWeatherHtml(data.response.docs);
// });
// ====================================== ADDITIONAL TOPICS
// ============ Promise.resolve() and Promise.reject()
// Promise.resolve('one').then((one) => {
// console.log(one);
// return 'two';
// }).then((two) => {
// console.log(two);
// return 'three';
// }).then((three) => {
// console.log(three);
// });
// ============ Promise.all()
// const getCoffee = (type) => {
// return processOrder(type);
// };
//
// const processOrder = (type) => {
//
// let orderAndPay = new Promise((resolve, reject) => {
// setTimeout(function() {
// resolve(`Coffee of type ${type} has been ordered and paid for!`);
// }, 4000);
// });
//
// let makeOrder = new Promise((resolve, reject) => {
// setTimeout(function() {
// resolve(`Coffee of type ${type} is ready!`);
// }, 2000);
// });
//
// return Promise.all([orderAndPay, makeOrder]);
//
// };
//
// getCoffee("espresso").then((data) => {
// console.log(data[0]);
// console.log(data[1]);
// console.log("You now have a coffee!");
// }).catch((err) => {
// console.log(err)
// });
// ============ Promise.race()
// const color1Promise = new Promise((res) => {
// setTimeout(res, 2000, fetch('./data/color.json'));
// });
//
// const color2Promise = new Promise((res) => {
// setTimeout(res, 1000, fetch('./data/color2.json'));
// });
//
// const getColor = () => Promise.race([color1Promise, color2Promise]);
//
// getColor().then(response => response.json()).then(data => console.log(data));
fetch('https://api.github.com/events', {headers: {'Authorization': 'token ' + gitHubToken}})
.then(res => res.json())
.then(console.log)
.catch(console.error);
</script>
</body>
</html>