Ngxs - Call an Angular service : good practices?

不想你离开。 提交于 2019-12-05 12:09:28

You can do both and if you look into open source apps you'll probably find both.

So far I've personally (with ngrx but it's the same) injected the store and dispatched actions from the (smart) components.

But I've been reading a lot of articles about facades lately and I think it's actually the right way to go in order to keep your components as simple as possible but especially to simplify the testing too.

You can read more about facades here:
https://medium.com/@thomasburleson_11450/ngrx-facades-better-state-management-82a04b9a1e39

https://medium.com/default-to-open/understanding-a-large-scale-angular-app-with-ngrx-80f9fc5660cc

https://blog.nrwl.io/nrwl-nx-6-2-angular-6-1-and-better-state-management-e139da2cd074

As stated, you can do either - here's an earlier question I posted with a response from one of the NGXS team.

In our project we've followed this pattern, dispatch an action, have the state's action handler call the service, then patch the state with the result. And if needed, dispatch further actions to indicate success or failure.

My opinion is that the Dispatched Action should itself be immutable and not to be used to return result. Instead, client interested to know result (usually in state change cause by an Action) should subscribe to the state change. Note that NGXS is a CQRS implementation.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!