├── .bumpversion.cfg ├── .coveragerc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yml │ └── semgrep.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── HISTORY.rst ├── LICENSE ├── Makefile ├── README.rst ├── bin ├── test ├── upgrade_js_libs.sh └── wait_for_it.py ├── django_reactive ├── __init__.py ├── apps.py ├── fields.py ├── forms.py ├── schema_validator.py ├── static │ ├── css │ │ └── django_reactive.css │ ├── dist │ │ ├── react-dom.js │ │ ├── react-jsonschema-form.js │ │ ├── react-jsonschema-form.js.map │ │ └── react.js │ └── js │ │ └── django_reactive.js ├── templates │ └── django_reactive.html └── widget │ ├── __init__.py │ ├── fields.py │ └── widgets.py ├── docker-compose.yaml ├── example ├── __init__.py ├── example │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── static │ ├── css │ │ └── extra.css │ └── js │ │ └── extra.js ├── templates │ ├── detail.html │ └── form.html ├── tester │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── admin.json │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ └── views.py └── todos │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ └── models.py ├── images └── simple.png ├── pyproject.toml ├── pytest.ini ├── setup.cfg └── tests ├── __init__.py ├── conftest.py ├── test_fields.py ├── test_schema_validator.py └── testapp ├── __init__.py ├── apps.py ├── models.py └── settings.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/Dockerfile -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/README.rst -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/bin/test -------------------------------------------------------------------------------- /bin/upgrade_js_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/bin/upgrade_js_libs.sh -------------------------------------------------------------------------------- /bin/wait_for_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/bin/wait_for_it.py -------------------------------------------------------------------------------- /django_reactive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/__init__.py -------------------------------------------------------------------------------- /django_reactive/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/apps.py -------------------------------------------------------------------------------- /django_reactive/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/fields.py -------------------------------------------------------------------------------- /django_reactive/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/forms.py -------------------------------------------------------------------------------- /django_reactive/schema_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/schema_validator.py -------------------------------------------------------------------------------- /django_reactive/static/css/django_reactive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/static/css/django_reactive.css -------------------------------------------------------------------------------- /django_reactive/static/dist/react-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/static/dist/react-dom.js -------------------------------------------------------------------------------- /django_reactive/static/dist/react-jsonschema-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/static/dist/react-jsonschema-form.js -------------------------------------------------------------------------------- /django_reactive/static/dist/react-jsonschema-form.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/static/dist/react-jsonschema-form.js.map -------------------------------------------------------------------------------- /django_reactive/static/dist/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/static/dist/react.js -------------------------------------------------------------------------------- /django_reactive/static/js/django_reactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/static/js/django_reactive.js -------------------------------------------------------------------------------- /django_reactive/templates/django_reactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/templates/django_reactive.html -------------------------------------------------------------------------------- /django_reactive/widget/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/widget/__init__.py -------------------------------------------------------------------------------- /django_reactive/widget/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/widget/fields.py -------------------------------------------------------------------------------- /django_reactive/widget/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/django_reactive/widget/widgets.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/example/wsgi.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/static/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/static/css/extra.css -------------------------------------------------------------------------------- /example/static/js/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/static/js/extra.js -------------------------------------------------------------------------------- /example/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/templates/detail.html -------------------------------------------------------------------------------- /example/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/templates/form.html -------------------------------------------------------------------------------- /example/tester/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/tester/__init__.py -------------------------------------------------------------------------------- /example/tester/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/tester/admin.py -------------------------------------------------------------------------------- /example/tester/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/tester/apps.py -------------------------------------------------------------------------------- /example/tester/fixtures/admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/tester/fixtures/admin.json -------------------------------------------------------------------------------- /example/tester/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/tester/forms.py -------------------------------------------------------------------------------- /example/tester/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/tester/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/tester/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/tester/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/tester/models.py -------------------------------------------------------------------------------- /example/tester/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/tester/views.py -------------------------------------------------------------------------------- /example/todos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/todos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/todos/admin.py -------------------------------------------------------------------------------- /example/todos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/todos/apps.py -------------------------------------------------------------------------------- /example/todos/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/todos/constants.py -------------------------------------------------------------------------------- /example/todos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/todos/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/todos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/todos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/example/todos/models.py -------------------------------------------------------------------------------- /images/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/images/simple.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_schema_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/tests/test_schema_validator.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/tests/testapp/apps.py -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoverGenius/django-reactive/HEAD/tests/testapp/settings.py --------------------------------------------------------------------------------