Questions tagged [angular-redux]

angular-redux is Integration of your redux store into your Angular applications. Use this when dealing with Questions related to redux with Angular applications

68 questions
0
votes
1 answer

Angular redux/forms bind to nested element

I'm currently trying to bind a form to my redux store following this( template driven) so lets say i have the following structure: { person { personName: string, address { street: string, city: string } } } Now i want to bind this…
kodeaben
  • 1,829
  • 3
  • 24
  • 33
0
votes
1 answer

Angular 5 and angular-rdux/store

I have installed Angular 5, "@angular-redux/store": "^7.1.0", "redux": "^3.7.2", Here is my app.module.ts constructor: constructor(ngRedux: NgRedux) { console.log('Configuring ngRedux'); ngRedux.configureStore(rootReducer,…
Abhilash D K
  • 1,223
  • 1
  • 23
  • 39
0
votes
1 answer

Getting values from Redux state

We're working in Angular 4 project with RXJS and Redux for state management. Currently we're working on a Wizard feature. The wizard include 5 steps that every step is a reactive form by himself, and every step has sub reducer for handling his own…
Meitark
  • 111
  • 1
  • 1
  • 7
0
votes
1 answer

Features & benefits of ngrx/store over reduxjs used in angular 2 app

What are the advantage/disadvantage of using ngrx/store over reduxJs to implement data flow architecture in application developed using angular2+. Also which one would be better for a large web application developed in angular2: 1. redux 2.…
0
votes
1 answer

TypeError: jit__object_Object_38 is not a constructor, NgRedux, Angular 2

Please forgive me just trying on things in Unit testing in Angular 2. This weird error comes on executing npm run test. Might be a small mistake, but unabel to figure out with this weird error: import { TestBed, async, inject } from…
Kailas
  • 7,350
  • 3
  • 47
  • 63
0
votes
1 answer

How would I delay/debounce a call to a child component in Angular?

There are a series of components that will reveal themselves after running a custom method viewChildRef.show() on them (I'm using a @ViewChild reference). The problem is that the state gets updated with a @Select decorator (angular-redux/store)…
ktamlyn
  • 4,519
  • 2
  • 30
  • 41
-1
votes
1 answer

can't assign object value to object JavaScript

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: boolean; } And I declared two objects…
Hamdy
  • 430
  • 1
  • 6
  • 19
-1
votes
1 answer

@angular-redux/store : How to write unit test for the redux store?

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?
1 2 3 4
5