blog.procode.plAngular - binding to protected propertiesBefore Angular@14 we could only bind public properties in views. Even though, the properties were meant to be private to the component, we had to make them public. This led to exposing component internals to the consumer. Now, we can make use of type...Oct 20, 2023·3 min read
blog.procode.plNgRx Standalone APIIn this article, I'll show how to use NgRx with Angular Standalone API. If you're not familiar with it, please refer to the https://barcioch.pro/angular-standalone-components-directives-pipes article. The following examples show how to define a store...Oct 18, 2023·2 min read
blog.procode.plAngular standalone components, directives, pipesThe standalone components are getting more and more attention in the Angular world. Even the creators encourage people to use them by default. In this article, I'll show how to use standalone components, directives and pipes. Setup If unsure how to s...Oct 12, 2023·10 min read
blog.procode.plUnderstanding Data Passing in Angular Using Router and Component Binding (ComponentInputBinding)In this article, I'll show how to extract parameters and data from Angular routes using the component input binding feature. Setup If unsure how to set up Angular with Jest please refer to the article: https://barcioch.pro/angular-with-jest-setup. Co...Oct 6, 2023·4 min read
blog.procode.plGetting Started with Angular Route Parameters: A Beginner's Guide to Accessing and Testing Route ParametersIn this article, I'll show how to extract parameters and data from Angular routes using the native ActivatedRoute. Setup If unsure how to set up Angular with Jest please refer to the article: https://barcioch.pro/angular-with-jest-setup. helper pipe ...Oct 5, 2023·5 min read