Skip to content

Instantly share code, notes, and snippets.

@alxhub
Created May 5, 2022 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alxhub/3dbff1abf0e950bc7f34e2b5430b4ff7 to your computer and use it in GitHub Desktop.
Save alxhub/3dbff1abf0e950bc7f34e2b5430b4ff7 to your computer and use it in GitHub Desktop.
ngrx add features example
function configureStoreWithFeature(feature: ...): Provider[] {
return [
{
provide: Store,
useFactory: () => {
const rootStore = inject(RootStore);
for (const feature of inject(STORE_FEATURE, [])) {
rootStore.registerFeature(feature);
}
return rootStore;
},
}, {
provide: STORE_FEATURE,
useValue: feature,
multi: true,
},
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment