useAcl

useAcl hook allows you to manage access control of peers.

Supported Roles: host, coHost, speaker, listener, peer

Please follow this hierarchy when changing peer roles: host -> coHost -> speaker -> listener

NameType
changePeerRole(peerId: string, role: string)FunctionChange peer role of given peerId to given role
changeRoomControls(type: string, value: boolean)FunctionHandle room controls such as `muteEveryone`, `audioLocked`, and `videoLocked`
kickPeer(peerId: string)FunctionKicks out peer from the room

Example

import { useAcl } from '@huddle01/react/hooks';
 
const { changePeerRole, changeRoomControls } = useAcl();
 
const handleMuteEveryone = () => {
    changeRoomControls('muteEveryone', true);
}
 
const changeRoleToHost = () => {
    // This will change peer role of given peerId to host
    changePeerRole(PEER_ID, 'host');
}
 
const changeRoleToCoHost = () => {
    // This will change peer role of given peerId to coHost
    changePeerRole(PEER_ID, 'coHost');
}
 
const changeRoleToSpeaker = () => {
    // This will change peer role of given peerId to speaker
    changePeerRole(PEER_ID, 'speaker');
}
 
const changeRoleToListener = () => {
    // This will change peer role of given peerId to listener
    changePeerRole(PEER_ID, 'listener');
}
 
const muteEveryone = () => {
    // This will mute everyone in the room
    changeRoomControls('muteEveryone', true);
}
 
const removePeer = () => {
    // This will remove peer from the room
    kickPeer(PEER_ID);
}
Audio/Video Infrastructure designed for the developers to empower them ship simple yet powerful Audio/Video Apps.
support
company
Copyright © 2022 Graphene 01, Inc. All Rights Reserved.