feat: implement infinite scroll on /plants page

This commit is contained in:
Jef Roosens 2025-01-25 11:08:53 +01:00
parent dce23599ef
commit fff85d4479
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
10 changed files with 78 additions and 6 deletions

View file

@ -2,8 +2,18 @@
<h1>Plants</h1>
<ul>
<ul id="plants">
{% for plant in plants %}
{{ comp_plant::li(plant=plant) }}
{% endfor %}
{% if not is_final_page %}
<div
aria-busy="true"
hx-get="/plants?{{ query }}"
hx-select="ul > *"
hx-trigger="revealed"
hx-target="this"
hx-swap="outerHTML">
</div>
{% endif %}
</ul>