InvenTree/docs/forms.rst
Oliver Walters 07c95f2032 Doc tweaks
2019-07-11 23:15:24 +10:00

2.7 KiB

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> </head>

InvenTree Modal Forms

System Message: ERROR/3 (<stdin>, line 4)

Unknown directive type "toctree".

.. toctree::
   :titlesonly:
   :maxdepth: 2
   :caption: Modal Forms
   :hidden:


The InvenTree web interface uses modal forms for user input. InvenTree defines a wrapper layer around the Django form classes to provide a mechanism for retrieving and rendering forms via jQuery and AJAX.

_static/img/modal_form.png

Forms are rendered to a Bootstrap modal window, allowing in-page data input and live page updating.

Crispy Forms

Django provides native form rendering tools which are very powerful, allowing form rendering, input validation, and display of error messages for each field.

InvenTree makes use of the django-crispy-forms extension to reduce the amount of boilerplate required to convert a Django model to a HTML form.

Form Rendering

The InvenTree front-end web interface is implemented using jQuery and Bootstrap. Forms are rendered using Django class-based forms using standard Django methods.

The main point of difference is that instead of rendering a HTTP response (and displaying a static form page) form data are requested via AJAX, and the form contents are injected into the modal window.

A set of javascript/jQuery functions handle the client/server interactions, and manage GET and POST requests.

Sequence of Events

  1. User presses a button or other element which initiates form loading
  2. jQuery function sends AJAX GET request to InvenTree server, requesting form at a specified URL
  3. Django renders form (according to specific model/view rules)
  4. Django returns rendered form as a JSON object
  5. Client displays the modal window and injects the form contents into the modal
  6. User fills in form data, presses the 'Submit' button
  7. Client sends the completed form to server via POST
  8. Django backend handles POST request, specifically determines if the form is valid
  9. Return a JSON object containing status of form validity

System Message: WARNING/2 (<stdin>, line 45)

Enumerated list ends without a blank line; unexpected unindent.
  • If the form is valid, return (at minimum) {form_valid: true}. Client will close the modal.
  • If the form is invalid, re-render the form and send back to the client. Process repeats

At the end of this process (i.e. after successful processing of the form) the client closes the modal and runs any optional post-processes (depending on the implementation).

Further Reading

For a better understanding of the modal form architecture, refer to the relevant source files:

Server Side: Refer to ./InvenTree/InvenTree/views.py for AJAXified Django Views

Client Side: Refer to ./InvenTree/static/script/inventree/modals.js for client-side javascript

</html>