I have problem. Currently i learn NgRx from scratch. I create angular project, add new car component. Next add ngrx state, actions, reducer and effects. When i run my project, i don't have aby error, though set wrong API url, when i set correct url, still notting happen.
When i add console log to reducer, i see this in console. But when i add console log, to car.effects.ts with message true, then not showing.
My app code: Reducer
import { Action } from '@ngrx/store';
import * as CarActions from './car.actions';
import { Car } from 'src/models/car.model';
const initialState: Car = {
brand: '',
model: ''
};
export function carReducer(state: Car[] = [initialState], action: CarActions.Actions) {
switch (action.type) {
case CarActions.ADD_CAR:
return [...state, action.payload];
case CarActions.ADD_CAR_FAIL:
return {
...state,
carError: action.payload,
};
default:
return state;
}
}
State
import { Car } from './../../models/car.model';
export interface AppState {
readonly car: Car;
}
Actions
import { Action } from '@ngrx/store';
import { Car } from './../../models/car.model';
export const ADD_CAR = '[CAR] Add';
export const ADD_CAR_FAIL = '[CAR] Fail';
export class AddCar implements Action {
readonly type = ADD_CAR;
constructor(public payload: Car) {}
}
export class AddCarFail implements Action {
readonly type = ADD_CAR_FAIL;
constructor(public payload: string) {}
}
export type Actions = AddCar | AddCarFail;
Effects
import { Actions, Effect, ofType } from '@ngrx/effects';
import * as CarActions from './car.actions';
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { switchMap, catchError, map, tap } from 'rxjs/operators';
import { of } from 'rxjs';
@Injectable()
export class CarEffects {
@Effect()
carAdd = this.actions$.pipe(
ofType(CarActions.ADD_CAR),
switchMap((carData: CarActions.AddCar) => {
console.log('true');
return this.http.post('http://myapi.com/api', { brand: carData.payload.brand, model: carData.payload.model }).pipe(map(resData => {
localStorage.setItem('test', 'asdasdasd');
}),
catchError(errorRes => {
console.log(errorRes);
const errorMessage = 'An unknown error occurred!';
if (!errorRes.error || !errorRes.error.error) {
return of(new CarActions.AddCarFail(errorMessage));
}
console.log(errorRes.error.error.message);
return of(new CarActions.AddCarFail(errorRes.error.error.message));
}));
})
);
constructor(
private actions$: Actions,
private http: HttpClient) { }
}
App.Module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { CarComponent } from './car/car.component';
import { StoreModule } from '@ngrx/store';
import { carReducer } from './car/car.reducer';
import { HttpClientModule } from '@angular/common/http';
@NgModule({
declarations: [
AppComponent,
CarComponent
],
imports: [
BrowserModule,
StoreModule.forRoot({car: carReducer}),
HttpClientModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
I install store-devtools and i have in console:
ERROR in node_modules/@ngrx/store-devtools/src/config.d.ts(2,10): error TS2305: Module '"C:/Users/Sebastian/Documents/ngrx-angular/node_modules/@angular/core/core"' has no exported member 'OpaqueToken'.
node_modules/@ngrx/store-devtools/src/devtools.d.ts(1,10): error TS2305: Module '"C:/Users/Sebastian/Documents/ngrx-angular/node_modules/@ngrx/store/store"' has no exported member 'Dispatcher'.
node_modules/@ngrx/store-devtools/src/devtools.d.ts(1,22): error TS2305: Module '"C:/Users/Sebastian/Documents/ngrx-angular/node_modules/@ngrx/store/store"' has no exported member 'Reducer'.
node_modules/@ngrx/store-devtools/src/extension.d.ts(1,10): error TS2305: Module '"C:/Users/Sebastian/Documents/ngrx-angular/node_modules/@angular/core/core"' has no exported member 'OpaqueToken'.
node_modules/@ngrx/store-devtools/src/instrument.d.ts(2,10): error TS2305: Module '"C:/Users/Sebastian/Documents/ngrx-angular/node_modules/@ngrx/store/store"' has no exported member 'Reducer'.
I made some small modify. You are using wrong version
{
"name": "ngrx-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"@ngrx/effects": "^7.4.0",
"@ngrx/store": "^7.4.0",
"@ngrx/store-devtools": "^7.4.0",
"core-js": "^2.5.4",
"rxjs": "~6.3.3",
"rxjs-compat": "^6.5.2",
"save": "^2.4.0",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.8",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@types/node": "~8.9.4",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"codelyzer": "~4.5.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2"
}
}
Also change here
imports: [
BrowserModule,
StoreModule.forRoot({ car: carReducer }),
HttpClientModule,
StoreDevtoolsModule.instrument({
maxAge: 5
})
],
The result
The pr here