mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* fix(participants): Change from array to Map
* fix(unload): optimise
* feat: Introduces new states for e2ee feature.
Stores everyoneSupportsE2EE and everyoneEnabledE2EE to minimize looping through participants list.
squash: Uses participants map and go over the elements only once.
* feat: Optimizes isEveryoneModerator to do less frequent checks in all participants.
* fix: Drops deep equal from participants pane and uses the map.
* fix(SharedVideo): isVideoPlaying
* fix(participants): Optimise isEveryoneModerator
* fix(e2e): Optimise everyoneEnabledE2EE
* fix: JS errors.
* ref(participants): remove getParticipants
* fix(participants): Prepare for PR.
* fix: Changes participants pane to be component.
The functional component was always rendered:
`prev props: {} !== {} :next props`.
* feat: Optimization to skip participants list on pane closed.
* fix: The participants list shows and the local participant.
* fix: Fix wrong action name for av-moderation.
* fix: Minimizes the number of render calls of av moderation notification.
* fix: Fix iterating over remote participants.
* fix: Fixes lint error.
* fix: Reflects participant updates for av-moderation.
* fix(ParticipantPane): to work with IDs.
* fix(av-moderation): on PARTCIPANT_UPDATE
* fix(ParticipantPane): close delay.
* fix: address code review comments
* fix(API): mute-everyone
* fix: bugs
* fix(Thumbnail): on mobile.
* fix(ParticipantPane): Close context menu on click.
* fix: Handles few error when local participant is undefined.
* feat: Hides AV moderation if not supported.
* fix: Show mute all video.
* fix: Fixes updating participant for av moderation.
Co-authored-by: damencho <damencho@jitsi.org>
80 lines
2.3 KiB
JavaScript
80 lines
2.3 KiB
JavaScript
// @flow
|
|
|
|
import { hasAvailableDevices } from '../base/devices';
|
|
import { TOOLBOX_ALWAYS_VISIBLE, getFeatureFlag, TOOLBOX_ENABLED } from '../base/flags';
|
|
import { getParticipantCountWithFake } from '../base/participants';
|
|
import { toState } from '../base/redux';
|
|
import { isLocalVideoTrackDesktop } from '../base/tracks';
|
|
|
|
const WIDTH = {
|
|
FIT_9_ICONS: 560,
|
|
FIT_8_ICONS: 500,
|
|
FIT_7_ICONS: 440,
|
|
FIT_6_ICONS: 380
|
|
};
|
|
|
|
/**
|
|
* Returns a set of the buttons that are shown in the toolbar
|
|
* but removed from the overflow menu, based on the width of the screen.
|
|
*
|
|
* @param {number} width - The width of the screen.
|
|
* @returns {Set}
|
|
*/
|
|
export function getMovableButtons(width: number): Set<string> {
|
|
let buttons = [];
|
|
|
|
switch (true) {
|
|
case width >= WIDTH.FIT_9_ICONS: {
|
|
buttons = [ 'togglecamera', 'chat', 'invite', 'raisehand', 'tileview' ];
|
|
break;
|
|
}
|
|
case width >= WIDTH.FIT_8_ICONS: {
|
|
buttons = [ 'chat', 'togglecamera', 'raisehand', 'tileview' ];
|
|
break;
|
|
}
|
|
|
|
case width >= WIDTH.FIT_7_ICONS: {
|
|
buttons = [ 'chat', 'togglecamera', 'raisehand' ];
|
|
break;
|
|
}
|
|
|
|
case width >= WIDTH.FIT_6_ICONS: {
|
|
buttons = [ 'chat', 'togglecamera' ];
|
|
break;
|
|
}
|
|
|
|
default: {
|
|
buttons = [ 'chat' ];
|
|
}
|
|
}
|
|
|
|
return new Set(buttons);
|
|
}
|
|
|
|
/**
|
|
* Returns true if the toolbox is visible.
|
|
*
|
|
* @param {Object | Function} stateful - A function or object that can be
|
|
* resolved to Redux state by the function {@code toState}.
|
|
* @returns {boolean}
|
|
*/
|
|
export function isToolboxVisible(stateful: Object | Function) {
|
|
const state = toState(stateful);
|
|
const { alwaysVisible, enabled, visible } = state['features/toolbox'];
|
|
const participantCount = getParticipantCountWithFake(state);
|
|
const alwaysVisibleFlag = getFeatureFlag(state, TOOLBOX_ALWAYS_VISIBLE, false);
|
|
const enabledFlag = getFeatureFlag(state, TOOLBOX_ENABLED, true);
|
|
|
|
return enabledFlag && enabled && (alwaysVisible || visible || participantCount === 1 || alwaysVisibleFlag);
|
|
}
|
|
|
|
/**
|
|
* Indicates if the video mute button is disabled or not.
|
|
*
|
|
* @param {string} state - The state from the Redux store.
|
|
* @returns {boolean}
|
|
*/
|
|
export function isVideoMuteButtonDisabled(state: Object) {
|
|
return !hasAvailableDevices(state, 'videoInput') || isLocalVideoTrackDesktop(state);
|
|
}
|