mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 12:10:36 +00:00
* Added sounds for reactions * Updated reactions list * Added reactions to sound settings * Added support for multiple sounds * Added feature flag for sounds * Updated sound settings Moved reactions toggle at the top of the list * Added disable reaction sounds notification * Added reaction button zoom for burst intensity * Fixed raise hand sound * Fixed register sounds for reactions * Changed boo emoji * Updated sounds * Fixed lint errors * Fixed reaction sounds file names * Fix raise hand sound Play sound only on raise hand not on lower hand * Fixed types for sound constants * Fixed type for raise hand sound constant
29 lines
488 B
JavaScript
29 lines
488 B
JavaScript
// @flow
|
|
|
|
import {
|
|
SHOW_SOUNDS_NOTIFICATION,
|
|
TOGGLE_REACTIONS_VISIBLE
|
|
} from './actionTypes';
|
|
|
|
/**
|
|
* Toggles the visibility of the reactions menu.
|
|
*
|
|
* @returns {Object}
|
|
*/
|
|
export function toggleReactionsMenuVisibility() {
|
|
return {
|
|
type: TOGGLE_REACTIONS_VISIBLE
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Displays the disable sounds notification.
|
|
*
|
|
* @returns {Object}
|
|
*/
|
|
export function displayReactionSoundsNotification() {
|
|
return {
|
|
type: SHOW_SOUNDS_NOTIFICATION
|
|
};
|
|
}
|