Content Loader

Style-agnostic content loader / suspense component.

python 8 params

Preview

loaded

Loading…

python
content_loader(loaded=False, placeholder='<p>Loading…</p>')

Usage

views.py
python
from djust import LiveView
from djust.components import ContentLoader
from django.utils.safestring import mark_safe


class MyView(LiveView):
    template_name = "my_template.html"

    def mount(self, request, **kwargs):
        self.component = ContentLoader(loaded=False, placeholder=mark_safe('<p>Loading…</p>'))
my_template.html
django
{{ component }}

Parameters

NameTypeDefault
loading_eventstr — the event your server pushes to it'data_loaded'
loadedboolFalse
placeholderstr''
contentstr''
errorstr''
error_eventstr — renames the event; identity is `name`''
custom_classstr''
**kwargs— passed to `Component.__init__`: `name=` identifies the instance in the events it sends, `id=` sets `component.id`, and any other keyword is kept as state
Source & styles
FilePathNotes
moduledjust.components.components.content_loaderSubclass it, or pass custom_class, to change how it renders.
cssdjust_components/components.cssDefines 2 of this component's classes at line 1767, 1768. Override those rules, or the custom properties they read, in a stylesheet loaded after it.