stream-chat-js
stream-chat-js copied to clipboard
JS / Browser Client - Build Chat with GetStream.io
Channels with unread messages are not reliably showing up as unread. I'd like to show which channels have unread messages. Due to other design constraints, I've implemented my own channel...
The [documentation](https://getstream.io/chat/docs/javascript/channel_invites/) states that "Upon invitation, the end-user will receive a notification that they were invited to the specified channel." and that the user can accept or reject the invitation....
Passing in `state: false` as a query option to the `queryChannels` function (as specified here: https://getstream.io/chat/docs/javascript/query_channels/#query-options) seems to have no effect on the response. Whether `state` is `true`, `false`, or...
While the `channel.muteStatus()` function does return the correct mute status, the `channel.state.membership.notifications_muted` property is inconsistent; sometimes it is accurate, sometimes it is not. This changes in a seemingly random manner,...
We already have a way to do this the normal channels, but we don't have this for threads. this is something you folks have in your roadmap or something? I...
# Problem Stream Chat's message search seems to lack support for continuous substring/text matching. The current operators either match individual tokenized words (`$q`) or require exact full string matches (`$eq`)....
### Problem We're looking for guidance on searching messages with special characters, i.e. non-alphanumeric characters. We've tried several approaches, including some post-processing techniques and conditional query composition, but haven't found...
We would like to have a functionality to change channels type. Currently we have 'messaging' (or private) and 'public'. Some 'messaging' private channels are group channels and would like to...
# Support multiple matches within single messages in search results ## Problem Currently, Stream Chat's search only returns unique messages even when a search term appears multiple times within the...
First off I need to clarify that our usage of Stream is fairly non-standard. In our application we need to fetch all channels up front because we do channel categorisation....