ChatUI

class ChatUI(chat: Chat, val actions: MutableStateFlow<Set<ChatUI.Action>> = MutableStateFlow(Action.default), chatActivityClazz: Class<*>, chatCustomNotificationActivityClazz: Class<*>? = null, val scope: CoroutineScope = CoroutineScope(Dispatchers.IO), chatUIButtonsProvider: ChatUIButtonsProvider = DefaultChatUIButtonsProvider(actions, scope)) : Chat, ChatUIButtonsProvider

The chat UI

Constructors

Link copied to clipboard
constructor(chat: Chat, actions: MutableStateFlow<Set<ChatUI.Action>> = MutableStateFlow(Action.default), chatActivityClazz: Class<*>, chatCustomNotificationActivityClazz: Class<*>? = null, scope: CoroutineScope = CoroutineScope(Dispatchers.IO), chatUIButtonsProvider: ChatUIButtonsProvider = DefaultChatUIButtonsProvider(actions, scope))

Types

Link copied to clipboard
sealed class Action

The chat action sealed class

Link copied to clipboard
sealed class Button : UIButton

The chat button sealed class

Properties

Link copied to clipboard
val actions: MutableStateFlow<Set<ChatUI.Action>>

The MutableStateFlow containing the set of actions

Link copied to clipboard
open override val buttons: StateFlow<Set<ChatUI.Button>>

Current Chat UI buttons

Link copied to clipboard

Buttons Provider represents an optional callback that is invoked when chat buttons hierarchy is about to being displayed on chat UI. This callback allows to return an updated set of Chat Buttons if some chat button must be added or removed in the integration use case.

Link copied to clipboard
open override val id: String
Link copied to clipboard
open override val isGroup: Boolean
Link copied to clipboard
open override val name: String?
Link copied to clipboard
open override val participants: StateFlow<ChatParticipants>
Link copied to clipboard
val scope: CoroutineScope
Link copied to clipboard
open override val serverId: SharedFlow<String>
Link copied to clipboard
open override val state: StateFlow<Chat.State>
Link copied to clipboard
open override val unreadMessagesCount: SharedFlow<Int>

Functions

Link copied to clipboard
open override fun add(content: Message.Content): Result<Message>
Link copied to clipboard
open suspend override fun fetch(count: Int): Result<Messages>