RxJS, the easy way to write correct Angular applications

  Рет қаралды 43,643

Oasis Digital

Oasis Digital

Күн бұрын

Пікірлер: 45
@tejeshwinidugyala9226
@tejeshwinidugyala9226 7 ай бұрын
Thank you so much for the efficiently using RXJS operators for Better Code quality and Reducing unnecessary calls 😇
@craigriecke2403
@craigriecke2403 3 жыл бұрын
That's about the best 1-hour introductory explanation of RxJS I've seen. Very nice!
@karthik_vijay
@karthik_vijay Жыл бұрын
Underrated, saves lot of time trying to understand rxJS concepts. Keep posting. ❤ From Angular Community
@marcopolocs
@marcopolocs 2 жыл бұрын
I'm just getting started with RxJS and this was overwhelmingly helpful, thank you for the clear, easy-to-understand examples, nothing too complex, nothing too hard to understand with a basic knowledge about basic Angular stuff. Keep these videos coming!:)
@armandmugabo1170
@armandmugabo1170 3 жыл бұрын
one of the best intro/course about rxjs within angular
@haroldpepete
@haroldpepete 2 жыл бұрын
interesting talk, this is the best hour that i passed seeing something about agular, thank you lady for your time
@jkevinparker
@jkevinparker 2 жыл бұрын
This is a fantastic crash course on RxJS! Thank you!
@nikhilgoyal007
@nikhilgoyal007 3 ай бұрын
wow! thank you! self note - very imp Subject pattern at @31:00
@adewaleadisa4346
@adewaleadisa4346 2 жыл бұрын
Thanks so much. Best simplified rxjs video
@marshax
@marshax 2 жыл бұрын
Excellent overview with good examples. Thanks!
@santiagocalvo
@santiagocalvo 2 жыл бұрын
This course is AMAZING!!! Thank you so much!!!
@shlomirosen
@shlomirosen 3 жыл бұрын
Great video and super clear explanations, thank you!
@gabrielperrymusic
@gabrielperrymusic 2 жыл бұрын
This is excellent. You made RxJS fun!
@wholeegg
@wholeegg Жыл бұрын
Tysm Christina. Leant a lot today.
@brianc8005
@brianc8005 2 жыл бұрын
Excellent presentation!
@proboyX42
@proboyX42 3 жыл бұрын
Such a clear explanation!! Thanks.
@rizaanjappie
@rizaanjappie 3 жыл бұрын
Awesome. Making me fall back into angular.
@jarenboone9609
@jarenboone9609 2 жыл бұрын
Great video, thank you so much!
@ShinoB83
@ShinoB83 2 жыл бұрын
So well explained! Thank you! ❤
@ErnestoMorin
@ErnestoMorin 2 жыл бұрын
Really good video!
@rafysancheztilogica8587
@rafysancheztilogica8587 3 жыл бұрын
Very solid explanation !
@CosmicAlphonso
@CosmicAlphonso 2 жыл бұрын
How request cancellation worked in code at 20:34?
@vedymin7
@vedymin7 2 жыл бұрын
This is the behavior of switchMap. If there is a new request (user type additional letter in search for example) and there is still pending request, switchMap will discard this pending request, and start a new one. If you don't want to discard, and need this previous request to finish, you can use mergeMap instead. But with mergeMap in search the issue is you can have older request finished after change in search, and that means you have incorrect result for actual search value.
@havefun5519
@havefun5519 3 жыл бұрын
Thanks for the great tut.
@havefun5519
@havefun5519 3 жыл бұрын
I really like the pipe image for explanation.
@Paro2221
@Paro2221 3 жыл бұрын
Pure gold
@natedavidoff668
@natedavidoff668 2 жыл бұрын
Are these courses still offered?
@asdsddddss6279
@asdsddddss6279 3 жыл бұрын
nice and clear explanations, but i get stuck with your code. in the case study 1 ( in rxjs example ) you have 3 open and closed parentheses (), in reality its should be 4 parentheses (), right? or i have bad eye ?
@chrishardin9142
@chrishardin9142 3 жыл бұрын
I think this is the slide you are talking about. One set for the inner pipe, then one set for the switchmap, then one set for the outer pipe. export class RedditSearchComponent { results: Observable; search: FormControl = new FormControl(''); constructor(ris: RedditImageSearchService) { this.results = this.search.valueChanges.pipe( map((search) => search.trim()), debounceTime(200), distinctUntilChanged(), filter((search) => search !== ''), switchMap((search) => ris.search(search).pipe( retry(3), // Clear previous entries while waiting startWith([]) ) ) ); } }
@randymotluck1503
@randymotluck1503 Жыл бұрын
Nice Vid. Hope you are doing well.
@MrGrechman
@MrGrechman 2 жыл бұрын
Amazing!
@sourandbitter3062
@sourandbitter3062 3 жыл бұрын
That was great, wow!
@akalrove4834
@akalrove4834 3 жыл бұрын
great content
@rolandjethrosuyom478
@rolandjethrosuyom478 2 жыл бұрын
good day ma'am, I tried to use your search method using rxjs. I have an issue that if the api return an error response like 404. First, all of the latest response data got stuck in ui. Then if I am going to clear the searchbox and search again. No data will return. Just like nothing happens. I hope you can help me to solve this issue. Thanks ma'am.
@chrishardin9142
@chrishardin9142 2 жыл бұрын
If you have an http call inside a switchMap or something similar, you must have a catchError inside the switchMap on that inner observable. Otherwise, an error in the inner observable bubbles up and kills the whole pipeline permanently
@bhagabatsahoo3112
@bhagabatsahoo3112 2 жыл бұрын
Can you please the source code for Case study -2 ? Thanks a lot for your explanation
@arunabraham7277
@arunabraham7277 3 жыл бұрын
thank you chris
@bhagabatsahoo3112
@bhagabatsahoo3112 2 жыл бұрын
Could you please provide the source code for displaying employee list and details ?
@mayurankunarajah8131
@mayurankunarajah8131 2 жыл бұрын
Thank you, :)
@MeteorKaMeter
@MeteorKaMeter 2 жыл бұрын
Might be complex for beginners
@ninjedi6710
@ninjedi6710 2 жыл бұрын
React devs watching this video in tears while scratching their head
@gabrieldelosrios811
@gabrieldelosrios811 2 жыл бұрын
Why because you have to learn a lot of sintaxis relative to a framework? She could do the same in vanilla javascript with methods you should already know, instead of learning tthousands of methods that only are usable in rxjs and angular.
@vedymin7
@vedymin7 2 жыл бұрын
@@gabrieldelosrios811 rxjs is standalone library. You can use it everywhere where you have js, including react. The only different is angular use rxjs extensively out of the box.
@valikonen
@valikonen 3 жыл бұрын
Jesusm you stay 10 minutes to speak about dogs...jump to debounce and show next case....
RxJS in Angular: Terms, Tips, and Patterns
43:01
Deborah Kurata
Рет қаралды 35 М.
БОЙКАЛАР| bayGUYS | 27 шығарылым
28:49
bayGUYS
Рет қаралды 1,1 МЛН
Ful Video ☝🏻☝🏻☝🏻
1:01
Arkeolog
Рет қаралды 14 МЛН
These ARE the Angular tips you are looking for | John Papa
25:05
Angular component testing - Overcoming the hurdles
57:05
Oasis Digital
Рет қаралды 27 М.
Complex features made easy with RxJS
36:13
Hasgeek TV
Рет қаралды 59 М.
I bet you can understand NgRx after watching this video
22:48
Joshua Morony
Рет қаралды 197 М.
RXJS Real Examples - 1.  How to Use Observables to Manage User Data
23:02
RxJS Crash Course
58:14
Laith Academy
Рет қаралды 97 М.
Data Composition with RxJS | Deborah Kurata
20:56
ng-conf
Рет қаралды 65 М.