Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AmirTugi/de5e5243fae03355617159578ef73836 to your computer and use it in GitHub Desktop.
Save AmirTugi/de5e5243fae03355617159578ef73836 to your computer and use it in GitHub Desktop.
this.usersForm = this.fb.group({
userInput: null
})
this.usersForm
.get('userInput')
.valueChanges
.pipe(
debounceTime(300),
tap(() => this.isLoading = true),
switchMap(value => this.appService.search({name: value}, 1)
.pipe(
finalize(() => this.isLoading = false),
)
)
)
.subscribe(users => this.filteredUsers = users.results);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment