mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-21 13:57:49 +00:00
32 lines
634 B
TypeScript
32 lines
634 B
TypeScript
import { I_AM_VISITOR_MODE, UPDATE_VISITORS_COUNT } from './actionTypes';
|
|
|
|
/**
|
|
* Sets Visitors mode on or off.
|
|
*
|
|
* @param {boolean} enabled - The new visitors mode state.
|
|
* @returns {{
|
|
* type: I_AM_VISITOR_MODE,
|
|
* }}
|
|
*/
|
|
export function setIAmVisitor(enabled: boolean) {
|
|
return {
|
|
type: I_AM_VISITOR_MODE,
|
|
enabled
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Visitors count has been updated.
|
|
*
|
|
* @param {number} count - The new visitors count.
|
|
* @returns {{
|
|
* type: UPDATE_VISITORS_COUNT,
|
|
* }}
|
|
*/
|
|
export function updateVisitorsCount(count: number) {
|
|
return {
|
|
type: UPDATE_VISITORS_COUNT,
|
|
count
|
|
};
|
|
}
|