wip
This commit is contained in:
@@ -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()}",
|
||||
|
||||
Reference in New Issue
Block a user