@app-elements/use-mapped-state

1.0.0 • Public • Published

useMappedState

useMappedState maps values from the provided (atom/Redux) store and keeps your Component synced with any changes to those mapped values.

Installation

npm install --save @app-elements/use-mapped-state

Usage

import { useMappedState } from '@app-elements/use-mapped-state'
import createStore from 'atom'

const store = createStore([], { count: 0 })

// Here is a simple view that expects a `count` value
// form the global state.
const Stateful = (props) => {
  // `mapper` is a function that is given the entire state object from your store.
  // Your job is to return the portion of that state object that this Component
  // is concerned with.
  const mapper = ({ count }) => ({ count })
  const { count } = useMappedState(store, mapper)
  return (
    <p>Count: {count}</p>
  )
}

Props

Prop Type Default Description
store Object None An (atom) store instance
mapper Function None A function that accepts (state) and returns an object

Package Sidebar

Install

npm i @app-elements/use-mapped-state

Weekly Downloads

1

Version

1.0.0

License

ISC

Unpacked Size

16.2 kB

Total Files

12

Last publish

Collaborators

  • adriaanwm
  • coryschadt
  • staydecent
  • trustfall