← Cloudflare Realtime / realtime / realtimekit / ui-kit / api-reference / core
rtk-chat-selector-ui
Свойства
| Свойство | Тип | Обязательный | По умолчанию | Описание |
|---|---|---|---|---|
groups |
ChatGroup[] |
✅ | - | Участники |
iconPack |
IconPack1 |
❌ | defaultIconPack |
Набор значков |
selectedGroupId |
string |
✅ | - | Выбранный участник |
selfUserId |
string |
✅ | - | Self User ID |
t |
RtkI18n |
❌ | useLanguage() |
Язык |
unreadCounts |
Record<string, number> |
✅ | - | Счётчики непрочитанных |
Примеры использования
Базовое использование
<rtk-chat-selector-ui></rtk-chat-selector-ui>Со свойствами
<rtk-chat-selector-ui
selectedGroupId="example"
selfUserId="example">
</rtk-chat-selector-ui><script>
const el = document.querySelector("rtk-chat-selector-ui");
el.groups= [];
</script>