Skip to content

Instantly share code, notes, and snippets.

@daveharmswebdev
Created November 14, 2017 13:25
Show Gist options
  • Save daveharmswebdev/150393338047dabc0e6eb79b092faacc to your computer and use it in GitHub Desktop.
Save daveharmswebdev/150393338047dabc0e6eb79b092faacc to your computer and use it in GitHub Desktop.
todolist ngrx refactor todos reducer.
import { ITodo } from '../models';
import * as ListActions from '../actions/todo-list.actions';
export type Action = ListActions.All;
export function todosReducer(state: ITodo[], action: Action) {
switch (action.type) {
case ListActions.FETCH_TODOS_SUCCESS:
return action.payload;
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment