Skip to content

Instantly share code, notes, and snippets.

@nomanHasan
Last active October 11, 2017 10:00
Show Gist options
  • Save nomanHasan/b1f91985b60ec254a296a7a41fae6cb6 to your computer and use it in GitHub Desktop.
Save nomanHasan/b1f91985b60ec254a296a7a41fae6cb6 to your computer and use it in GitHub Desktop.
3 #todoapp-angular-ngrx
// ........................
export function TodoReducer(state = defaultState, action: Action) {
switch (action.type) {
//...............
case TodoActions.CREATE_TODO_SUCCESS: {
return {
...state,
todos: [
...state.todos.filter(t => {
return t._id != "new"
}), {
...action.payload,
edited: true
}, {
...Todo.generateMockTodo(),
...initializeTodoState()
}]
}
}
// ............
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment