Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
89 views

I'm trying to use the new Redux implementation for Angular (@reduxjs/angular-redux). I followed the getting start and the TypeScript guide of the documentation. I am able to dispatch actions and ...
MShake's user avatar
  • 11
0 votes
1 answer
119 views

I'm using redux with redux-angular. My usecase is to fetch data in two steps: Fetch user courses For each course download the progress I've tried several ways, always with the same effect. Only the ...
Marcin Kunert's user avatar
-1 votes
1 answer
513 views

I am trying to assing an object to another object with the same type. So, I have this object 'Language' export class Language { languageDescription: string; languageCode: string; isDefault: ...
Hamdy's user avatar
  • 440
1 vote
0 answers
120 views

Updated my project from Angular 8 to Angular 10. package.json contains : "@angular-redux/form": "6.7.0", "@angular-redux/store": "7.1.1", "@angular/cdk&...
Amrutha R's user avatar
1 vote
1 answer
82 views

I am using redux to perform "CRUD" operations. In my student.reduce.ts file, I have this code to generate a new register: case StudentsActionTypes.CreateStudentSucceeded: let ...
Eladerezador's user avatar
  • 1,321
0 votes
1 answer
385 views

I'm using @angular-redux/store in my project. I'm trying to create a guard with @select() decorator like this: @select((s: IAppState) => s.user.userInformations.userState) userState$: Observable<...
Emad Az's user avatar
  • 35
0 votes
0 answers
89 views

I have updated the angular app from 8 to 9, after updating when I run the application, it gives me a error as ERROR in @angular-redux/form/angular-redux-form.ts(3,32): Error during template compile of ...
San Jaisy's user avatar
  • 17.5k
3 votes
1 answer
1k views

After updating angular 9 to the latest version ("@angular/core": "~11.0.0-next.0",). I got the below error, however, I have updated the latest version of @angular-redux/form, @...
San Jaisy's user avatar
  • 17.5k
0 votes
1 answer
68 views

For example we have some effect: ... switchMap(() => of(action1, action2)) ... and ... switchMap(() => [action1, action2]) ... Do we have any differents?
artart's user avatar
  • 3
1 vote
0 answers
371 views

I'm trying to create a library that depends on @angular-redux/store but I can't figure out how to put an entry for it at my angular library's umdModuleIds in ng-package.json: "umdModuleIds": ...
john.solano's user avatar
0 votes
1 answer
103 views

I would like to call a function received from a stream of data using Angular 9 async pipe. The following code (onApprove)="(modalData$ | async).onApprove()" throws this error: Cannot have a pipe in ...
noam steiner's user avatar
  • 4,484
0 votes
1 answer
187 views

I'm building something with Angular and using redux. My json object has objects that have certain values. Lets pretend: name: "john", sex: "m" children: [ { name: "joe", sex: "m" children: [ ...
bequr's user avatar
  • 19
0 votes
1 answer
363 views

I am trying to filter a store subscription based on route params, but something about my syntax is not correct. I am trying to pipe the params down so the filter rxjs operator can filter the store the ...
HelloMoto7's user avatar
1 vote
0 answers
215 views

I am using ngrx redux to get the data from api in angular. I can't loop the fetched data in select tag. Below is my required code: pfa.module.ts: export class Pfa { id: number; area: string; ...
Pathik Vejani's user avatar
-1 votes
1 answer
730 views

I want to mock the redux store and write tests against the redux-store directly to the store. I don't want any angular logic to come in between. Can somebody help?
MAHESH VALIYA VEETIL's user avatar

15 30 50 per page
1
2 3 4 5