Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
98 views

I am building a large-scale enterprise Angular application using NgRx SignalStore. I strictly separate my modules (e.g., UserModule, RoleModule), where each module has its own Store and Service. Also ...
RAHUL KUNDU's user avatar
  • 1,097
Best practices
1 vote
0 replies
107 views

I have some questions about ngrx signal store. How can you let two different stores talk to each other? Is there something similar to working with slices like in the ngrx store? Are the new events ...
Maarten's user avatar
  • 11
2 votes
1 answer
204 views

I have a basic setup of NgRX to learn the flow. Now it gets to use the NgRX Effects, and my implementations throw error, Please review and let me know what may missed? "dependencies": { ...
Nasser's user avatar
  • 4,739
0 votes
1 answer
132 views

I am stuck with above error. [NG8: Type 'Signal<User[]>' must have a '[Symbol.iterator]()' method that returns an iterator.] I am using ngrx/signal-store for data management with my angular app. ...
3gwebtrain's user avatar
  • 15.5k
0 votes
2 answers
165 views

Interface: export interface User { userId: number; userName: string; emailId: string; role: string; } export interface UserState { users: User[]; _users: User[]; } export const ...
3gwebtrain's user avatar
  • 15.5k
1 vote
2 answers
267 views

Here's the StackBlitz showing the problem. I have a reactive form with an Email field and Send Verification Code button. When the code is sent, the Verification Code field appears, so the user can ...
AlexB's user avatar
  • 4,694
0 votes
1 answer
152 views

I have an Angular 20 app - here's the repo. And I have a "Sign Up" form, which in this test repo consists only of an Email field and the "Send verification code" button. When a ...
AlexB's user avatar
  • 4,694
0 votes
0 answers
49 views

After reading the documentation for ngRx what I understood was that NgRx stores data at application level. When I run the application and click a button on my AppComponent, the product gets added to ...
Deepti Karambelkar's user avatar
0 votes
1 answer
147 views

I have a computed in my signal store, which should react on a value change but it just fires 1 time at creating and not when signal values are changing const initialData = { gridItems: [] as ...
andy's user avatar
  • 53
2 votes
1 answer
443 views

We would like to try out the new resource API in Angular in combination with the new ngrx/signal-store. In production, we currently use httpResource to retrieve data from the backend. When an error is ...
nclskfm's user avatar
  • 272
1 vote
1 answer
189 views

I am using NgRx Signal Store and the withEntities feature. By default, this creates an empty collection of items in my store, but I would like to initialize my store with an array of items instead. ...
MegaMatt's user avatar
  • 23.9k
0 votes
1 answer
246 views

I'm migrating an application to standalone components using the following: ng generate @angular/core:standalone I've already migrated every component to standalone. I now need to remove unnecesary ...
cppstudy's user avatar
0 votes
0 answers
97 views

I have application use cases that sit very comfortably in SignalStore e.g. Load and Display an Employee and then allow edits to that employeee. In this model my store exposes my employee and provides ...
royneedshelp's user avatar
1 vote
1 answer
58 views

Currently We have a Spring Hateoas (HAL) implementation in the backend and manually handle the communication with our angular client which is working fine. I started to look for libs (seems like no ...
user31008551's user avatar
-1 votes
1 answer
87 views

I am trying to understand implementation of ngRX in Angular18. Trying to build a shopping-cart flow. There's an 'Add To Cart' button with each gadget listed upon clicking which the gadget SHOULD get ...
Prabir Choudhury's user avatar

15 30 50 per page
1
2 3 4 5
310