Last active
July 4, 2018 02:45
-
-
Save toruticas/1b2e6585b4f95d74a7c8218ea9402cb8 to your computer and use it in GitHub Desktop.
[Medium] reducer with ImmutableJS
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
export default (action, state) => { | |
switch(action.type) { | |
case FIRST_EXAMPLE: | |
return state | |
.updateIn( | |
["dfes", "nfes", "data", action.index], | |
data => data.set("visible", true) | |
) | |
.setIn("quickbarIsOpen", true) | |
default: | |
return state | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment