| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /* eslint-disable lines-around-comment */
- import { connect } from 'react-redux';
-
- import { IReduxState } from '../../../app/types';
- import { CAR_MODE_ENABLED } from '../../../base/flags/constants';
- import { getFeatureFlag } from '../../../base/flags/functions';
- import { translate } from '../../../base/i18n/functions';
- import { IconCar } from '../../../base/icons/svg';
- import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
- import { navigate }
- // @ts-ignore
- from '../../../mobile/navigation/components/conference/ConferenceNavigationContainerRef';
- // @ts-ignore
- import { screen } from '../../../mobile/navigation/routes';
- /* eslint-enable lines-around-comment */
-
- /**
- * Implements an {@link AbstractButton} to open the carmode.
- */
- class OpenCarmodeButton extends AbstractButton<AbstractButtonProps> {
- accessibilityLabel = 'toolbar.accessibilityLabel.carmode';
- icon = IconCar;
- label = 'carmode.labels.buttonLabel';
-
- /**
- * Handles clicking / pressing the button, and opens the carmode mode.
- *
- * @private
- * @returns {void}
- */
- _handleClick() {
- return navigate(screen.conference.carmode);
- }
- }
-
- /**
- * Maps part of the Redux state to the props of this component.
- *
- * @param {IReduxState} state - The Redux state.
- * @param {AbstractButtonProps} ownProps - The properties explicitly passed to the component instance.
- * @private
- * @returns {Object}
- */
- function _mapStateToProps(state: IReduxState, ownProps: AbstractButtonProps): Object {
- const enabled = getFeatureFlag(state, CAR_MODE_ENABLED, true);
- const { visible = enabled } = ownProps;
-
- return {
- visible
- };
- }
-
- // @ts-ignore
- export default translate(connect(_mapStateToProps)(OpenCarmodeButton));
|