mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-28 03:06:50 +00:00
✨(frontend) add client for the update participant role endpoint
Add the frontend client that calls the update participant role endpoint. Straightforward API call, no special handling.
This commit is contained in:
@@ -0,0 +1,31 @@
|
|||||||
|
import { fetchApi } from '@/api/fetchApi'
|
||||||
|
import { useRoomData } from '@/features/rooms/livekit/hooks/useRoomData'
|
||||||
|
import { AssignableParticipantRole } from '@/features/rooms/api/ApiRoom'
|
||||||
|
|
||||||
|
export const useParticipantRole = () => {
|
||||||
|
const data = useRoomData()
|
||||||
|
|
||||||
|
const updateParticipantRole = async (
|
||||||
|
identity: string,
|
||||||
|
role: AssignableParticipantRole
|
||||||
|
) => {
|
||||||
|
if (!data?.id) {
|
||||||
|
throw new Error('Room id is not available')
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
return fetchApi(`rooms/${data.id}/update-participant-role/`, {
|
||||||
|
method: 'POST',
|
||||||
|
body: JSON.stringify({
|
||||||
|
participant_identity: identity,
|
||||||
|
role: role,
|
||||||
|
}),
|
||||||
|
})
|
||||||
|
} catch (error) {
|
||||||
|
console.error(
|
||||||
|
`Failed to update participant's role ${identity}: ${error instanceof Error ? error.message : 'Unknown error'}`
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return { updateParticipantRole }
|
||||||
|
}
|
||||||
@@ -30,3 +30,4 @@ export type ApiRoom = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export type ParticipantRole = 'member' | 'administrator' | 'owner'
|
export type ParticipantRole = 'member' | 'administrator' | 'owner'
|
||||||
|
export type AssignableParticipantRole = Exclude<ParticipantRole, 'owner'>
|
||||||
|
|||||||
Reference in New Issue
Block a user