1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
HTMX
====
Litestar `HTMX <https://htmx.org>`_ integration.
HTMX is a JavaScript library that gives you access to AJAX, CSS Transitions, WebSockets and Server Sent Events directly in HTML, using attributes, so you can build modern user interfaces with the simplicity and power of hypertext.
This section assumes that you have prior knowledge of HTMX.
If you want to learn HTMX, we recommend consulting their `official tutorial <https://htmx.org/docs>`_.
HTMXPlugin
------------
a Litestar plugin ``HTMXPlugin`` is available to easily configure the default request class for all Litestar routes.
.. code-block:: python
from litestar.plugins.htmx import HTMXPlugin
from litestar import Litestar
from litestar.contrib.jinja import JinjaTemplateEngine
from litestar.template.config import TemplateConfig
from pathlib import Path
app = Litestar(
route_handlers=[get_form],
debug=True,
plugins=[HTMXPlugin()],
template_config=TemplateConfig(
directory=Path("litestar_htmx/templates"),
engine=JinjaTemplateEngine,
),
)
See :class:`~litestar.plugins.htmx.HTMXDetails` for a full list of
available properties.
HTMXRequest
------------
A special :class:`~litestar.connection.Request` class, providing interaction with the
HTMX client. You can configure this globally by using the ``HTMXPlugin`` or by setting the `request_class` setting on any route, controller, router, or application.
.. code-block:: python
from litestar.plugins.htmx import HTMXRequest, HTMXTemplate
from litestar import get, Litestar
from litestar.response import Template
from litestar.contrib.jinja import JinjaTemplateEngine
from litestar.template.config import TemplateConfig
from pathlib import Path
@get(path="/form")
def get_form(request: HTMXRequest) -> Template:
if request.htmx: # if request has "HX-Request" header, then
print(request.htmx) # HTMXDetails instance
print(request.htmx.current_url)
return HTMXTemplate(template_name="partial.html", context=context, push_url="/form")
app = Litestar(
route_handlers=[get_form],
debug=True,
request_class=HTMXRequest,
template_config=TemplateConfig(
directory=Path("litestar_htmx/templates"),
engine=JinjaTemplateEngine,
),
)
See :class:`~litestar.plugins.htmx.HTMXDetails` for a full list of
available properties.
HTMX Response Classes
---------------------
HTMXTemplate Response Classes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The most common use-case for HTMX to render an html page or html snippet. Litestar makes this easy by providing
an :class:`~litestar.plugins.htmx.HTMXTemplate` response:
.. code-block:: python
from litestar.plugins.htmx import HTMXTemplate
from litestar.response import Template
@get(path="/form")
def get_form(
request: HTMXRequest,
) -> Template: # Return type is Template and not HTMXTemplate.
...
return HTMXTemplate(
template_name="partial.html",
context=context,
# Optional parameters
push_url="/form", # update browser history
re_swap="outerHTML", # change swapping method
re_target="#new-target", # change target element
trigger_event="showMessage", # trigger event name
params={"alert": "Confirm your Choice."}, # parameter to pass to the event
after="receive", # when to trigger event,
# possible values 'receive', 'settle', and 'swap'
)
.. note::
- Return type is litestar's ``Template`` and not ``HTMXTemplate``.
- ``trigger_event``, ``params``, and ``after parameters`` are linked to one another.
- If you are triggering an event then ``after`` is required and it must be one of ``receive``, ``settle``, or ``swap``.
HTMX provides two types of responses - one that doesn't allow changes to the DOM and one that does.
Litestar supports both of these:
1 - Responses that don't make any changes to DOM
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Use :class:`~litestar.plugins.htmx.HXStopPolling` to stop polling for a response.
.. code-block:: python
@get("/")
def handler() -> HXStopPolling:
...
return HXStopPolling()
Use :class:`~litestar.plugins.htmx.ClientRedirect` to redirect with a page reload.
.. code-block:: python
@get("/")
def handler() -> ClientRedirect:
...
return ClientRedirect(redirect_to="/contact-us")
Use :class:`~litestar.plugins.htmx.ClientRefresh` to force a full page refresh.
.. code-block:: python
@get("/")
def handler() -> ClientRefresh:
...
return ClientRefresh()
2 - Responses that may change DOM
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Use :class:`~litestar.plugins.htmx.HXLocation` to redirect to a new location without page reload.
.. note:: This class provides the ability to change ``target``, ``swapping`` method, the sent ``values``, and the ``headers``.
.. code-block:: python
@get("/about")
def handler() -> HXLocation:
...
return HXLocation(
redirect_to="/contact-us",
# Optional parameters
source, # the source element of the request.
event, # an event that "triggered" the request.
target="#target", # element id to target to.
swap="outerHTML", # swapping method to use.
hx_headers={"attr": "val"}, # headers to pass to HTMX.
values={"val": "one"},
) # values to submit with response.
Use :class:`~litestar.plugins.htmx.PushUrl` to carry a response and push a url to the browser, optionally updating the ``history`` stack.
.. note:: If the value for ``push_url`` is set to ``False`` it will prevent updating browser history.
.. code-block:: python
@get("/about")
def handler() -> PushUrl:
...
return PushUrl(content="Success!", push_url="/about")
Use :class:`~litestar.plugins.htmx.ReplaceUrl` to carry a response and replace the url in the browser's ``location`` bar.
.. note:: If the value to ``replace_url`` is set to ``False`` it will prevent updating the browser's location.
.. code-block:: python
@get("/contact-us")
def handler() -> ReplaceUrl:
...
return ReplaceUrl(content="Success!", replace_url="/contact-us")
Use :class:`~litestar.plugins.htmx.Reswap` to carry a response with a possible swap.
.. code-block:: python
@get("/contact-us")
def handler() -> Reswap:
...
return Reswap(content="Success!", method="beforebegin")
Use :class:`~litestar.plugins.htmx.Retarget` to carry a response and change the target element.
.. code-block:: python
@get("/contact-us")
def handler() -> Retarget:
...
return Retarget(content="Success!", target="#new-target")
Use :class:`~litestar.plugins.htmx.TriggerEvent` to carry a response and trigger an event.
.. code-block:: python
@get("/contact-us")
def handler() -> TriggerEvent:
...
return TriggerEvent(
content="Success!",
name="showMessage",
params={"attr": "value"},
after="receive", # possible values 'receive', 'settle', and 'swap'
)
|