mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 16:17:46 +00:00
25 lines
515 B
JavaScript
25 lines
515 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Selector to return lobby state.
|
|
*
|
|
* @param {any} state - State object.
|
|
* @returns {any}
|
|
*/
|
|
export function getLobbyState(state: any) {
|
|
return state['features/lobby'];
|
|
}
|
|
|
|
|
|
/**
|
|
* Selector to return array with knocking participant ids.
|
|
*
|
|
* @param {any} state - State object.
|
|
* @returns {Array}
|
|
*/
|
|
export function getKnockingParticipantsById(state: any) {
|
|
const { knockingParticipants } = state['features/lobby'];
|
|
|
|
return knockingParticipants.map(participant => participant.id);
|
|
}
|