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 Currently, `module_from_template` only has a template for `react` ### Proposed Actions We should add more templates for other popular frameworks, such as `vue`, `svelte`, and `angular`.

type-feature
priority-2-moderate

### Current Situation SharedClientServer is currently not multiprocessing safe. ### Proposed Changes Assess different implementations for getting something that is multiprocessing safe. ### Implementation Details May want to consider funneling...

type-feature
priority-3-low

It should be possible to get ReactPy running as a native desktop application using something like Electron without too much difficulty. The main challenge would be in wrapping all the...

priority-3-low

### Current Situation Currently, all warnings or exceptions generated within the react client are only displayed on the front-end. There is a reasonable expectation that most users aren't always going...

type-feature
priority-3-low

### Current Situation The client code currently strips `script` tags and replaces them with `div`. For example, this script element wont appear within the browser's DOM. ```python @component def my_component():...

flag-good-first-issue
priority-3-low

### Current Situation ReactPy can generate type hinting errors generated (from Pylance). For example, the fact that `reactpy.component` can ingest a `ComponentType`, but can only return a `Component`. Or the...

priority-3-low
type-refactor

### Current Situation Hooks within react libraries, for example, [usePagination](https://react-table.tanstack.com/docs/api/usePagination) hook within React-Table currently need to be manually rewritten in order to function in IDOM. ### Proposed Changes Investigate whether...

type-feature
priority-3-low

### Current Situation We tried to check changelog changes in the past, but the GitHub action we used didn't seem to work. ### Proposed Actions I found a [working example](https://github.com/open-telemetry/opentelemetry-python/blob/b86a9a5e3ddc8f8299f8d07715785aabbe2f9e08/.github/workflows/changelog.yml)...

priority-3-low
type-ci

### Current Situation Right now we render interactive examples from the docs, but there's no way to edit the source to see the output change. This is because the examples...

type-docs
priority-3-low

### Current Situation Currently, it is not possible to scope CSS/JS within IDOM. ### Proposed Actions Develop `html.shadow_dom`. All children inside of this will be rendered within a [Shadow DOM](https://www.wpeform.io/blog/render-react-app-shadow-dom-styled-components/)...

priority-2-moderate