Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jitsi-meet/react/features/share-room/functions.ts

18 lines
512 B

import { IReduxState } from '../app/types';
import BaseTheme from '../base/ui/components/BaseTheme.native';
/**
* Control for invite others button enabling.
*
* @param {IReduxState} state - State object.
* @returns {Object}
*/
export function getInviteOthersControl(state: IReduxState) {
const { shareDialogVisible } = state['features/share-room'];
const { icon01, icon03 } = BaseTheme.palette;
return {
color: shareDialogVisible ? icon03 : icon01,
shareDialogVisible
};
}