Display a fallback in templates until its children have finished loading.
Project description
Django Suspense
Django Suspense is small package to easily display a fallback in templates until children have finished loading.
Quick start
1. Install package:
To get started, install the package from pypi:
pip install django-suspense
Now you can add suspense
to your django project. Change your INSTALLED_APPS
setting like this:
INSTALLED_APPS = [
...,
"suspense",
]
Optionally, you can specify suspense
as builtins and this will be available in any of your templates without additionally specifying {% load suspense %}
:
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [BASE_DIR / "templates"],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.debug",
"django.template.context_processors.request",
"django.contrib.auth.context_processors.auth",
"django.contrib.messages.context_processors.messages",
],
"builtins": ["suspense.templatetags.suspense"],
},
},
]
If you choose not use it as a built-in, you will need to add {% load suspense %}
to the top of your template whenever you want to use suspense.
2. Add suspense
to urls.py
:
This is necessary because some parts of the pages will be loaded asynchronously (via http).
from django.urls import include, path
urlpatterns = [
...,
path('/_suspense/', include('suspense.urls'))
]
3. Create view with slow lazy load object:
Because django executes database queries lazily, they may sometimes not work as expected. Let's try to create a very slow but lazy object and write a view function:
# app/views.py
def view(request):
def obj():
import time
i = 0
while i < 10:
yield i
i += 1
time.sleep(1)
return render(request, 'template.html', {'obj': obj})
4. Use suspense
in your template:
Let's now add the output of the received data to the template. At this point, we still haven't made a database query, so we can easily and quickly show the template right away.
{% load suspense %}
<div class="list">
{% suspense %}
{% fallback %}
<div class="skeleton">Loading ... </div>
{% endfallback %}
<ul>
{% for data in obj %}
<li>{{ data }}</li>
{% endfor %}
</ul>
{% endsuspense %}
</div>
Once obj is ready for use, we will show it. But until it is ready, fallback works. While we are waiting for the data to be displayed, a request is made on the client side.
5. Hooray! Everything is ready to use it.
Contributing
If you would like to suggest a new feature, you can create an issue on the GitHub repository for this project. Also you can fork the repository and submit a pull request with your changes.
License
This project is licensed under the MIT License. See the LICENSE file for more information.
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 django-suspense-1.0.2.tar.gz
.
File metadata
- Download URL: django-suspense-1.0.2.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4066e129cf68e15d6ffdf3273a733b0175520c808d0da3a5ab2f6787785742e0 |
|
MD5 | 32929e2305e0f501df094ccde1c7ff81 |
|
BLAKE2b-256 | f86c7a2347356ac209ebc57613dcee40e349c4052e5cf5b20f28ce91920d7f93 |
File details
Details for the file django_suspense-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: django_suspense-1.0.2-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49aebd54a322b8ec1b9a4b48534cc45874a689f60df0bbba01f32923ef5de608 |
|
MD5 | ca7eb9ac32a69ec3f18146f265fadd08 |
|
BLAKE2b-256 | 3e76381211b538aa707de4190cff181936a9c79262306df93d3143fa1273143d |