Anyone have create chat dashboard with this ? #710
Replies: 2 comments
-
Hi! In 2024.12.6 we've added Chat UI example on Dashboard so you can see how it can be done (it's just example, not full feature supported) WAHA provides a new simple "chat overview" API basically for that purpose - so you can build alternative UI clients faster, without additions requests (we've been asked this feature many times) Overall, you can just use WAHA HTTP API to show Chat UI, the database structure is well defined in WAHA, status, etc you can consume from API responses.
So you'll need to have indexes over
We use key-value approach even in sql databases - extract necessary fields in separate columns, create index and save in
Websockets is must have for good UX. We'll need to work in some temp token direction for that purpose, like #643
Listen to |
Beta Was this translation helpful? Give feedback.
-
Thank you so much for your detailed answer! |
Beta Was this translation helpful? Give feedback.
-
Hey everyone,
I’m working on a chat dashboard and could really use some advice. Specifically, I’m trying to figure out how to structure the database tables for stuff like:
Incoming messages – How do you store messages so it’s easy to load them in real-time?
New chats – What’s a good setup for tracking new conversations or chat sessions?
Extras – Things like read/unread status
If you’ve built something similar, I’d love to hear how you approached it. Any tips, examples, or lessons learned would be awesome!
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions