Best practices
and recommendations
Here you will find some recommendations in order to not miss use this library
Actions should be used ONLY for manipulating state. They should not cntain business logic or call other services
Try to avoid absolute paths in @InjectStore decorator because
it might lead to wrong architecture of your project
paths might become long
paths can start to overlap
Direct store usage, when injecting into service or components via constructor, should not be common, rather exceptional case. e.g: you might have some shared data like
userData
stored in the root of you state and you want to access it from everywhere. But for this case I recommend to have someauthService
and with methodgetUserData
rather than keep repeating same code (DRY principle)
User Smart and dumb components
User @InjectStore decorator ONLY on smart components
Entire application with smart components should reflect structure of state as close as possible.
Last updated