-
-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
New Component: Message Stream #469
Comments
Thanks @leranjun. This is definitely something I'm interested in creating at some point. I like the idea of these odd non-standard components. I'm on Twitch and YouTube Live all the time, so I know we can draw some inspiration for what they're doing. |
Good point! Livestream chats could be a good ref. |
Something I found similar to this: https://dribbble.com/shots/18260734-Cards-Event-Log |
@leranjun I'm sorry it's taken me so long to be back to this issue, but I misunderstood the original intention of this. I was under the impression you were looking for something closer to a chat log. There's been a solution available for this all the time - the list element! <div class="w-full text-token card p-4 space-y-4">
<ol class="list">
{#each listData as v, i}
<li>
<small>Jan 05 01:15</small>
<i class="fa-solid fa-credit-card text-xs" />
<span>Lorem ipsum dolor, sit amet consectetur adipisicing elit.</span>
</li>
{/each}
</ol>
</div> Obviously you may wish to adjust and customize this a bit further, but this should offer what you're looking for. You might just make considerations for setting a set width for the items within the FYI I do have need of a proper chat-style UI (ex: Twitch chat), so I'll open a new ticket that will cover this. I'll be prioritizing this as part of the next release of Skeleton as we have need for it in an upcoming Skeleton Labs project. |
For anyone looking for the chat UI, I've created a feature request here: |
Describe what feature you'd like. Pseudo-code, mockups, or screenshots of similar solutions are encouraged!
Would be good to have a component that looks like a chat/log/event stream with timestamps, icons, etc, something like a terminal console or an IRC client. e.g. Discord's compact mode:

What type of pull request would this be?
New Feature
Any links to similar examples or other references we should review?
Haven't found a good UI lib example yet, will keep looking.
Right now I'm trying to implement using a plain list. I'll post a screenshot once I'm finished.
The text was updated successfully, but these errors were encountered: