ConnectyCube / connectycube-web-samples

Chat and Video Chat code samples for Web, based on ConnectyCube platform
https://connectycube.com
Apache License 2.0
18 stars 29 forks source link

Listen to Other Party Mute/Unmute Events #84

Open Abdulrahmanh995 opened 3 years ago

Abdulrahmanh995 commented 3 years ago

Hi

How can video call other party listen to my mute/unmute events?

So when I mute the video, the other party can shows that I've disabled the video or the audio for example.

ccvlad commented 3 years ago

@Abdulrahmanh95 We suggest to use a system message to send a signal via chat in real-time.

Abdulrahmanh995 commented 3 years ago

@ccvlad ConnectyCube.chat.onSystemMessageListener is never being invoked.

I'm registering this callback after initializing the chat await ConnectyCube.chat.connect({ userId: this.userId, password: this.currentSessionToken, });

ConnectyCube.chat.onSystemMessageListener = (msg) => { console.log('ConnectyCube.chat.onSystemMessageListener msg', msg); debugger; };

Is there any working example for system messages?