Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: standardize id generation #201

Merged
merged 1 commit into from
Mar 8, 2025
Merged

feat!: standardize id generation #201

merged 1 commit into from
Mar 8, 2025

Conversation

bowheart
Copy link
Collaborator

@bowheart bowheart commented Mar 4, 2025

@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 with ecosystem.makeId. Add a makeId ecosystem config option for easily customizing id generation.

Standardize id shapes.

  • React components: ComponentName-:idFromUseId: -> @component(ComponentName)-:idFromUseId:
  • Selectors: @@selector-name-randomId-paramsHash -> @selector(name)-consistentId-paramsHash
  • injectMemo selectors: injectMemo(injectingAtomId)--randomId -> @memo(injectingAtomId)-consistentId
  • Standalone signals: @signal-randomId -> @signal()-consistentId
  • Injected signals and mapped signals: @signal(injectingAtomId)-randomId -> @signal(injectingAtomId)-consistentId
  • Listener nodes: no-randomId -> @listener(listenedNodeId)-consistentId

Additionally, when component, selector, or hashed function/class reference names are unknown, they all use the string unknown instead of rc-, unnamed, anonFn, or UnknownClass 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 new makeId ecosystem config option if desired.

This PR removes the IdGenerator class as per the v2 spec.

Breaking Changes

ecosystem._idGenerator is gone, replaced with ecosystem.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.

@bowheart bowheart added this to the Zedux v2 milestone Mar 4, 2025
@bowheart bowheart merged commit b140aa9 into master Mar 8, 2025
2 checks passed
@bowheart bowheart deleted the josh/standardize-ids branch March 8, 2025 03:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant