Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AmirTugi/55ca0e9c3fd4f1acccf9dd523540583b to your computer and use it in GitHub Desktop.

Select an option

Save AmirTugi/55ca0e9c3fd4f1acccf9dd523540583b to your computer and use it in GitHub Desktop.
this.usersForm = this.fb.group({
userInput: null
})
this.filteredUsers = this.usersForm
.get('userInput')
.valueChanges
.pipe(
debounceTime(300),
switchMap(value => this.appService.search({name: value}, 1))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment