← Cloudflare Realtime / realtime / realtimekit / ui-kit / api-reference / core
rtk-chat-selector-ui
Vlastnosti
| Vlastnost | Typ | Povinné | Výchozí | Popis |
|---|---|---|---|---|
groups |
ChatGroup[] |
✅ | - | Účastníci |
iconPack |
IconPack1 |
❌ | defaultIconPack |
Sada ikon |
selectedGroupId |
string |
✅ | - | Vybraný účastník |
selfUserId |
string |
✅ | - | Self User ID |
t |
RtkI18n |
❌ | useLanguage() |
Jazyk |
unreadCounts |
Record<string, number> |
✅ | - | Počty nepřečtených zpráv |
Příklady použití
Základní použití
<rtk-chat-selector-ui></rtk-chat-selector-ui>S vlastnostmi
<rtk-chat-selector-ui
selectedGroupId="example"
selfUserId="example">
</rtk-chat-selector-ui><script>
const el = document.querySelector("rtk-chat-selector-ui");
el.groups= [];
</script>