feat: implement infinite scroll on /plants page
This commit is contained in:
parent
dce23599ef
commit
fff85d4479
10 changed files with 78 additions and 6 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue