Django JSON form field on steroids
Project description
django-reactive integrates react-jsonschema-form (RJSF) in Django projects.
Motivation
JSON types in Postgres allow combining both relational and non-relational approaches to storing data. That can lead to a simpler database design in the most cases.
Django provides ORM support for JSON types in Postgres and other databases via the JSONField model field. Also the JSONField form field allows basic support of JSON in forms. Django ORM even allows querying against the data stored inside the JSON structures. Moreover, it is possible to improve performance of these queries using GIN indexes with jsonb types in Django, which makes opens up a wide range of possibilities for simplifying application design, such as polymorphic collections, storing complex hierarchies in JSON, lists of related entities, etc.
However, the main limitation of JSONField in Django is the lack of good support of UI for JSON structures as defining JSON objects inside the textarea inputs is not practical for most use cases. django-reactive tries to address this problem by offering an integration between JSONField and the awesome react-jsonschema-form (RJSF) JavaScript library.
django-reactive also uses Python jsonschema <https://github.com/Julian/jsonschema> library for backend validation. Such integration can significantly reduce the amount of work needed for building custom forms for JSONField types.
In most cases it only requires a JSON schema configuration for such field and optionally a UI schema to modify some representation parameters.
A basic example of this is demonstrated below:
from django.db import models
from django_reactive.fields import ReactJSONSchemaField
class Registration(models.Model):
basic = ReactJSONSchemaField(
help_text="Registration form",
schema={
"title": "Register now!",
"description": "Fill out the form to register.",
"type": "object",
"required": [
"firstName",
"lastName"
],
"properties": {
"firstName": {
"type": "string",
"title": "First name"
},
"lastName": {
"type": "string",
"title": "Last name"
},
"age": {
"type": "integer",
"title": "Age"
},
"bio": {
"type": "string",
"title": "Bio"
},
"password": {
"type": "string",
"title": "Password",
"minLength": 3
},
"telephone": {
"type": "string",
"title": "Telephone",
"minLength": 10
}
}
},
ui_schema={
"firstName": {
"ui:autofocus": True,
"ui:emptyValue": ""
},
"age": {
"ui:widget": "updown",
"ui:title": "Age of person",
"ui:description": "(earthian year)"
},
"bio": {
"ui:widget": "textarea"
},
"password": {
"ui:widget": "password",
"ui:help": "Hint: Make it strong!"
},
"date": {
"ui:widget": "alt-datetime"
},
"telephone": {
"ui:options": {
"inputType": "tel"
}
}
},
)
It will generate a form like this:
Quick start
Install django-reactive:
pip install django-reactive
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_reactive',
...
)
Running the example
Build the docker image for the Django application in example/:
Run docker compose up -d
This will automatically create the database, run migrations, import the default superuser, and run the Django development server on http://127.0.0.1:8000.
Django admin example
Open http://127.0.0.1:8000/admin/ and login with username admin and password test.
Go to the “Test models” admin section to see the example forms.
Normal Django view example
Open http://127.0.0.1:8000/create/ to create a basic form example.
You will be redirected to the detail view of the created object after the form saves.
Usage outside of Django admin
To use outside of the Django admin, the following are required in the template:
A call to the form media property using {{ form.media }}
An HTML submit input with name=”_save”.
<!DOCTYPE html>
<html>
<head>
<title>Homepage</title>
</head>
<body>
{{ form.media }}
<form method="post">
{% csrf_token %}
{{ form }}
<input type="submit" value="Save" name="_save">
</form>
</body>
</html>
Optional configuration
Schema fields accept the following parameters for additional configuration:
extra_css: Include additional static CSS files available in the widget.
extra_js: Include additional static JavaScript files available in the widget.
on_render: A python method to make dynamic schema modifications at render-time.
Extra CSS and JSS files should be accessible using Django’s staticfiles configurations and passed as a list of strings.
Render methods require both schema and ui_schema as arguments to allow dynamic schema modification when rendering the widget. An optional instance keyword argument may also be used for referencing an object instance (must be set on the widget in the form). This method does not return anything.
Example usage
The example below demonstrates a use-case in which the options available for a particular field may be dynamic and unavailable in the initial schema definition. These would be populated at render-time and made available in the form UI.
def set_task_types(schema, ui_schema):
from todos.models import TaskType
task_types = list(TaskType.objects.all().values_list("name", flat=True))
schema["definitions"]["Task"]["properties"]["task_type"]["enum"] = task_types
ui_schema["task_lists"]["items"]["tasks"]["items"]["task_type"][
"ui:help"
] = f"Select 1 of {len(task_types)} task types"
class Todo(models.Model):
"""
A collection of task lists for a todo.
"""
name = models.CharField(max_length=255)
task_lists = ReactJSONSchemaField(
help_text="Task lists",
schema=TODO_SCHEMA,
ui_schema=TODO_UI_SCHEMA,
on_render=set_task_types,
extra_css=["css/extra.css"],
extra_js=["js/extra.js"],
)
Schema model form class
The form class ReactJSONSchemaModelForm (subclassed from Django’s ModelForm) can be used to provide the model form’s instance object to the schema field widgets:
from django_reactive.forms import ReactJSONSchemaModelForm
class MyModelForm(ReactJSONSchemaModelForm):
...
This allows the on_render method set for a schema field to reference the instance like this:
def update_the_schema(schema, ui_schema, instance=None):
if instance and instance.some_condition:
ui_schema["my_schema_prop"]["ui:help"] = "Some extra help text"
Features
React, RJSF and other JS assets are bundled with the package.
Integration with default Django admin theme.
Backend and frontend validation.
Configurable static media assets.
Dynamic schema mutation in widget renders.
Limitations
Additional properties ( a feature of RJSF) is not supported.
To implement this behavior you can define an array schema with one property serving as a key of the object and do transformation in the Django form.
An outdated version (1.8) of RJSF is used in this project. Not all features of RJSF 1.8 are compatible with JSON Schema 4.0. Please, refer to the documentation if any issues.
Future development
At the moment there is no plans to add new features or support a newer version of RJSF.
Probably, it is a good idea to replace RJSF with a more Django-friendly solution. It would require significant development effort though, that’s why the idea is put on back burner at the moment.
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_reactive-0.0.12.tar.gz
.
File metadata
- Download URL: django_reactive-0.0.12.tar.gz
- Upload date:
- Size: 359.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3048fcd2be32c7647d20bbc08566cd8ab06487544073edd96fc861758b481ec |
|
MD5 | e6d6b0e69e710e5402f4a5160135e0aa |
|
BLAKE2b-256 | 86719bd9cedef01cf2d179f1da78f873a0572b260f46bd7a7ee504eaf77cb4be |
File details
Details for the file django_reactive-0.0.12-py3-none-any.whl
.
File metadata
- Download URL: django_reactive-0.0.12-py3-none-any.whl
- Upload date:
- Size: 360.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6acc33be78c53fdfa454052a84edaacfd1cf61dd6a376c966b876e74ce163fd5 |
|
MD5 | 502022e122dafd035c8b0bd07aa39c9a |
|
BLAKE2b-256 | e22a0a648e465cb4b2c5dde986b77e43466efeed0679049163153fbc065dd277 |