It’s not appropriate to take someone else ideas and code and use them without...
It’s not appropriate to take someone else ideas and code and use them without giving them credit.
View ArticleYou can reference the original article at the end. Thanks.
You can reference the original article at the end. Thanks.
View ArticleThat’s a great question.
That’s a great question. Could you provide a stackblitz example so that I can show a solution, please?
View ArticleCreating Custom Operators in RxJS
Operators are one of the building blocks of RxJS. The library comes with many operators, which can be used to deal with almost every situation we may encounter, but there are times when it can be...
View ArticleWelcome to the Ivy League: Lazy Loading Components in Angular v9
I have great news! Exciting days have come. Angular version 9 was released, and one of its most powerful features is the ability to render components lazily and, most importantly, easily. In this...
View ArticleThis is by design.
This is by design. You can see a similar behaviour in the most popular Redux library — https://github.com/omnidan/redux-undo
View ArticleSorry, my head isn’t here.
Sorry, my head isn’t here. Can you create a live example in a stackblitz that shows the issue, please?
View ArticlePlay with the top redo-undo in this example, and tell me what’s wrong in your...
Play with the top redo-undo in this example, and tell me what’s wrong in your opinion — http://akita.surge.sh/todos
View ArticleIt’s a bug. Do you want to create a PR with a fix, please?
It’s a bug. Do you want to create a PR with a fix, please?
View ArticleUse ngOnChanges and check if it’s defined first
Use ngOnChanges and check if it’s defined first
View ArticleI don’t want to be a party pooper, but based on the source code, the result...
I don’t want to be a party pooper, but based on the source code, the result selector is deprecated.
View ArticleGetting to Know the Defer Observable in RxJS
In the previous article, we learned how to create custom RxJS operators. In this one, I’d like to talk about one of the lesser known observables — defer — and explain how we can use it to solve the...
View ArticleImplement Multiple Selection Using Shift + Click in Angular
It’s another one of those days when all I want to do is work on something cool. This time I was thinking about creating reusable and scalable support for multi-selection, where users will be able to...
View ArticleDon’t believe everything you read :)
Don’t believe everything you read :)Using a structural directive is the recommended approach. It’s DRY and efficient, as it creates one subscription per template. Moreover, the t function is memoized....
View ArticleThat’s not a big deal. You can solve by using defer , but here is v2 version:
That’s not a big deal. You can solve by using defer , but here is v2 version:https://github.com/NetanelBasal/angular-forms-unsaved-changes/blob/master/src/app/dirty-check-v2.ts
View ArticleSo you’re creating a Subject ( share() ), then you’re creating one more...
So you’re creating a Subject ( share() ), then you’re creating one more subscription with concat. Redundant work, and memory for something so simple.Moreover, it’s less readable for someone who isn’t...
View Article