44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
|
// #docregion
|
||
|
import {Component} from 'angular2/core';
|
||
|
import {JSONP_PROVIDERS} from 'angular2/http';
|
||
|
import {Observable} from 'rxjs/Observable';
|
||
|
// #docregion import-subject
|
||
|
import {Subject} from 'rxjs/Subject';
|
||
|
// #enddocregion import-subject
|
||
|
import {WikipediaService} from './wikipedia.service';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'my-wiki-smart',
|
||
|
template: `
|
||
|
<h1>Smarter Wikipedia Demo</h1>
|
||
|
<p><i>Fetches when typing stops</i></p>
|
||
|
|
||
|
<input #term (keyup)="search(term.value)"/>
|
||
|
|
||
|
<ul>
|
||
|
<li *ngFor="#item of items | async">{{item}}</li>
|
||
|
</ul>
|
||
|
`,
|
||
|
providers:[JSONP_PROVIDERS, WikipediaService]
|
||
|
})
|
||
|
export class WikiSmartComponent {
|
||
|
|
||
|
constructor (private _wikipediaService: WikipediaService) { }
|
||
|
|
||
|
// #docregion subject
|
||
|
private _searchTermStream = new Subject();
|
||
|
|
||
|
search(value: string){
|
||
|
this._searchTermStream.next(value);
|
||
|
}
|
||
|
// #enddocregion subject
|
||
|
|
||
|
// #docregion observable
|
||
|
items = this._searchTermStream
|
||
|
.debounceTime(300)
|
||
|
.distinctUntilChanged()
|
||
|
.switchMap((term:string) => this._wikipediaService.search(term));
|
||
|
|
||
|
// #enddocregion observable
|
||
|
}
|