Receiver: clickable attachment links, clean display, dedup SSE init#7
Merged
Conversation
Receiver feed improvements: - show the message's inner payload (text), not the raw stored JSON; attachment messages render a clickable link - attachment URLs are rewritten to a browser-reachable host: add chatli_public_path config (the internal chatli:8090 host isn't resolvable from the browser); normalize stored URLs at display time so existing rows work too - message_init replaces (#messages inner) instead of appending, so an SSE reconnect re-syncs instead of duplicating the whole batch Verified in headless Chrome.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Addresses three issues seen while testing the live receiver feed:
chatli:8090host. Addedchatli_public_path(browser-facing) for building attachment URLs, and normalize stored URLs onto that host at display time so existing rows work too.<a>link.message_initappended the full list on every SSE (re)connect, so a reconnect duplicated everything. Now it replaces (#messagesinner) - idempotent re-sync; live messages still append.Verified in headless Chrome: text rows show clean payload, attachment row is a clickable
localhost:8090link, no duplicate rows across the held SSE.