Skip to content

Instantly share code, notes, and snippets.

@nomanHasan
Created October 11, 2017 10:03
Show Gist options
  • Save nomanHasan/cc9a910edb8107a51dfd91b0b83f2344 to your computer and use it in GitHub Desktop.
Save nomanHasan/cc9a910edb8107a51dfd91b0b83f2344 to your computer and use it in GitHub Desktop.
9 #todoapp-angular-ngrx
// ........................
function modifyTodoState(state, todo: TodoState, modifications): TodoListState {
return {
...state,
todos: state.todos.map(t => {
if (t._id == todo._id) {
return { ...t, ...todo, ...modifications }
} else {
return t;
}
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment