Best way to use atomFamily/selectorFamily
See original GitHub issueHi there! Really love working with recoil, it’s been fun implementing it in a lil documents app I’m building.
I am trying to get my head around the best ways to model data with recoil. Currently I have atoms set up such as:
const items = atom<EntityState<SingleItem>>({
key: 'items',
default: {
ids: [],
entities: {},
},
});
And when I’m adding a new item, it generates an ID and pushes them to the array, then the single item lives in entities[id] = item
.
I feel like things would be better if I used atomFamily
, but I am not clear on how to get a list of all the ids within a type of atom/family.
Additionally, if I have the base atom of the item, which contains the entries and ids, does it make sense to then use atomFamily
/selectorFamily
to use that as the source of data? In that situation, would anything that did something like const singleItem = useRecoilValue(itemsFamily(id)
subscribe to just the specific item?
Thanks for any guidance!
Issue Analytics
- State:
- Created 3 years ago
- Reactions:5
- Comments:5 (2 by maintainers)
Top GitHub Comments
What I like to do in this situation where you need to keep track of all ids is to have an
atom
of ids and entities, and anatomFamily
that given an id returns the entity from that atom. This lets you subscribe to specific ids, and if you need more than one you can create aselectorFamily
that given a collection of ids it aggregates the atoms into a singular value.Families just represent a collection of atoms or selectors based on some parameter. They are useful for passing parameters into selector functions or for creating more granular atoms, since atoms and selectors are the unit of resolution for controlling component updates.