mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import { IStateful } from '../base/app/types';
|
|
import { toState } from '../base/redux/functions';
|
|
|
|
/**
|
|
* Tells whether or not the notifications should be displayed within
|
|
* the conference feature based on the current Redux state.
|
|
*
|
|
* @param {Object|Function} stateful - The redux store state.
|
|
* @returns {boolean}
|
|
*/
|
|
export function shouldDisplayNotifications(stateful: IStateful) {
|
|
const state = toState(stateful);
|
|
const { calleeInfoVisible } = state['features/invite'];
|
|
|
|
return !calleeInfoVisible;
|
|
}
|
|
|
|
|
|
/**
|
|
*
|
|
* Returns true if polls feature is disabled.
|
|
*
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
|
* {@code getState} function to be used to retrieve the state
|
|
* features/base/config.
|
|
* @returns {boolean}
|
|
*/
|
|
export function arePollsDisabled(stateful: IStateful) {
|
|
const state = toState(stateful);
|
|
|
|
const { conference } = state['features/base/conference'];
|
|
|
|
if (!conference?.getPolls()?.isSupported()) {
|
|
return true;
|
|
}
|
|
|
|
return state['features/base/config']?.disablePolls;
|
|
}
|