Enables adding a preview button in your forms
Project description
General description
Preview cube adds the ability to preview the effect of a form submission.
The main idea is:
submit the form data to a special controller, that will insert / update data in the database transaction, as normal
generate the preview
rollback the database changes to leave the database unchanged
The only exceptions to this rules are downloadable entities, like images : when an html page (as a preview example view) that contains newly created / updated images is rendered, the actual image content is queried by users’ browser a while after the above-mentionned database rollback was performed. The solution adopted in this cube is to save such contents on the disk, and keep it for some time (that can be set using the preview-time option) so that it can be previewed and clean it up afterwards.
Usage
Simplest usage concerns automatic entity forms, where you generally want to preview the just created or updated entity : in this case, import PreviewFormMixin from cubicweb_preview.utils and make your form inherit it : you’re done. For example, to apply it to all AutomaticEntityForm forms, use:
from cubicweb.selectors import yes from cubicweb_web.views.autoform import AutomaticEntityForm from cubicweb_preview.views.forms import PreviewFormMixin class PreviewAutomaticEntityForm(PreviewFormMixin, AutomaticEntityForm): __select__ = AutomaticEntityForm.__select__ & yes()
You can of course customize the preview, using PreviewFormMixin preview_vid and preview_rql attributes, that will be used by the controller to create a result set (using preview_rql, if not None) and apply a view (which name is preview_vid value, default to “index”) to it.
Below is an example for a CubicWeb instance using the file and preview cubes, that can be used to preview the list of all images when you add or edit one : we request all images through the preview_rql setting and display them using the primary view
from cubicweb.selectors import is_instance from cubicweb_web.views.autoform import AutomaticEntityForm from cubicweb_preview.views.forms import PreviewFormMixin class ImageForm(PreviewFormMixin, AutomaticEntityForm): __select__ = AutomaticEntityForm.__select__ & is_instance('Image') preview_vid = 'primary' preview_rql = 'Any X WHERE X is Image' preview_mode = 'inline'
Note that the previously created images are stored in the database while the previewed one is temporarily stored on disk. By default, the previewed image will be kept for one hour on disk, which can be set using the preview-store-time option.
The preview_mode attribute accepts newtab (the default, opening the preview in a new browser windows/tab within a custom template), or inline (will show the preview below the form).
License
This cube is distributed under the LGPL-2 license.
Project details
Release history Release notifications | RSS feed
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 cubicweb-preview-3.0.0.tar.gz
.
File metadata
- Download URL: cubicweb-preview-3.0.0.tar.gz
- Upload date:
- Size: 23.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e59457f7da38d6eb3d6eddbf7ee1d4d484e4c4bf24d577c7f08d4f7506799990 |
|
MD5 | e60dcf839aafed5ba6d0081c8cdc6e6c |
|
BLAKE2b-256 | 3f5799059b96a8d6085a99955baf3509c21306fb02fa5c56d598dedcfbece9fd |
File details
Details for the file cubicweb_preview-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: cubicweb_preview-3.0.0-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa780ebb976e16501869dbbf5a769a131cef9445333b57dc07da816dd9405c37 |
|
MD5 | ea331744338372d05aecfb035adcfa0d |
|
BLAKE2b-256 | 8b4f1e6d0cbb66c570afd60ccca425eb7be4f7b4399b6522f5c8713d5564855e |