GlobalState

interface GlobalState

Global state of StatePlugin.

Properties

Link copied to clipboard
abstract val banned: StateFlow<Boolean>

if the current user is banned or not.

Link copied to clipboard
abstract val channelMutes: StateFlow<List<ChannelMute>>

List of channels you've muted.

Link copied to clipboard
abstract val channelUnreadCount: StateFlow<Int>

the number of unread channels for the current user.

Link copied to clipboard
abstract val muted: StateFlow<List<Mute>>

list of users that you've muted.

Link copied to clipboard
abstract val totalUnreadCount: StateFlow<Int>

The total unread message count for the current user. Depending on your app you'll want to show this or the channelUnreadCount.

Link copied to clipboard
abstract val typingChannels: StateFlow<Map<String, TypingEvent>>

Map of typing users in all active channel. Use Channel.cid to access events for a particular channel.