Withing my angular app , I’m using this kind of treatment
myMethod(){
...
setTimeout(() => {
this.router.navigate(['mucomponent']);
});
}
As I was told : setTimeout
without a delay (0) seems to wait the next tick where all treatments are done to begin my treament. it’s a planification for the near future.
Since I need this behaviour
Is there any clean aletrnative to do it the same with typescript or rxjs to do it better ?
Suggestions ?
If you’re trying some kind of scheduler here is timeout from RxJS
https://rxjs-dev.firebaseapp.com/api/operators/timeout
You can use Interval or take in rxjs;
This should work, and is simpler than previous solutions:
timer() takes 2 parameters, the second is optional. If 2 parameters are provided, the first parameter is the delay, and the second parameter is the period. If only one parameter is provided, it is the delay, and the timer will only emit 1 value (it won’t repeat).
From the documentation for timer():
reference:
https://rxjs-dev.firebaseapp.com/api/index/function/timer