Merge pull request #2178 from dpalou/MOBILE-1501

MOBILE-1501 participants: Select first when search or clear
main
Juan Leyva 2019-12-03 15:31:07 +01:00 committed by GitHub
commit dac9ba4de9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -165,7 +165,12 @@ export class CoreUserParticipantsComponent implements OnInit {
// Remove search results and display all participants. // Remove search results and display all participants.
this.participantsLoaded = false; this.participantsLoaded = false;
this.fetchData(true); this.fetchData(true).then(() => {
if (this.splitviewCtrl.isOn() && this.participants.length > 0) {
// Take first and load it.
this.gotoParticipant(this.participants[0].id);
}
});
} }
/** /**
@ -196,6 +201,11 @@ export class CoreUserParticipantsComponent implements OnInit {
this.canLoadMore = result.canLoadMore; this.canLoadMore = result.canLoadMore;
this.searchPage++; this.searchPage++;
if (!loadMore && this.splitviewCtrl.isOn() && this.participants.length > 0) {
// Take first and load it.
this.gotoParticipant(this.participants[0].id);
}
}).catch((error) => { }).catch((error) => {
this.domUtils.showErrorModalDefault(error, 'Error searching users.'); this.domUtils.showErrorModalDefault(error, 'Error searching users.');
this.loadMoreError = true; this.loadMoreError = true;