Ngxs - Call an Angular service : good practices?

2019-05-06 18:43发布

When I use ngxs what should my app do:

  • my component calls a service and the service dispatches an action with the result as the payload?
  • my component dispatches an action and my State calls the service?

3条回答
戒情不戒烟
2楼-- · 2019-05-06 19:05

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

查看更多
混吃等死
3楼-- · 2019-05-06 19:17

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.

查看更多
Lonely孤独者°
4楼-- · 2019-05-06 19:22

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.

查看更多
登录 后发表回答