Seasons Greetings everyone!
I have the following:
static PhoneActions.ADD = '[Phone] ADD';
export const phonesReducer: ActionReducer< Map<number, {}>> = (
state: Map<number, {}> = new Map<number, {}>(), action?: Action ) => {
switch ( action.type ) {
case PhoneActions.ADD:
return [...action.payload]
};
Currently, I am only returning the the payload without using the current state which I think is incorrect. The payload is the complete map, not an item in the map.
How could I correct this? Or it is fine as is?
A reducer takes two arguments : The current state and an action.
It should return a new state, which is the same type of the current state.
From redux documentation :
Here's your function :
Your current state is a
Map<number, {}>
.You should return a
Map<number, {}>
.Instead of that, you return an array containing the action.payload (exploded).
Plus, you should have a default statement returning the current state.
When using a map and the
set
method, you'll mutate the original object. It'll become quite hard to ensure immutability. If you really want to use a map, I think you should take a look toImmutable.js
here