File tree 5 files changed +46
-11
lines changed
ModernJavaScriptWebApiClients
5 files changed +46
-11
lines changed Original file line number Diff line number Diff line change 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' ;
2
4
3
5
// The basics
4
6
( function ( ) {
@@ -91,4 +93,17 @@ import * as Rx from '@reactivex/rxjs';
91
93
. merge ( Rx . Observable . timer ( 1000 , 10 ) . map ( v => 2 ) . take ( 5 ) )
92
94
. debounceTime ( 100 )
93
95
. 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 ) ) ;
94
109
} ) ( ) ;
Original file line number Diff line number Diff line change 8
8
"start" : " webpack-dev-server"
9
9
},
10
10
"dependencies" : {
11
- "@reactivex/ rxjs" : " ^5.5.2"
11
+ "rxjs" : " ^5.5.2"
12
12
},
13
13
"devDependencies" : {
14
14
"html-webpack-plugin" : " ^2.30.1" ,
Original file line number Diff line number Diff line change
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
+ } ) ( ) ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ <h1>Pokemons</h1>
11
11
< ul id ="pokemons "> </ ul >
12
12
13
13
< 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 >
15
15
</ body >
16
16
17
17
</ html >
You can’t perform that action at this time.
0 commit comments