Skip to content

Instantly share code, notes, and snippets.

@toruticas
Last active July 4, 2018 02:45
Show Gist options
  • Save toruticas/1b2e6585b4f95d74a7c8218ea9402cb8 to your computer and use it in GitHub Desktop.
Save toruticas/1b2e6585b4f95d74a7c8218ea9402cb8 to your computer and use it in GitHub Desktop.
[Medium] reducer with ImmutableJS
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