-
-
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
Subcomponent notation #1285
Subcomponent notation #1285
Conversation
Needs fixes for lint related tests. Also, there is an issue ticket for this. The ticket does suggest a way of implementing this where it could support several layers of sub-components ( |
Oddly, if I run Also, my implementation supports accessing deeply nested components as well - although, like you mentioned, it's probably rare and may not even exist. |
|
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.
See comments.
Additionally, this PR needs a new changelog entry.
@@ -68,6 +68,7 @@ function createImportSourceElement(props: { | |||
}): any { | |||
let type: any; | |||
if (props.model.importSource) { | |||
const rootType = props.model.tagName.split(".")[0]; |
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.
I don't think this variable name makes much sense. Shouldn't it be something like rootPackageName
?
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.
I used rootType
since this the variable two lines above is type
- which refers to the type of Element (i.e. Component) being created. But I went ahead and changed this anyway. In fact, I decided to somewhat refactor the createImportSourceElement
function to move a bit more logic into the getComponentFromModule
function (renamed from tryGetSubType
, as you requested below). Have a look at it now and see if the logic flows well.
Not sure why these tests are failing... For example, the test Uncaught (in promise) SyntaxError: The requested module 'https://unpkg.com/preact?module' does not provide an export named 'h' (at simple-button.js:1:10) Which points to this line in simple-button.js: Any thoughts on what I'm missing? |
Regarding the It also happened momentarily last week as well (on your last PR). I'll re-run the tests on this PR tomorrow and see if it magically fixes itself. There does seem to be some other unrelated issues in the CI errors for the latest commit though. |
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.
Minus some formatting awkwardness, PR can be merged if the tests fix themselves tomorrow.
I fixed the failing python tests by swapping I have no idea why the javascript tests are all failing. They pass on my local machine. Any ideas there? |
Looks like the
On a different note, the latest scheduled CI run on Would be worth investigating by reverting the last commit and seeing if the |
Yeah, it looks like it was just |
The tests seem to work on my local Windows and Linux test environments, so I've opted to just disable the tests for now. The |
Description
I found one prominent case of a ReactJS API that uses what I'm calling "subcomponents". This example is from React Bootstrap, and it appears quite extensively throughout their API. For example, look at this code that was taken from this example:
Note the usage of components accessed with dot-notation:
InputGroup.Text
,Form.Control
, andForm.Label
. I wanted to be able to recreate the above example using ReactPy, so I went ahead and added the support.There are two ways to approach this:
Specify the subcomponent in the
export_names
of thereactpy.web.export
function, like so:Use the dot accessor (getattr) on the "parent" objects returned by the
reactpy.web.export
function, like so: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).