reactpy icon indicating copy to clipboard operation
reactpy copied to clipboard

It's React, but in Python

Results 158 reactpy issues
Sort by recently updated
recently updated
newest added

### Current Situation The `snake_case` to `camelCase` prop conversion was created with the theory that it should be zero impact. Related PR: - https://github.com/reactive-python/reactpy/pull/919 - https://github.com/reactive-python/reactpy/pull/841 However, we've received our...

priority-2-moderate
type-revision

### Current Situation Currently we utilize a decorator to allow for `prevent_default` and `stop_propogation`. But this syntax is pretty awkward. ```python @component def LoginForm(props): @reactpy.event(prevent_default=True, stop_propogation=True) def handle_login(event): ... ```...

priority-3-low
type-revision

### Current Situation ReactPy currently requires too much web development knowledge for data scientists applications. ### Proposed Actions Create `reactpy-data-science` which contains pre-styled, self-contained components. A few target goals we...

priority-2-moderate

By submitting this pull request you agree that all contributions to this project are made under the MIT license. ## Issues #863 Rewriting the docs for the 'Reacting to Input...

By submitting this pull request you agree that all contributions to this project are made under the MIT license. ## Issues New docs documentation ## Solution The examples and descriptions...

### Current Situation In ReactJS, `event.target.checked` would exist for checkboxes. However, this does not appear to be the case for ReactPy. See the [example in the docs](https://github.com/reactive-python/reactpy/blob/3a0d107b749a49272cae6a42e3b816bc14d0c81a/docs/examples/python/thinking_in_react/add_inverse_data_flow.py#L87) for a scenario...

type-bug
flag-good-first-issue
priority-1-high
type-javascript

### Current Situation We currently require a structured/implict routes for `SimpleReactPyClient`. ```js /* * - `_reactpy/stream/${route}${query}`: The websocket endpoint for the stream. * - `_reactpy/modules`: The directory containing the dynamically...

priority-2-moderate
type-revision
type-refactor

When running the following example: ``` from reactpy import component, run, web mui = web.module_from_template( "react@^17.0.0", "@material-ui/[email protected]", fallback="⌛", ) Button = web.export(mui, "Button") @component def HelloWorld(): return Button({"color": "primary", "variant":...

type-bug
priority-2-moderate
release-patch

### Current Situation We currently do not have an equivalent to `react-devtools`, which makes it difficult for users to inspect components, props, and states. ### Proposed Actions Determine how we...

priority-3-low
type-investigation

As detailed in issue #1195, custom components were being needlessly re-created on every re-render. This was due to the `vdomImportSource` (i.e. `model.importSource`) of the custom component being used as a...