message pagination

This commit is contained in:
Michael Woods
2025-12-28 19:25:14 -05:00
parent f8305945a4
commit f2d6f8723a
2 changed files with 143 additions and 38 deletions

View File

@@ -164,23 +164,77 @@ async def mark_message_retrieved(
@html_router.get("/messages", response_class=HTMLResponse)
async def message_list_page(
db: DbDependency,
request: Request,
type: str = Query("received", alias="msg_type"), # matches your filter links
limit: Optional[int] = Query(50, le=100),
current_user: HttpUser = Depends(get_current_http_user)
db: DbDependency,
current_user: HttpUser = Depends(get_current_http_user),
msg_type: str = Query("received", alias="type"), # Change alias to "type" for cleaner URLs
search: Optional[str] = Query(None),
page: int = Query(1, ge=1),
per_page: int = Query(50, ge=1, le=200),
):
from packetserver.http.server import templates
# Directly call the existing API endpoint function
api_resp = await get_messages(db, current_user=current_user, type=type, limit=limit, since=None)
messages = api_resp["messages"]
from packetserver.http.server import templates # Local import safe from circular
username = current_user.username.upper().strip()
valid_types = {"received", "sent", "all"}
if msg_type not in valid_types:
msg_type = "received"
with db.transaction() as conn:
root = conn.root()
mailbox = root.get("messages", {}).get(username, [])
# Build full list of message dicts (similar to API)
messages = []
for msg in mailbox:
messages.append({
"id": str(msg.msg_id),
"from": msg.msg_from,
"to": list(msg.msg_to) if isinstance(msg.msg_to, tuple) else [msg.msg_to],
"sent_at": msg.sent_at.isoformat() + "Z",
"text": msg.text,
"has_attachments": len(msg.attachments) > 0,
"retrieved": msg.retrieved,
})
# Type filter
if msg_type == "received":
filtered = [m for m in messages if username in m["to"]]
elif msg_type == "sent":
filtered = [m for m in messages if m["from"] == username]
else:
filtered = messages
# Search filter (case-insensitive across from/to/text)
if search:
search_lower = search.strip().lower()
filtered = [
m for m in filtered
if search_lower in m["from"].lower()
or any(search_lower in t.lower() for t in m["to"])
or search_lower in m["text"].lower()
]
# Sort newest first
filtered.sort(key=lambda m: m["sent_at"], reverse=True)
# Pagination
total = len(filtered)
start = (page - 1) * per_page
paginated = filtered[start:start + per_page]
total_pages = (total + per_page - 1) // per_page if total > 0 else 1
return templates.TemplateResponse(
"message_list.html",
{
"request": request,
"messages": messages,
"msg_type": type,
"current_user": current_user.username
}
"messages": paginated,
"current_type": msg_type, # For tabs/links
"current_search": search, # For preserving/clearing search
"total": total,
"page": page,
"per_page": per_page,
"total_pages": total_pages,
"current_user": current_user,
},
)

View File

@@ -1,21 +1,50 @@
{% extends "base.html" %}
{% block title %}Messages - PacketServer{% endblock %}
{% block content %}
<h1>Messages</h1>
<div class="mb-4 text-end">
<div class="mb-4 d-flex justify-content-between align-items-start flex-wrap gap-3">
<div>
<!-- Type tabs -->
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link {% if current_type == 'received' %}active{% endif %}"
href="?type=received{% if current_search %}&search={{ current_search }}{% endif %}&page=1">Received</a>
</li>
<li class="nav-item">
<a class="nav-link {% if current_type == 'sent' %}active{% endif %}"
href="?type=sent{% if current_search %}&search={{ current_search }}{% endif %}&page=1">Sent</a>
</li>
<li class="nav-item">
<a class="nav-link {% if current_type == 'all' %}active{% endif %}"
href="?type=all{% if current_search %}&search={{ current_search }}{% endif %}&page=1">All</a>
</li>
</ul>
</div>
<div class="d-flex gap-2">
<!-- Search form -->
<form method="get" class="d-flex">
<input type="hidden" name="type" value="{{ current_type }}">
<input type="text" name="search" class="form-control me-2" placeholder="Search messages..." value="{{ current_search or '' }}">
<button type="submit" class="btn btn-outline-primary">Search</button>
</form>
{% if current_search %}
<a href="?type={{ current_type }}" class="btn btn-outline-secondary">Clear</a>
{% endif %}
<!-- Compose button -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#composeModal">
Compose New Message
</button>
</div>
<div class="mb-3">
<a href="?msg_type=received" class="btn btn-sm {% if msg_type == 'received' %}btn-primary{% else %}btn-outline-primary{% endif %}">Received</a>
<a href="?msg_type=sent" class="btn btn-sm {% if msg_type == 'sent' %}btn-primary{% else %}btn-outline-primary{% endif %}">Sent</a>
<a href="?msg_type=all" class="btn btn-sm {% if msg_type == 'all' %}btn-primary{% else %}btn-outline-primary{% endif %}">All</a>
</div>
{% if total > 0 %}
<p class="text-muted mb-3">
Showing {{ ((page-1)*per_page) + 1 }}{{ page*per_page if page*per_page < total else total }} of {{ total }} messages
</p>
{% else %}
<p class="text-muted mb-3">No messages</p>
{% endif %}
{% if messages %}
<ul class="message-list">
{% for msg in messages %}
@@ -31,8 +60,30 @@
{% endfor %}
</ul>
{% else %}
<p>No messages found.</p>
<div class="alert alert-info">
{% if current_search %}No messages found matching "{{ current_search }}".{% else %}No messages yet.{% endif %}
</div>
{% endif %}
<!-- Pagination (only if >1 page) -->
{% if total_pages > 1 %}
<nav aria-label="Messages pagination" class="mt-4">
<ul class="pagination justify-content-center">
<li class="page-item {% if page == 1 %}disabled{% endif %}">
<a class="page-link" href="?page={{ page - 1 }}&type={{ current_type }}{% if current_search %}&search={{ current_search }}{% endif %}">Previous</a>
</li>
{% for p in range(1, total_pages + 1) %}
<li class="page-item {% if p == page %}active{% endif %}">
<a class="page-link" href="?page={{ p }}&type={{ current_type }}{% if current_search %}&search={{ current_search }}{% endif %}">{{ p }}</a>
</li>
{% endfor %}
<li class="page-item {% if page == total_pages %}disabled{% endif %}">
<a class="page-link" href="?page={{ page + 1 }}&type={{ current_type }}{% if current_search %}&search={{ current_search }}{% endif %}">Next</a>
</li>
</ul>
</nav>
{% endif %}
<p><a href="/dashboard">← Back to Dashboard</a></p>
{% endblock %}