theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

72 lines
2.1 KiB
TypeScript

import { connect } from 'react-redux';
import { IReduxState } from '../../../app/types';
import { translate } from '../../../base/i18n/functions';
import { IconVolumeOff, IconVolumeUp } from '../../../base/icons/svg';
import JitsiMeetJS from '../../../base/lib-jitsi-meet';
import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
import { setOverflowMenuVisible } from '../../../toolbox/actions.web';
import { startAudioScreenShareFlow } from '../../actions.web';
import { isAudioOnlySharing, isScreenAudioSupported } from '../../functions';
interface IProps extends AbstractButtonProps {
/**
* Whether or not the local participant is audio only screen sharing.
*/
_isAudioOnlySharing: boolean;
}
/**
* Component that renders a toolbar button for toggling audio only screen share.
*/
class ShareAudioButton extends AbstractButton<IProps> {
override accessibilityLabel = 'toolbar.accessibilityLabel.shareaudio';
override icon = IconVolumeUp;
override label = 'toolbar.shareaudio';
override tooltip = 'toolbar.shareaudio';
override toggledIcon = IconVolumeOff;
override toggledLabel = 'toolbar.stopAudioSharing';
/**
* Handles clicking / pressing the button, and opens a new dialog.
*
* @private
* @returns {void}
*/
override _handleClick() {
const { dispatch } = this.props;
dispatch(startAudioScreenShareFlow());
dispatch(setOverflowMenuVisible(false));
}
/**
* Indicates whether this button is in toggled state or not.
*
* @override
* @protected
* @returns {boolean}
*/
override _isToggled() {
return this.props._isAudioOnlySharing;
}
}
/**
* Maps part of the Redux state to the props of this component.
*
* @param {Object} state - The Redux state.
* @private
* @returns {IProps}
*/
function _mapStateToProps(state: IReduxState) {
return {
_isAudioOnlySharing: Boolean(isAudioOnlySharing(state)),
visible: JitsiMeetJS.isDesktopSharingEnabled() && isScreenAudioSupported()
};
}
export default translate(connect(_mapStateToProps)(ShareAudioButton));