Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@affects atoms, react, stores
Description
As we've added features to Zedux, different id types have cropped up all over the codebase. These ids are all different shapes and aren't customizable. We can do better.
Rework
ecosystem.hash
and replace the id generator withecosystem.makeId
. Add amakeId
ecosystem config option for easily customizing id generation.Standardize id shapes.
ComponentName-:idFromUseId:
->@component(ComponentName)-:idFromUseId:
@@selector-name-randomId-paramsHash
->@selector(name)-consistentId-paramsHash
injectMemo
selectors:injectMemo(injectingAtomId)--randomId
->@memo(injectingAtomId)-consistentId
@signal-randomId
->@signal()-consistentId
@signal(injectingAtomId)-randomId
->@signal(injectingAtomId)-consistentId
no-randomId
->@listener(listenedNodeId)-consistentId
Additionally, when component, selector, or hashed function/class reference names are unknown, they all use the string
unknown
instead ofrc-
,unnamed
,anonFn
, orUnknownClass
respectively.Atom ids are unchanged, mostly because that would be a bigger change than all these other id changes combined. Atom ids are used for hydration, snapshotting, and restoring state. Leaving them as-is is fine. They can be easily customized (e.g. to match other ids with an
@atom(templateKey)-
prefix) with the newmakeId
ecosystem config option if desired.This PR removes the IdGenerator class as per the v2 spec.
Breaking Changes
ecosystem._idGenerator
is gone, replaced withecosystem.makeId
.Ids all generate differently. See the v2 migration guide (after this PR merges) for an example
makeId
implementation to get the old ids back.