J'essaie d'utiliser la propriété 'take' lorsque je sélectionne un état dans ma fonctionnalité, mais l'erreur Property 'take' does not exist on type 'Store<State>
s'affiche. S'il vous plaît, quelqu'un a une idée de ce qui se passe? La raison pour laquelle je veux le faire est que je dois identifier le moment où l'utilisateur a cliqué sur le bouton "Ajouter un espace" qui modifie mon modèle en un formulaire. Comme ce mode modifie également le modèle du parent, je le gère avec @ ngrx/store.
Mon code:
import { Component, Input, OnInit, OnDestroy } from '@angular/core';
import { NgForm } from '@angular/forms';
import { Store } from '@ngrx/store';
import { Subscription } from 'rxjs/Subscription';
import { Space } from '../../../shared/space.model';
// import { SpacesService } from '../../spaces.service';
import * as SpacesActions from '../../store/spaces.actions';
import * as fromSpaces from '../../store/spaces.reducers';
@Component({
selector: 'app-space-item',
templateUrl: './space-item.component.html',
styleUrls: ['./space-item.component.scss']
})
export class SpaceItemComponent implements OnInit, OnDestroy {
@Input() space: Space;
@Input() index: number;
private addMode: boolean;
private editMode = false;
// updatedSpaceName: string;
// updatedSpace: Space;
private subscription: Subscription;
updatedSpaceName: string;
updatedPicture: string;
constructor(
// private spacesService: SpacesService,
private store: Store<fromSpaces.FeatureState>) { }
ngOnInit() {
this.subscription = this.store.select('spaces')
.take(1)
.subscribe(
data => {
if (data.addMode) {
this.addMode = data.addMode;
} else {
this.addMode = false;
}
}
);
}
ngOnDestroy() {
this.subscription.unsubscribe();
}
onEnableEdit() {
this.editMode = true;
this.updatedSpaceName = this.space.name;
this.updatedPicture = this.space.picture;
// console.log(this.updatedSpace);
}
onUpdate() {
this.onCancelEdit();
const updatedSpace = new Space(this.updatedSpaceName, this.updatedPicture);
// this.spacesService.updateSpace(updatedSpace, this.index);
this.store.dispatch(new SpacesActions.UpdateSpace({index: this.index, updatedSpace}));
}
onCancelEdit() {
this.editMode = false;
// this.updatedSpace = this.space;
}
onCancelAdd() {
// this.spacesService.addModeActivated.next(false);
this.store.dispatch(new SpacesActions.SwitchAddMode(false));
}
onDelete() {
// this.spacesService.deleteSpace(this.index);
this.store.dispatch(new SpacesActions.DeleteSpace(this.index));
}
onAddSpace(form: NgForm) {
const value = form.value;
const newSpace: Space = new Space(value.spaceName);
// this.spacesService.addSpace(newSpace);
this.store.dispatch(new SpacesActions.AddSpace(newSpace));
}
}
essayez de l'importer
import 'rxjs/add/operator/take';
pour angulaire 6
import { take } from 'rxjs/operators';
En cas de 6 angulaire:
1) importer de rxjs
import { take } from 'rxjs/operators';
2) l'utiliser avec la méthode pipe
.pipe(take(1))
est un problème de compatibilité avec la dernière version de angular, vous avez besoin de rxjs-compat.
solution:
npm install --save rxjs-compat