我正在学习 Angular 2,我正在尝试使用 ngrx/store,但是在某些特殊情况下我遇到了一些困难。
示例 我正在尝试删除父对象。我想要做的是删除子对象。
这是我的实体:
export class Discussion {
id: string;
name: string;
createdAt: Date;
posts: Post[];
}
export class Post {
id: string;
title: string;
data: string;
createdAt: Date;
comments: Comment[];
}
export class Comment {
id: string;
data: string;
createdAt: Date;
}
我正在使用 normalizr 来展平我的状态,所以我存储的讨论将如下所示:
{
id: "1",
name: "First dicussion",
createdAt: "...",
posts: ["1", "2", "3", "5"]
}
我有 3 个减速器,一个用于讨论,另一个用于帖子,最后一个用于评论。所有 reducer 都处理它自己类型的 delete Action。这是讨论减速器的示例:
export function reducer(state = initialState, action: discussion.Actions): State {
switch (action.type) {
case discussion.REMOVE: {
const idToRemove = action.payload;
const newEntities = state.entities;
delete newEntities[idToRemove];
return Object.assign({}, state, {
entities: newEntities
});
}
}}
我的动作是这样的:
export class RemoveAction implements Action {
readonly type = REMOVE;
/**
* Constructor
* @param payload The id of the discussion to remove
*/
constructor(public payload: string) { }
}
当我删除讨论时,我想删除与讨论相关的帖子,帖子效果将删除与已删除帖子相关的评论。我使用了ngrx的效果,所以我使用了这个效果:
@Effect()
removeDiscussion: Observable<Action> = this._actions
.ofType(dicussion.REMOVE)
.map((action: discussion.RemoveAction) => action.payload)
.mergeMap(discId => {
// How to get posts from discussion id ???
// Fire related Actions
return [
new posts.RemoveAction(postsToRemove)
];
});
我的问题是如何从讨论 ID 中删除帖子?
谢谢阅读。