Observables と async パイプを使用するように単純な Angular2 ビュー コンポーネントを書き直しています。結果のリストが表示され、強調表示する必要がある選択された結果があります。
私のコンポーネントが次のプロパティを持つ前に:
results: Result[] = [];
selectedResult: Result = null;
ビューのループは次のようになります。
<div *ngFor="let r of results" [class.active]="r === selectedResult" />
これで、オブザーバブルを含む次のビュー コンポーネントができました。
@Component({
moduleId: module.id,
selector: 'results-view',
templateUrl: 'results-view.component.html'
})
export class ResultsViewComponent implements OnInit {
constructor(private resultService: ResultService,
private route: ActivatedRoute) { }
results: Observable<Result[]> = null;
selectedResult: Observable<Result> = null;
private selectRequests = new Subject<string>();
ngOnInit(): void {
let deviceId = this.route.snapshot.params['deviceId']
this.results = this.resultService.getResults(deviceId);
this.selectedResult = Observable.combineLatest(this.selectRequests.asObservable(), this.results, (sr, res) => {
return res.filter(r => r.resultId == sr)[0];
});
}
selectResult(resultId: string): void {
this.selectRequests.next(resultId);
}
}
そして、次のビュー:
<table class="table table-hover">
<thead>
<tr>
<th>Alert</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let r of (results | async)" [class.active]="r === selectedResult">
<td>{{r.Name}}</td>
<td>
<a href="javascript:void(0)" (click)="selectResult(r.resultId)"><span class="glyphicon glyphicon-search" aria-hidden="true"></span></a>
</td>
</tr>
</tbody>
</table>
これは機能していません。角度表現もやってみた
"r === (selectedResult | async)"
しかし、それも機能していません。発生した唯一のことは、getResults
メソッドがサーバーに対して複数回実行されたことです。
オブザーバブルで選択処理を行う正しい方法は何ですか?