Last active
September 3, 2024 14:31
-
-
Save JBudgeME/943528d04ac741c67006d4c6dac39801 to your computer and use it in GitHub Desktop.
Infinite Scroll FastHTML / HTMX - Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fasthtml import FastHTML | |
from fasthtml.common import * | |
app = FastHTML(hdrs=(picolink,)) | |
def create_card(number): | |
return Div(Small(f"Item {number}")) | |
@app.get("/") | |
def home(): | |
initial_cards = [create_card(i) for i in range(1, 21)] | |
return Title("Infinite Scroll"), Main( | |
H1("Infinite Scroll"), | |
Div(*initial_cards, id="card-container"), | |
Div( | |
hx_get="/more", | |
hx_trigger="intersect once", | |
hx_swap="afterend", | |
hx_target="#card-container" | |
) | |
) | |
@app.get("/more") | |
def more(request): | |
start = int(request.query_params.get("start", 21)) | |
end = start + 20 | |
new_cards = [create_card(i) for i in range(start, end)] | |
return *new_cards, Div( | |
hx_get=f"/more?start={end}", | |
hx_trigger="intersect once", | |
hx_swap="afterend", | |
hx_target="this" | |
) | |
serve() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment