bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/device-selector/component.jsx

96 lines
2.3 KiB
React
Raw Normal View History

import React, { Component } from 'react';
2017-10-23 20:41:09 +08:00
import _ from 'lodash';
import PropTypes from 'prop-types';
import cx from 'classnames';
2018-01-08 14:17:18 +08:00
import { styles } from '../audio-modal/styles';
const propTypes = {
kind: PropTypes.oneOf(['audioinput', 'audiooutput', 'videoinput']),
onChange: PropTypes.func.isRequired,
2017-02-16 02:49:40 +08:00
value: PropTypes.string,
2017-10-23 20:41:09 +08:00
handleDeviceChange: PropTypes.func,
className: PropTypes.string,
};
const defaultProps = {
kind: 'audioinput',
2017-02-16 02:49:40 +08:00
value: undefined,
2017-10-23 20:41:09 +08:00
className: null,
handleDeviceChange: null,
};
class DeviceSelector extends Component {
constructor(props) {
super(props);
this.handleSelectChange = this.handleSelectChange.bind(this);
this.state = {
2017-02-16 02:49:40 +08:00
value: props.value,
devices: [],
options: [],
};
}
componentDidMount() {
2017-10-23 20:41:09 +08:00
const handleEnumerateDevicesSuccess = (deviceInfos) => {
const devices = deviceInfos.filter(d => d.kind === this.props.kind);
2017-10-23 20:41:09 +08:00
this.setState({
devices,
options: devices.map((d, i) => ({
label: d.label || `${this.props.kind} - ${i}`,
value: d.deviceId,
2017-11-01 01:34:06 +08:00
key: _.uniqueId('device-option-'),
2017-10-23 20:41:09 +08:00
})),
});
};
2017-10-23 20:41:09 +08:00
navigator.mediaDevices
.enumerateDevices()
.then(handleEnumerateDevicesSuccess);
}
handleSelectChange(event) {
const value = event.target.value;
const { onChange } = this.props;
this.setState({ value }, () => {
const selectedDevice = this.state.devices.find(d => d.deviceId === value);
onChange(selectedDevice.deviceId, selectedDevice, event);
});
}
render() {
const { kind, handleDeviceChange, className, ...props } = this.props;
const { options, value } = this.state;
return (
<select
{...props}
value={value}
2016-12-20 01:11:43 +08:00
onChange={this.handleSelectChange}
2017-06-03 03:25:02 +08:00
disabled={!options.length}
className={cx(styles.select, className)}
2017-06-03 03:25:02 +08:00
>
2016-12-20 01:11:43 +08:00
{
options.length ?
2017-10-23 20:41:09 +08:00
options.map(option => (
2016-12-20 01:11:43 +08:00
<option
2017-11-01 01:34:06 +08:00
key={option.key}
2017-06-03 03:25:02 +08:00
value={option.value}
>
2016-12-20 01:11:43 +08:00
{option.label}
</option>
)) :
<option value="not-found">{`no ${kind} found`}</option>
}
</select>
);
}
2017-06-03 03:25:02 +08:00
}
DeviceSelector.propTypes = propTypes;
DeviceSelector.defaultProps = defaultProps;
export default DeviceSelector;