reactpy
reactpy copied to clipboard
It's React, but in Python
### Current Situation `vdom_to_html` does not render anything of `ComponentType` ### Proposed Actions Do a basic `component.render()` action on each `ComponentType`.
### Current Situation From here : https://reactpy.dev/docs/guides/getting-started/running-reactpy.html Code example doesn't work . Backend import are missing. ```python from reactpy import component, html from reactpy.backend.starlette import configure # ==> missing :...
### Current Situation The name of the `reactpy.web.export` function is a bit of a misnomer. From the perspective of the user, the function is doing _importing_, not _exporting_. ### Proposed...
### Current Situation We have a [PR that added ASGI middleware](https://github.com/reactive-python/reactpy/pull/1113). This PR did not include WSGI middleware to limit scope. However, it is technologically possible for us to run...
### Current Situation Currently, our client-side components use `pyodide` to execute ReactPy. However, Pyodide unfortunately has a pretty slow boot-up time. ### Proposed Actions Try using [MicroPython](https://docs.pyscript.net/2023.09.1.RC2/user-guide/#micropython) to render ReactPy...
### Current Situation Now that we have [client side components](https://github.com/reactive-python/reactpy/pull/1269), it is now technologically possible for ReactPy to be compiled into a static site / flatpage(s). ### Proposed Actions Create...
### Current Situation There are a few awkward designs of the current VDOM spec. We might want to push for a handful of changes. ### Proposed Actions Things that might...
## Description Add onChange to input elements ## Checklist Please update this checklist as you complete each item: - [ ] Tests have been developed for bug fixes or new...
### Current Situation If an exception is thrown in the component body of a PyScript component, the component's become unresponsive. This can be demonstrated by using the following pyscript component...
### Current Situation It currently isn't documented how client-side rendered (CSR) PyScript components can run ReactJS CSR and ReactPy SSR components. ### Proposed Actions Create an interface that can let...