Client: refresh friends list after quitting them

This commit is contained in:
Chocobozzz 2016-08-23 17:47:58 +02:00
parent 039cdfc528
commit 93c462b771
1 changed files with 10 additions and 5 deletions

View File

@ -15,11 +15,7 @@ export class FriendListComponent implements OnInit {
constructor(private friendService: FriendService) { }
ngOnInit() {
this.friendService.getFriends().subscribe(
friends => this.friends = friends,
err => alert(err)
);
this.getFriends();
}
quitFriends() {
@ -28,8 +24,17 @@ export class FriendListComponent implements OnInit {
this.friendService.quitFriends().subscribe(
status => {
alert('Quit friends!');
this.getFriends();
},
error => alert(error)
);
}
private getFriends() {
this.friendService.getFriends().subscribe(
friends => this.friends = friends,
err => alert(err)
);
}
}