You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While it's currently not possible to implement in core, we can use our template tag to render client-side components within this repo as a Django exclusive early release.
Proposed Actions
Develop client side components with multiple execution methods. The initial draft will be based on reactive-python/reactpy#1096
We need to make sure the interface makes the user understand that the whole file is going to be loaded into the browser.
It seems logical that the root component should be def root(...) by default.
We may also want to minify the python code we generate. Minification should be toggleable through minify=False Not feasible since minification would rename the root component
The text was updated successfully, but these errors were encountered:
Current Situation
While it's currently not possible to implement in core, we can use our template tag to render client-side components within this repo as a Django exclusive early release.
Proposed Actions
Develop client side components with multiple execution methods. The initial draft will be based on reactive-python/reactpy#1096
We need to make sure the interface makes the user understand that the whole file is going to be loaded into the browser.
Here's a quick draft of potential API designs:
We should also create a callable variant that can be used as a child within server side components.
It seems logical that the
root
component should bedef root(...)
by default.We may also want to minify the python code we generate. Minification should be toggleable throughminify=False
Not feasible since minification would rename the root component
The text was updated successfully, but these errors were encountered: