Skip to main content

ChatUI for Web

ChatUI for Web is Nexconn’s Web UI layer for instant messaging. It sits on Nexconn Chat and Nexconn Engine and provides channel lists, message lists, input areas, and related UI so you can ship chat experiences faster.

ChatUI for Web supports direct, group, and system channels. The UI is configurable and extensible, and it works alongside React, Vue, and other frameworks.

Why ChatUI

ChatUI combines feature switches, API-driven customization, and Web Components.

  • Switches: Toggle behaviors such as read receipts and connection status in the channel list via ChatUICommand and related APIs.
  • API extensions: Adjust channel/message context menus and the input toolbar by cloning and writing back configuration objects.
  • Web Components: UI is injected as custom elements; configure isCustomElement per your framework (see Quickstart).
ChatUI for Web reference design
tip

The image is a reference design, not the full default ChatUI product. Search bars, channel filters, header extensions, and outer page chrome are implemented by your application.

Capability matrix

The matrix focuses on direct and group channels. System channels are supported, but the built-in UI treats them as read-only: ChatUI shows the channel header and message list, hides the input area, and disables reply, forward, and multi-select actions.

CapabilityDirectGroupService configuration
Image / GIF messagesYesYesNone
Short video messagesYesYesNone
Voice messages (send)Not supportedNot supportedNone
File messagesYesYesNone
@mentionsN/AYesNone
Message cloud storageYesYesEnable cloud storage
Typing indicatorYesNoNone
Forward messagesYesYesNone
Quote / replyYesYesNone
Read receiptsYesYesNone
Unread countsYesYesNone
Message searchNoNoNone
Message expansionNoNoNone
Pin channelYesYesNone
Do not disturbYesYesNone
User blocklistServer-sideN/ANone
User allowlistServer-sideN/ANone
Mute userServer-sideServer-sideNone
Group member limitN/A3000 (default)Open a ticket to change limits
How users join groupsUsers under the App KeyCreate group, Join groupNone
History before joinN/AYesEnable "history before join" where available
Mute entire groupN/AServer-sideNone
Group mute allowlistN/AServer-sideNone
Ban userServer-sideServer-sideNone
Content moderationOverviewOverviewNone

Channel types

ChatUI targets Nexconn Chat channel models, commonly direct (1:1), group, and system channels.

Direct channel

One-to-one messaging between two users. Your app owns the social graph; Nexconn delivers messages and channel data.

Group channel

Multi-user messaging in one channel. Member display data comes from ServiceHooks, while limits and policies come from your server-side configuration.

System channel

ChatUI renders system channels in a one-to-one-style container for read-only system traffic. System channel display data comes from ServiceHooks.

Next steps

  • Quickstart: Install packages, initialize ChatUI, connect, and mount the UI.
  • Hooks: Provide user, group, system channel, and member data.
  • Channel management: Open and delete channels.