bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/device-selector/component.jsx
2017-06-05 13:52:46 +00:00

94 lines
2.3 KiB
JavaScript
Executable File

import React, { Component } from 'react';
import PropTypes from 'prop-types';
const propTypes = {
kind: PropTypes.oneOf(['audioinput', 'audiooutput', 'videoinput']),
onChange: PropTypes.func.isRequired,
value: PropTypes.string,
};
const defaultProps = {
kind: 'audioinput',
value: undefined,
};
class DeviceSelector extends Component {
constructor(props) {
super(props);
this.handleEnumerateDevicesSuccess = this.handleEnumerateDevicesSuccess.bind(this);
this.handleEnumerateDevicesError = this.handleEnumerateDevicesError.bind(this);
this.handleSelectChange = this.handleSelectChange.bind(this);
this.state = {
value: props.value,
devices: [],
options: [],
};
}
componentDidMount() {
navigator.mediaDevices
.enumerateDevices()
.then(this.handleEnumerateDevicesSuccess)
.catch(this.handleEnumerateDevicesError);
}
handleEnumerateDevicesSuccess(deviceInfos) {
const devices = deviceInfos.filter(d => d.kind === this.props.kind);
this.setState({
devices,
options: devices.map((d, i) => ({
label: d.label || `${this.props.kind} - ${i}`,
value: d.deviceId,
})),
});
}
handleEnumerateDevicesError(error) {
logClient('error', { error, method: 'handleEnumerateDevicesError' });
}
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, ...props } = this.props;
const { options, value } = this.state;
return (
<select
{...props}
value={value}
onChange={this.handleSelectChange}
disabled={!options.length}
>
{
options.length ?
options.map((option, i) => (
<option
key={i}
value={option.value}
>
{option.label}
</option>
)) :
<option value="not-found">{`no ${kind} found`}</option>
}
</select>
);
}
}
DeviceSelector.propTypes = propTypes;
DeviceSelector.defaultProps = defaultProps;
export default DeviceSelector;