-
-
Notifications
You must be signed in to change notification settings - Fork 324
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
Ensures key is properly propagated to importedElements #1271
Conversation
The "key" prop was being lost in the trickle-down of importedElements.
Can you add a test for this within You can directly use the |
@Archmonger I'm fresh off of vacation and will try to get that test incorporated ASAP. Thanks for already taking a look at this. |
So I never actually set up a proper development environment for reactpy. Thus, I've never ran tests or anything. I just barely tried to follow the Contribute Guide to get the test environment set up, and am running into issues. I'm on a Windows 11 machine and used conda to create a new virtual environment with Python 3.13.2. I installed all of the prerequisites. Then when running
I tried to install reactpy from the cloned repo using Any help would be appreciated. Thanks! |
Have you tried using standard CPython venv instead of using conda (ex I haven't tried our toolchain with Conda yet, so there might be some deficiencies there. |
Got it working! And I have the test written. My first stab at writing a test within this framework. Unlike the other examples in |
Removes debugger statement.
Removes `timeout=0` that was there for testing
I'm okay with using React for that test. I've seen oddball scenarios where mixed preact/react contexts are hit or miss. That might be the cause of issues with using a parent Out of curiosity, was the issue with setting up your development environment related to Conda? |
Per feedback by @Archmonger
I'm quite sure it was not related to The second issue was much more difficult to track down. I got that same permission error above whether I used I eventually determined - my best guess at least - that the underlying isolated test environment must have been getting cached and treated as built even though it had failed with that first permissions error, if that makes sense. All I know is that to finally get it to work, I had to execute the So again, apparently if something in the underlying build fails when running |
Hatch will always caches environments it creates, which is expected. But Hatch really should have auto-deleted the initial environment if the build command failed. I agree that issue you linked seems to be the culprit. Hopefully they fix it soon. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR looks good and likely can be merged as is.
However, before merging can you see if removing the pop
call from this LOC is a better solution to this issue?
There we go. I have the server-side implementation complete with tests updated and passing. Let me know if you prefer the original client-side way I had done it, and I can go ahead and revert. |
Since "key" is the only allowed attribute, I just pop that out before checking if anything is left in attributes, and if so, the error is raised.
Very confused as to why a test just failed after my tweak... Is that some random fluke of a fail? |
Fixes #1270. The "key" prop was being lost in the trickle-down of importedElements.
Description
I just added a block of code to the createAttributes function to check if the "key" is part of the vdom model and if so, to add it to the attributes. There may be a better and more thorough way to do this higher up the call chain, but this fixed the issue for me in my use case (see #1270).
Checklist
Please update this checklist as you complete each item:
By submitting this pull request I agree that all contributions comply with this project's open source license(s).