A React Hook for relating UI state to a list of entities
A Custom React Hook for relating UI state to a list of entities
Sometimes, when you are creating a component, that component will recieve an array from props, a list of things that represent some entity: a list of todos, people, definitions, etc..., and your UI Element may want to save a little bit of state for each of the Entities.
Somtimes it's state such as whether the definition box is open or closed, or whether the item has been selected, or the position it's been dragged to on the screen.
Putting the "extra bit of UI state" (a.k.a. the "Related State") directly on the entity feels wrong, and so this is a simple hook, that takes a list (an array) of entities and returns a list of tuples (also arrays), where the first item is just the item, and the second item is the related state, along with some functions to set the related state for the items.
import useRelatedState from 'use-related-state'
const SpeakersList = ({ speakers }) => {
const [speakerTuples, setSpeakerOpen] = useRelatedState(speakers, () => false)
return speakerTuples.map(([speaker, isOpen]) => (
<details key={speaker.id} open={isOpen}>
<summary>{speaker.name}</summary>
{speaker.bio}
</details>
)
}
npm install @bigab/use-related-state
*Note use-related-state requires react
as a peer dependancy
const [itemStateTuples, setRelatedStateForItem, setRelatedStateForAll] = useRelatedState( items:array(any)[, defaultValueMapper:function, identifier] )
useRelatedState( items, defaultValueMapper, identifier )
items
- an array of anythingdefaultValueMapper
[optional] - a function which recieves and item as an argument and returns the initial value of the related state before any related-state has been updatedidentifier
[optional] - a function used to create an identifier "key" to identify the entity. It defaults tov => v
but if your entity objects are not always the same references, but just data representing those entities, you probably want to pass something likeitem => item.id
for the identifier function
[itemStateTuples, setRelatedStateForItem, setRelatedStateForAll]
- An array with 3 elements
itemStateTuples
- an array of arrays, where each array element has 2 elements,[item, relatedState]
, the item item in the 0 index position and the relatedState in the 1 index positionsetRelatedStateForItem
- a function that takes 2 arguments(item, newRelatedState)
, if you need access to the old state, you can pass a function fornewRelatedState
which will be called with the current related state as an argument, and should return the value of the new related statesetRelatedStateForAll
- a function that will be used to map over all the items and return the newRelated state you want to set. It takes a function as an argument,mapRelatedState
, and that function will recieve theitem
and currentrelatedState
and you should return the new related state for eachitem
in the items list
TODO: Examples
See the latest releases on GitHub.