client/src/reducers/notesReducer.js
author ymh <ymh.work@gmail.com>
Mon, 19 Jun 2017 21:46:21 +0200
changeset 59 1eb52770eefa
parent 58 f16a080e0bc4
child 62 b2514a9bcd49
permissions -rw-r--r--
Backed out changeset f16a080e0bc4

import Immutable from 'immutable';
import * as types from '../constants/actionTypes';
import noteRecord from '../store/noteRecord';

export default (state = Immutable.List([]), action) => {
  switch (action.type) {
    case types.ADD_NOTE:
      return state.push(new noteRecord(action.note));
    case types.LOAD_NOTES_BY_SESSION:
      return action.notes;
    default:
      return state;
  }
};