首页 web前端 js教程 ngRx Store in Angular

ngRx Store in Angular

Sep 19, 2024 am 02:18 AM

Before I start, a small backstory. So, a few weeks back, there was a requirement in an angular project I was working on, wherein I had to keep a piece of data intact so that several other components could use it. My React instinct suggested me of using some angular version of context API which led me to 3 Angular ways of managing states and keeping data intact.

  1. Component State: For Simple applications or components with minimal shared data, we can manage state within individual components using Angular's component properties and event binding. This was clearly out of league because I needed to share data across multiple components.

  2. Service Based State Management: Services can be used to create centralized state management solutions. But performance and scalability of the application will take a hit following this approach.

  3. ngRx Store: ngRx store provides centralized state management capabilities. NGRX uses RxJS observables and actions to manage state.

Out of the three ngRx Store seemed to be the most suitable one to go with.

Implementing ngRx Store:

To better understand the implementation of ngRx, we first need to understand how ngRx works in the first place.

The flow starts from the component. The good thing about ngRx is our component doesn't need to know how to manage the state. Only thing it is concerned about is dispatching an action to inform something happened (an event) like the user clicked on the delete button.

ngRx Store in Angular

At this point the reducer comes into play. Reducer is responsible for determining how a particular action should modify state. Usually we have reducer for every entity we want to manage state for. So, Reducer detect all the action being dispatched in the app and determine how the state should be modified and once modified, stores the updated state in the ngRx Store (which is a global store for all the states across the application).

Finally, when a component wants to access the store, the component uses a selector to pull in the state that it needs from the store.

Now let's get our (actually my) hands dirty and implement a store for a Todo application.

Step 1: Creating action
ngRx Store in Angular

Inside the createAction method, we are passing two parameters - a unique string that will be used to distinguish an action, another is the payload we want to send (optional).

Step 2: Creating Reducers
In the reducer, we pass the initial state and the task to perform on dispatching a particular action.

ngRx Store in Angular

Step 3: Dispatching Action
We dispatch an action by calling the dispatch method of the store passing the action to it.

ngRx Store in Angular

Step 4: Creating selector

ngRx Store in Angular

AppState refers to the central store for the whole application from which we selecting the todo state. Now we can start consuming the store data like I did in the Dispatching Actions code's line no. 11.

ngRx Store in Angular

Finally, we need to add the todoReducer in our imports of the App Module so that it is available across the application.

Conclusion

In this blog, I summarized and explained the ngRx store in details, how it works and how can we implement it in our application. ngRx store can be very useful as the application grows, to store data and access it across different components. Hope it helped ;)

以上是ngRx Store in Angular的详细内容。更多信息请关注PHP中文网其他相关文章!

本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.聊天命令以及如何使用它们
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

如何创建和发布自己的JavaScript库? 如何创建和发布自己的JavaScript库? Mar 18, 2025 pm 03:12 PM

文章讨论了创建,发布和维护JavaScript库,专注于计划,开发,测试,文档和促销策略。

如何在浏览器中优化JavaScript代码以进行性能? 如何在浏览器中优化JavaScript代码以进行性能? Mar 18, 2025 pm 03:14 PM

本文讨论了在浏览器中优化JavaScript性能的策略,重点是减少执行时间并最大程度地减少对页面负载速度的影响。

前端热敏纸小票打印遇到乱码问题怎么办? 前端热敏纸小票打印遇到乱码问题怎么办? Apr 04, 2025 pm 02:42 PM

前端热敏纸小票打印的常见问题与解决方案在前端开发中,小票打印是一个常见的需求。然而,很多开发者在实...

如何使用浏览器开发人员工具有效调试JavaScript代码? 如何使用浏览器开发人员工具有效调试JavaScript代码? Mar 18, 2025 pm 03:16 PM

本文讨论了使用浏览器开发人员工具的有效JavaScript调试,专注于设置断点,使用控制台和分析性能。

谁得到更多的Python或JavaScript? 谁得到更多的Python或JavaScript? Apr 04, 2025 am 12:09 AM

Python和JavaScript开发者的薪资没有绝对的高低,具体取决于技能和行业需求。1.Python在数据科学和机器学习领域可能薪资更高。2.JavaScript在前端和全栈开发中需求大,薪资也可观。3.影响因素包括经验、地理位置、公司规模和特定技能。

如何使用源地图调试缩小JavaScript代码? 如何使用源地图调试缩小JavaScript代码? Mar 18, 2025 pm 03:17 PM

本文说明了如何使用源地图通过将其映射回原始代码来调试JAVASCRIPT。它讨论了启用源地图,设置断点以及使用Chrome DevTools和WebPack之类的工具。

如何使用JavaScript将具有相同ID的数组元素合并到一个对象中? 如何使用JavaScript将具有相同ID的数组元素合并到一个对象中? Apr 04, 2025 pm 05:09 PM

如何在JavaScript中将具有相同ID的数组元素合并到一个对象中?在处理数据时,我们常常会遇到需要将具有相同ID�...

console.log输出结果差异:两次调用为何不同? console.log输出结果差异:两次调用为何不同? Apr 04, 2025 pm 05:12 PM

深入探讨console.log输出差异的根源本文将分析一段代码中console.log函数输出结果的差异,并解释其背后的原因。�...

See all articles