123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- // @flow
-
- import React, { Component } from 'react';
- import { View } from 'react-native';
-
- import { ColorSchemeRegistry } from '../../../base/color-scheme';
- import { CHAT_ENABLED, getFeatureFlag } from '../../../base/flags';
- import { Container } from '../../../base/react';
- import { connect } from '../../../base/redux';
- import { StyleType } from '../../../base/styles';
- import { ChatButton } from '../../../chat';
- import { InfoDialogButton } from '../../../invite';
-
- import { isToolboxVisible } from '../../functions';
-
- import AudioMuteButton from '../AudioMuteButton';
- import HangupButton from '../HangupButton';
-
- import OverflowMenuButton from './OverflowMenuButton';
- import styles from './styles';
- import VideoMuteButton from '../VideoMuteButton';
-
- /**
- * The type of {@link Toolbox}'s React {@code Component} props.
- */
- type Props = {
-
- /**
- * Whether the chat feature has been enabled. The meeting info button will be displayed in its place when disabled.
- */
- _chatEnabled: boolean,
-
- /**
- * The color-schemed stylesheet of the feature.
- */
- _styles: StyleType,
-
- /**
- * The indicator which determines whether the toolbox is visible.
- */
- _visible: boolean,
-
- /**
- * The redux {@code dispatch} function.
- */
- dispatch: Function
- };
-
- /**
- * The type of {@link Toolbox}'s React {@code Component} state.
- */
- type State = {
-
- /**
- * The detected width for this component.
- */
- width: number
- };
-
- /**
- * Implements the conference toolbox on React Native.
- */
- class Toolbox extends Component<Props, State> {
- state = {
- width: 0
- };
-
- /**
- * Initializes a new {@code Toolbox} instance.
- *
- * @inheritdoc
- */
- constructor(props: Props) {
- super(props);
-
- // Bind event handlers so they are only bound once per instance.
- this._onLayout = this._onLayout.bind(this);
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- return (
- <Container
- onLayout = { this._onLayout }
- style = { styles.toolbox }
- visible = { this.props._visible }>
- { this._renderToolbar() }
- </Container>
- );
- }
-
- /**
- * Constructs the toggled style of the chat button. This cannot be done by
- * simple style inheritance due to the size calculation done in this
- * component.
- *
- * @param {Object} baseStyle - The base style that was originally
- * calculated.
- * @returns {Object | Array}
- */
- _getChatButtonToggledStyle(baseStyle) {
- const { _styles } = this.props;
-
- if (Array.isArray(baseStyle.style)) {
- return {
- ...baseStyle,
- style: [
- ...baseStyle.style,
- _styles.chatButtonOverride.toggled
- ]
- };
- }
-
- return {
- ...baseStyle,
- style: [
- baseStyle.style,
- _styles.chatButtonOverride.toggled
- ]
- };
- }
-
- _onLayout: (Object) => void;
-
- /**
- * Handles the "on layout" View's event and stores the width as state.
- *
- * @param {Object} event - The "on layout" event object/structure passed
- * by react-native.
- * @private
- * @returns {void}
- */
- _onLayout({ nativeEvent: { layout: { width } } }) {
- this.setState({ width });
- }
-
- /**
- * Renders the toolbar. In order to avoid a weird visual effect in which the
- * toolbar is (visually) rendered and then visibly changes its size, it is
- * rendered only after we've figured out the width available to the toolbar.
- *
- * @returns {React$Node}
- */
- _renderToolbar() {
- const { _chatEnabled, _styles } = this.props;
- const { buttonStyles, buttonStylesBorderless, hangupButtonStyles, toggledButtonStyles } = _styles;
-
- return (
- <View
- pointerEvents = 'box-none'
- style = { styles.toolbar }>
- {
- _chatEnabled
- && <ChatButton
- styles = { buttonStylesBorderless }
- toggledStyles = {
- this._getChatButtonToggledStyle(toggledButtonStyles)
- } />
- }
- {
- !_chatEnabled
- && <InfoDialogButton
- styles = { buttonStyles }
- toggledStyles = { toggledButtonStyles } />
- }
- <AudioMuteButton
- styles = { buttonStyles }
- toggledStyles = { toggledButtonStyles } />
- <HangupButton
- styles = { hangupButtonStyles } />
- <VideoMuteButton
- styles = { buttonStyles }
- toggledStyles = { toggledButtonStyles } />
- <OverflowMenuButton
- styles = { buttonStylesBorderless }
- toggledStyles = { toggledButtonStyles } />
- </View>
- );
- }
- }
-
- /**
- * Maps parts of the redux state to {@link Toolbox} (React {@code Component})
- * props.
- *
- * @param {Object} state - The redux state of which parts are to be mapped to
- * {@code Toolbox} props.
- * @private
- * @returns {{
- * _chatEnabled: boolean,
- * _styles: StyleType,
- * _visible: boolean
- * }}
- */
- function _mapStateToProps(state: Object): Object {
- return {
- _chatEnabled: getFeatureFlag(state, CHAT_ENABLED, true),
- _styles: ColorSchemeRegistry.get(state, 'Toolbox'),
- _visible: isToolboxVisible(state)
- };
- }
-
- export default connect(_mapStateToProps)(Toolbox);
|