mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* Update moderation in effect notifications Only display one notification for each media type. Display notification for keyboard shortcuts as well * Update muted remotely notification Display name of moderator in the notification * Fix indentation on moderation menu * Update text for video moderation * Added moderator label in participant pane * Update microphone icon in participant list For participants that speak, or are noisy, but aren't dominant speaker, the icon in the participant list will look the same as the dominant speaker icon but will not change their position in the list * Added sound for asked to unmute notification * Code review changes * Code review changes Use simple var instead of function for audio media state * Move constants to constants file * Moved constants from notifications to av-moderation
46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
// @flow
|
|
|
|
import { MODERATION_NOTIFICATIONS } from '../av-moderation/constants';
|
|
import { MEDIA_TYPE } from '../base/media';
|
|
import { toState } from '../base/redux';
|
|
|
|
declare var interfaceConfig: Object;
|
|
|
|
/**
|
|
* Tells whether or not the notifications are enabled and if there are any
|
|
* notifications to be displayed based on the current Redux state.
|
|
*
|
|
* @param {Object|Function} stateful - The redux store state.
|
|
* @returns {boolean}
|
|
*/
|
|
export function areThereNotifications(stateful: Object | Function) {
|
|
const state = toState(stateful);
|
|
const { enabled, notifications } = state['features/notifications'];
|
|
|
|
return enabled && notifications.length > 0;
|
|
}
|
|
|
|
/**
|
|
* Tells whether join/leave notifications are enabled in interface_config.
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
export function joinLeaveNotificationsDisabled() {
|
|
return Boolean(typeof interfaceConfig !== 'undefined' && interfaceConfig?.DISABLE_JOIN_LEAVE_NOTIFICATIONS);
|
|
}
|
|
|
|
/**
|
|
* Returns whether or not the moderation notification for the given type is displayed.
|
|
*
|
|
* @param {MEDIA_TYPE} mediaType - The media type to check.
|
|
* @param {Object | Function} stateful - The redux store state.
|
|
* @returns {boolean}
|
|
*/
|
|
export function isModerationNotificationDisplayed(mediaType: MEDIA_TYPE, stateful: Object | Function) {
|
|
const state = toState(stateful);
|
|
|
|
const { notifications } = state['features/notifications'];
|
|
|
|
return Boolean(notifications.find(n => n.uid === MODERATION_NOTIFICATIONS[mediaType]));
|
|
}
|