Created
June 4, 2020 03:48
-
-
Save ericelliott/09efa2ef7d6aa7da7696f489c7326dd1 to your computer and use it in GitHub Desktop.
after-immer.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import produce from 'immer'; | |
const like = item => ({ | |
type: like.type, | |
payload: item | |
}); | |
like.type = 'user/like'; | |
const initialState = { | |
name: 'Anonymous', | |
avatar: 'Anonymous', | |
email: '', | |
walletAddress: '', | |
likes: {} | |
}; | |
// After immer | |
const reducer = produce((draft, { type, payload } = {}) => { | |
switch (type) { | |
case like.type: { | |
draft.likes[payload.id] = payload; | |
return; | |
} | |
default: | |
return draft; | |
} | |
}, initialState); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment