117 lines
3.3 KiB
JavaScript
Executable File
117 lines
3.3 KiB
JavaScript
Executable File
import React from 'react';
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
import Button from '/imports/ui/components/button/component';
|
|
import { clearModal } from '/imports/ui/components/app/service';
|
|
import styles from '../styles.scss';
|
|
|
|
import DeviceSelector from '/imports/ui/components/audio/device-selector/component';
|
|
import AudioStreamVolume from '/imports/ui/components/audio/audio-stream-volume/component';
|
|
import EnterAudioContainer from '/imports/ui/components/enter-audio/container';
|
|
import AudioTestContainer from '/imports/ui/components/audio-test/container';
|
|
|
|
class AudioSettings extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.chooseAudio = this.chooseAudio.bind(this);
|
|
this.handleInputChange = this.handleInputChange.bind(this);
|
|
this.handleOutputChange = this.handleOutputChange.bind(this);
|
|
this.handleClose = this.handleClose.bind(this);
|
|
|
|
this.state = {
|
|
inputDeviceId: undefined,
|
|
}
|
|
}
|
|
|
|
chooseAudio() {
|
|
this.props.changeMenu(this.props.JOIN_AUDIO);
|
|
}
|
|
|
|
handleInputChange(deviceId) {
|
|
console.log(`INPUT DEVICE CHANGED: ${deviceId}`);
|
|
this.setState({
|
|
inputDeviceId: deviceId
|
|
});
|
|
}
|
|
|
|
handleOutputChange(deviceId) {
|
|
console.log(`OUTPUT DEVICE CHANGED: ${deviceId}`);
|
|
}
|
|
|
|
handleClose() {
|
|
this.setState({ isOpen: false });
|
|
clearModal();
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
intl,
|
|
} = this.props;
|
|
|
|
return (
|
|
<div>
|
|
<div className={styles.center}>
|
|
<Button className={styles.backBtn}
|
|
label={intl.formatMessage(intlMessages.backLabel)}
|
|
icon={'left_arrow'}
|
|
size={'md'}
|
|
color={'primary'}
|
|
ghost={true}
|
|
onClick={this.chooseAudio}
|
|
/>
|
|
<div className={styles.title}>
|
|
<FormattedMessage
|
|
id="app.audio.audioSettings.titleLabel"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className={styles.audioNote}>
|
|
<FormattedMessage
|
|
id="app.audio.audioSettings.descriptionLabel"
|
|
/>
|
|
</div>
|
|
<div className={styles.containerLeftHalfContent}>
|
|
<span className={styles.heading}>
|
|
<FormattedMessage
|
|
id="app.audio.audioSettings.microphoneSourceLabel"
|
|
/>
|
|
</span>
|
|
<DeviceSelector
|
|
className={styles.item}
|
|
kind="audioinput"
|
|
onChange={this.handleInputChange} />
|
|
<span className={styles.heading}>
|
|
<FormattedMessage
|
|
id="app.audio.audioSettings.microphoneStreamLabel"
|
|
/>
|
|
</span>
|
|
<AudioStreamVolume
|
|
className={styles.item}
|
|
deviceId={this.state.inputDeviceId} />
|
|
</div>
|
|
<div className={styles.containerRightHalfContent}>
|
|
<span className={styles.heading}>
|
|
<FormattedMessage
|
|
id="app.audio.audioSettings.speakerSourceLabel"
|
|
/>
|
|
</span>
|
|
<DeviceSelector
|
|
className={styles.item}
|
|
kind="audiooutput"
|
|
onChange={this.handleOutputChange} />
|
|
<AudioTestContainer />
|
|
<EnterAudioContainer isFullAudio={true}/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
};
|
|
|
|
const intlMessages = defineMessages({
|
|
backLabel: {
|
|
id: 'app.audio.backLabel',
|
|
},
|
|
});
|
|
|
|
export default injectIntl(AudioSettings);
|