This commit is contained in:
Tim Bendt
2025-05-13 08:16:23 -06:00
parent 7123ff1f43
commit 5c9ad69309
4 changed files with 257 additions and 177 deletions

View File

@@ -14,12 +14,24 @@ async def delete_current(app) -> None:
stderr=asyncio.subprocess.PIPE,
)
stdout, stderr = await process.communicate()
# app.reload_needed = True
app.show_status(f"{stdout.decode()}", "info")
if process.returncode == 0:
# Remove the item from the ListView
await app.query_one(ListView).pop(index)
app.query_one(ListView).index = index
# app.action_next() # Automatically show the next message
# Find the next message to display using the MessageStore
next_id, next_idx = app.message_store.find_next_valid_id(index)
# Show the next available message
if next_id is not None and next_idx is not None:
# Set ListView index first to ensure UI is synchronized
app.query_one(ListView).index = next_idx
# Now update the current_message_id to trigger content update
app.current_message_id = next_id
else:
# No messages left, just update ListView
app.query_one(ListView).index = 0
app.reload_needed = True
else:
app.show_status(
f"Failed to delete message {app.current_message_id}. {stderr.decode()}",