A template tag to create a div and json script tag for react to bind to
Project description
Django BYO React
A minimal template tag which creates a div element for React to bind to and a Django json_script
which can be used to pass values from Django into the root React element as props. This library remains unopinionated about the React code by design since there are so many ways to create and maintain React apps.
Usage
Install the app in settings.py
INSTALLED_APPS = [
"django_byo_react",
...
]
In the template that you want to install a react app load the tag and use it with the given kwargs
. You can add extra props to the root react component by adding kwargs
to the tag element. As long as is json serializable it can be included in the props. This library will give the json script a random uuid and add that as a data attribute data-script-id
to the react app div. This can be used to access the data using javascript.
Example using element id
If the react app is a one off embed we can use the div
id to connect the backend to the frontend. In the following example we've used a simple string id react-app-id
.
Django
{% load byo_react %}
{% byo_react id="react-app-id" className="w-100" showActive=True %}
{% comment %}
showActive is an extra keyword argument rendered in a html script tag
{% endcomment %}
This will render with the following HTML:
<script id="<script-random-uuid>" type="application/json">{"showActive": true}</script>
<div id="react-app-id" data-script-id="<script-random-uuid>" class="w-100"></div>
Javascript/Typescript
The JS/TS side is left to the user as there are many ways in which one can create a react app. This leaves the most flexibility to integrate existing react apps and frameworks into a django page.
Here is a typical example for a very basic app using the div element id react-app-id
to connect the root component from the backend render.
import React, { FC } from "react";
import ReactDOM from "react-dom/client";
// Example root component for a react app
const App: FC = (props) => <div {...props}></div>
const elementId = "react-app-id"
const container = document.getElementById(elementId)
if (!container) throw new Error(`Can't find element with id ${elementId}`);
// Extract props from the django json_script tag
const jsonContent = document.getElementById(container.dataset?.scriptId)?.textContent;
if (!jsonContent) throw new Error("No associated script found");
// props will be a dictionary containing the tag kwargs
// eg: The props constant will be an object with { showActive: true }
const props = JSON.parse(jsonContent);
const root = ReactDOM.createRoot(container)
root.render(<App {...props} />);
Example using component name
There is an optional component_name
argument in the django byo_react
template tag. This is intended for adding the react app root component name directly to the div data attribute so it can be used from the frontend. With the component name we can embed the same react app several times. This might be useful for a react app that needs to be used in several different elements on the same page such as form fields. Here's an example of how we might do that.
Django
{% load byo_react %}
{% byo_react component_name="App" className="w-100" showActive=True %}
This will render with the following HTML:
<script id="<script-random-uuid>" type="application/json">{"showActive": true}</script>
<div id="<div-random-uuid>" data-script-id="<script-random-uuid>" data-component-name="App" class="w-100"></div>
Javascript/Typescript
import React, { FC } from "react";
import ReactDOM from "react-dom/client";
// Example root component for a react app
const App: FC = (props) => <div {...props}></div>
// Get all elements with data attribute `component-name` as "App"
document.querySelectorAll("[data-component-name='App']")).forEach(container => {
// Extract props from the django json_script tag
const jsonContent = document.getElementById(container.dataset?.scriptId)?.textContent;
if (!jsonContent) throw new Error("No associated script found");
// props will be a dictionary containing the tag kwargs
// eg: The props constant will be an object with { showActive: true }
const props = JSON.parse(jsonContent);
const root = ReactDOM.createRoot(container)
root.render(<App {...props} />);
})
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django_byo_react-1.0.0.tar.gz
.
File metadata
- Download URL: django_byo_react-1.0.0.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31cab88791c3a0448b5d386dc26095e484206235e76003daa5956b1e06ec6559 |
|
MD5 | 6950dbeacd431f3e7be2ae6da38241e0 |
|
BLAKE2b-256 | a514eec7b8292cf383f4ed431b860cf72b882cc3b180283498cdedc4a64d9a6f |
File details
Details for the file django_byo_react-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: django_byo_react-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 551be84886012582ded1aecaee2f0238feee773b53a9f0f1bfa63f7b3d3005c5 |
|
MD5 | 67418a29d7318a87793901cc02752b3c |
|
BLAKE2b-256 | 833fd439e9e6e4b6f8a6c57799090bcf1beee876c8388932d34e5387742a7752 |