Vincent Nabet
Vincent Nabet

Reputation: 128

Ngxs - Call an Angular service : good practices?

When I use ngxs what should my app do:

Upvotes: 8

Views: 3625

Answers (3)

KY Chin
KY Chin

Reputation: 61

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.

Upvotes: 6

Garth Mason
Garth Mason

Reputation: 8001

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.

Upvotes: 2

maxime1992
maxime1992

Reputation: 23813

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

Upvotes: 4

Related Questions