Skip to content

Commit 795fe87

Browse files
committed
Update samples
1 parent 7953f75 commit 795fe87

File tree

5 files changed

+46
-11
lines changed

5 files changed

+46
-11
lines changed

ModernJavaScriptWebApiClients/040-reactivex/index.ts

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import * as Rx from '@reactivex/rxjs';
1+
import * as Rx from 'rxjs';
2+
import 'rxjs/add/observable/dom/ajax';
3+
import { Observable } from 'rxjs/Observable';
24

35
// The basics
46
(function () {
@@ -91,4 +93,17 @@ import * as Rx from '@reactivex/rxjs';
9193
.merge(Rx.Observable.timer(1000, 10).map(v => 2).take(5))
9294
.debounceTime(100)
9395
.forEach(v => console.log(v));
96+
}); //();
97+
98+
interface IPokemon {
99+
url: string;
100+
name: string;
101+
}
102+
103+
(function () {
104+
Rx.Observable.ajax('https://pokeapi.co/api/v2/pokemon/')
105+
.map(e => e.response)
106+
.flatMap(e => <IPokemon[]>e.results)
107+
.map(e => e.name)
108+
.forEach(e => console.log(e));
94109
})();

ModernJavaScriptWebApiClients/040-reactivex/package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ModernJavaScriptWebApiClients/040-reactivex/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"start": "webpack-dev-server"
99
},
1010
"dependencies": {
11-
"@reactivex/rxjs": "^5.5.2"
11+
"rxjs": "^5.5.2"
1212
},
1313
"devDependencies": {
1414
"html-webpack-plugin": "^2.30.1",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
const pokemonList = document.getElementById('pokemons');
2+
3+
(function() {
4+
// Build XHR. Need details about XMLHttpRequest? Check
5+
// https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest
6+
7+
const xhr = new XMLHttpRequest();
8+
xhr.addEventListener('load', () => {
9+
// Parse result
10+
const jsonResult = JSON.parse(xhr.response);
11+
12+
// Iterate over result and print Pokemon results
13+
jsonResult.results.forEach(pokemon => console.log(pokemon.name));
14+
});
15+
16+
// Build URL
17+
xhr.open('GET', 'https://pokeapi.co/api/v2/pokemon/');
18+
xhr.send();
19+
20+
})();

ModernJavaScriptWebApiClients/050-js-rest-client/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h1>Pokemons</h1>
1111
<ul id="pokemons"></ul>
1212

1313
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
14-
<script src="app-fetch-await.js"></script>
14+
<script src="app-xhr.js"></script>
1515
</body>
1616

1717
</html>

0 commit comments

Comments
 (0)