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: allow spreading in reflect #12

Merged
merged 3 commits into from
Mar 30, 2025
Merged

feat: allow spreading in reflect #12

merged 3 commits into from
Mar 30, 2025

Conversation

aspirisen
Copy link
Collaborator

I add to the first argument in reflect method a lenses dictionary. It will allow you to use ...spread if you want to leave other props as is.

function Component({ lens }: { lens: Lens<{ firstName: string; lastName: string; age: number }> }) {
  return (
    <PersonForm
      lens={lens.reflect(({ firstName, lastName, ...rest }) => ({
        ...rest,
        name: firstName,
        surname: lastName,
      }))}
    />
  );
}

function PersonForm({ lens }: { lens: Lens<{ name: string; surname: string; age: number }> }) {
  //...
}

In runtime is use proxy to call focus method, so spread will not actually add the properties, but that will help with correct typescript typings

@aspirisen aspirisen requested a review from bluebill1049 March 25, 2025 14:23
@aspirisen aspirisen self-assigned this Mar 25, 2025
Copy link
Member

@bluebill1049 bluebill1049 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@aspirisen aspirisen merged commit 836fa44 into main Mar 30, 2025
5 checks passed
Copy link

🎉 This PR is included in version 0.4.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants