| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* eslint-disable lines-around-comment */
-
- import { IReduxState } from '../../../../app/types';
- import { translate } from '../../../../base/i18n/functions';
- import { IconGear } from '../../../../base/icons/svg';
- // @ts-ignore
- import { AbstractButton, type AbstractButtonProps } from '../../../../base/toolbox/components';
- import { navigate }
- // @ts-ignore
- from '../../../../mobile/navigation/components/conference/ConferenceNavigationContainerRef';
- // @ts-ignore
- import { screen } from '../../../../mobile/navigation/routes';
- import { SETTINGS_ENABLED } from '../../../flags/constants';
- import { getFeatureFlag } from '../../../flags/functions';
- import { connect } from '../../../redux/functions';
-
- /**
- * Implements an {@link AbstractButton} to open the carmode.
- */
- class SettingsButton extends AbstractButton<AbstractButtonProps, any, any> {
- accessibilityLabel = 'toolbar.accessibilityLabel.Settings';
- icon = IconGear;
- label = 'settings.buttonLabel';
-
- /**
- * Handles clicking / pressing the button, and opens the carmode mode.
- *
- * @private
- * @returns {void}
- */
- _handleClick() {
- return navigate(screen.settings.main);
- }
- }
-
-
- /**
- * Maps part of the redux state to the component's props.
- *
- * @param {IReduxState} state - The Redux state.
- * @returns {Object}
- */
- function _mapStateToProps(state: IReduxState) {
- const enabled = getFeatureFlag(state, SETTINGS_ENABLED, true);
-
- return {
- visible: enabled
- };
- }
-
- // @ts-ignore
- export default translate(connect(_mapStateToProps)(SettingsButton));
|