123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- import _ from 'lodash';
- import React, { Component } from 'react';
- import { NativeModules, Text, TextStyle, TouchableHighlight, View, ViewStyle } from 'react-native';
- import { connect } from 'react-redux';
-
- import { IReduxState, IStore } from '../../../app/types';
- import { hideSheet } from '../../../base/dialog/actions';
- import BottomSheet from '../../../base/dialog/components/native/BottomSheet';
- import { bottomSheetStyles } from '../../../base/dialog/components/native/styles';
- import { translate } from '../../../base/i18n/functions';
- import Icon from '../../../base/icons/components/Icon';
- import {
- IconBluetooth,
- IconCar,
- IconDeviceHeadphone,
- IconPhoneRinging,
- IconVolumeUp
- } from '../../../base/icons/svg';
- import { StyleType } from '../../../base/styles/functions.any';
- import BaseTheme from '../../../base/ui/components/BaseTheme.native';
-
- import styles from './styles';
-
- const { AudioMode } = NativeModules;
-
- /**
- * Type definition for a single entry in the device list.
- */
- interface IDevice {
-
- /**
- * Name of the icon which will be rendered on the right.
- */
- icon: Function;
-
- /**
- * True if the element is selected (will be highlighted in blue),
- * false otherwise.
- */
- selected: boolean;
-
- /**
- * Text which will be rendered in the row.
- */
- text: string;
-
- /**
- * Device type.
- */
- type: string;
-
- /**
- * Unique device ID.
- */
- uid?: string;
- }
-
- /**
- * "Raw" device, as returned by native.
- */
- export interface IRawDevice {
-
- /**
- * Display name for the device.
- */
- name?: string;
-
- /**
- * Is this device selected?
- */
- selected: boolean;
-
- /**
- * Device type.
- */
- type: string;
-
- /**
- * Unique device ID.
- */
- uid?: string;
- }
-
- /**
- * {@code AudioRoutePickerDialog}'s React {@code Component} prop types.
- */
- interface IProps {
-
- /**
- * Object describing available devices.
- */
- _devices: Array<IRawDevice>;
-
- /**
- * Used for hiding the dialog when the selection was completed.
- */
- dispatch: IStore['dispatch'];
-
- /**
- * Invoked to obtain translated strings.
- */
- t: Function;
- }
-
- /**
- * {@code AudioRoutePickerDialog}'s React {@code Component} state types.
- */
- interface IState {
-
- /**
- * Array of available devices.
- */
- devices: Array<IDevice>;
- }
-
- /**
- * Maps each device type to a display name and icon.
- */
- const deviceInfoMap = {
- BLUETOOTH: {
- icon: IconBluetooth,
- text: 'audioDevices.bluetooth',
- type: 'BLUETOOTH'
- },
- CAR: {
- icon: IconCar,
- text: 'audioDevices.car',
- type: 'CAR'
- },
- EARPIECE: {
- icon: IconPhoneRinging,
- text: 'audioDevices.phone',
- type: 'EARPIECE'
- },
- HEADPHONES: {
- icon: IconDeviceHeadphone,
- text: 'audioDevices.headphones',
- type: 'HEADPHONES'
- },
- SPEAKER: {
- icon: IconVolumeUp,
- text: 'audioDevices.speaker',
- type: 'SPEAKER'
- }
- };
-
- /**
- * Implements a React {@code Component} which prompts the user when a password
- * is required to join a conference.
- */
- class AudioRoutePickerDialog extends Component<IProps, IState> {
- state = {
- /**
- * Available audio devices, it will be set in
- * {@link #getDerivedStateFromProps()}.
- */
- devices: []
- };
-
- /**
- * Implements React's {@link Component#getDerivedStateFromProps()}.
- *
- * @inheritdoc
- */
- static getDerivedStateFromProps(props: IProps) {
- const { _devices: devices, t } = props;
-
- if (!devices) {
- return null;
- }
-
- const audioDevices = [];
-
- for (const device of devices) {
- const infoMap = deviceInfoMap[device.type as keyof typeof deviceInfoMap];
-
- // Skip devices with unknown type.
- if (!infoMap) {
- // eslint-disable-next-line no-continue
- continue;
- }
-
- let text = t(infoMap.text);
-
- // iOS provides descriptive names for these, use it.
- if ((device.type === 'BLUETOOTH' || device.type === 'CAR') && device.name) {
- text = device.name;
- }
-
- if (infoMap) {
- const info = {
- ...infoMap,
- selected: Boolean(device.selected),
- text,
- uid: device.uid
- };
-
- audioDevices.push(info);
- }
- }
-
- // Make sure devices is alphabetically sorted.
- return {
- devices: _.sortBy(audioDevices, 'text')
- };
- }
-
- /**
- * Initializes a new {@code PasswordRequiredPrompt} instance.
- *
- * @param {IProps} props - The read-only React {@code Component} props with
- * which the new instance is to be initialized.
- */
- constructor(props: IProps) {
- super(props);
-
- // Trigger an initial update.
- AudioMode.updateDeviceList?.();
- }
-
- /**
- * Builds and returns a function which handles the selection of a device
- * on the sheet. The selected device will be used by {@code AudioMode}.
- *
- * @param {IDevice} device - Object representing the selected device.
- * @private
- * @returns {Function}
- */
- _onSelectDeviceFn(device: IDevice) {
- return () => {
- this.props.dispatch(hideSheet());
- AudioMode.setAudioDevice(device.uid || device.type);
- };
- }
-
- /**
- * Renders a single device.
- *
- * @param {IDevice} device - Object representing a single device.
- * @private
- * @returns {ReactElement}
- */
- _renderDevice(device: IDevice) {
- const { icon, selected, text } = device;
- const selectedStyle = selected ? styles.selectedText : {};
- const borderRadiusHighlightStyles = {
- borderTopLeftRadius: 16,
- borderTopRightRadius: 16
- };
- const speakerDeviceIsNotSelected = device.type !== 'SPEAKER';
-
- return (
- <TouchableHighlight
- key = { device.type }
- onPress = { this._onSelectDeviceFn(device) }
- style = { speakerDeviceIsNotSelected && borderRadiusHighlightStyles }
- underlayColor = { BaseTheme.palette.ui04 } >
- <View style = { styles.deviceRow as ViewStyle } >
- <Icon
- src = { icon }
- style = { [ styles.deviceIcon, bottomSheetStyles.buttons.iconStyle, selectedStyle
- ] as StyleType[] } />
- <Text
- style = { [ styles.deviceText, bottomSheetStyles.buttons.labelStyle, selectedStyle
- ] as TextStyle[] } >
- { text }
- </Text>
- </View>
- </TouchableHighlight>
- );
- }
-
- /**
- * Renders a "fake" device row indicating there are no devices.
- *
- * @private
- * @returns {ReactElement}
- */
- _renderNoDevices() {
- const { t } = this.props;
-
- return (
- <View style = { styles.deviceRow as ViewStyle } >
- <Icon
- src = { deviceInfoMap.SPEAKER.icon }
- style = { [ styles.deviceIcon, bottomSheetStyles.buttons.iconStyle ] as StyleType[] } />
- <Text style = { [ styles.deviceText, bottomSheetStyles.buttons.labelStyle ] as TextStyle[] } >
- { t('audioDevices.none') }
- </Text>
- </View>
- );
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const { devices } = this.state;
- let content;
-
- if (devices.length === 0) {
- content = this._renderNoDevices();
- } else {
- content = this.state.devices.map(this._renderDevice, this);
- }
-
- return (
- <BottomSheet>
- { content }
- </BottomSheet>
- );
- }
- }
-
- /**
- * Maps part of the Redux state to the props of this component.
- *
- * @param {Object} state - The Redux state.
- * @returns {Object}
- */
- function _mapStateToProps(state: IReduxState) {
- return {
- _devices: state['features/mobile/audio-mode'].devices
- };
- }
-
- export default translate(connect(_mapStateToProps)(AudioRoutePickerDialog));
|