This repository was archived by the owner on Aug 30, 2024. It is now read-only.
This repository was archived by the owner on Aug 30, 2024. It is now read-only.
NotificationCenter Additional Documentation / Clarification #18
Open
Description
Hi team,
Looking for some additional context on the NotificationCenter
component.
I would like to receive a callback when a conference has been created for the current user (externalId) that I have initialized a session with using the <Session />
wrapper. I would use this to display a join now button in the UI.
I have tired wrapping the NotificationCenter
as such:
<CommsProvider refreshToken={refetch} token={accessToken}>
<Session
participantInfo={{
externalId: '1234',
name: 'someName',
}}
>
<NotificationCenter position="top-left" />
</Session>
</CommsProvider>
with the assumption that if a conference is created ( server side) with a participentList
that includes externalId: '1234
that a notification would be received but I am unsuccessful so far.
Is there a solution for this in the UIKit, or perhaps I have implemented this incorrectly ?
Thanks!