183 lines
5.1 KiB
JavaScript
183 lines
5.1 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { defineMessages, injectIntl, intlShape } from 'react-intl';
|
|
import Button from '/imports/ui/components/button/component';
|
|
import { withModalMounter } from '/imports/ui/components/modal/service';
|
|
import DeviceSelector from '/imports/ui/components/audio/device-selector/component';
|
|
import AudioTestContainer from '/imports/ui/components/audio/audio-test/container';
|
|
import cx from 'classnames';
|
|
import { styles } from './styles';
|
|
|
|
const propTypes = {
|
|
intl: intlShape.isRequired,
|
|
changeInputDevice: PropTypes.func.isRequired,
|
|
changeOutputDevice: PropTypes.func.isRequired,
|
|
handleBack: PropTypes.func.isRequired,
|
|
handleRetry: PropTypes.func.isRequired,
|
|
isConnecting: PropTypes.bool.isRequired,
|
|
inputDeviceId: PropTypes.string.isRequired,
|
|
outputDeviceId: PropTypes.string.isRequired,
|
|
};
|
|
|
|
const intlMessages = defineMessages({
|
|
backLabel: {
|
|
id: 'app.audio.backLabel',
|
|
description: 'audio settings back button label',
|
|
},
|
|
descriptionLabel: {
|
|
id: 'app.audio.audioSettings.descriptionLabel',
|
|
description: 'audio settings description label',
|
|
},
|
|
micSourceLabel: {
|
|
id: 'app.audio.audioSettings.microphoneSourceLabel',
|
|
description: 'Label for mic source',
|
|
},
|
|
speakerSourceLabel: {
|
|
id: 'app.audio.audioSettings.speakerSourceLabel',
|
|
description: 'Label for speaker source',
|
|
},
|
|
streamVolumeLabel: {
|
|
id: 'app.audio.audioSettings.microphoneStreamLabel',
|
|
description: 'Label for stream volume',
|
|
},
|
|
retryLabel: {
|
|
id: 'app.audio.audioSettings.retryLabel',
|
|
description: 'Retry button label',
|
|
},
|
|
});
|
|
|
|
class AudioSettings extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
const {
|
|
inputDeviceId,
|
|
outputDeviceId,
|
|
} = props;
|
|
|
|
this.handleInputChange = this.handleInputChange.bind(this);
|
|
this.handleOutputChange = this.handleOutputChange.bind(this);
|
|
|
|
this.state = {
|
|
inputDeviceId,
|
|
outputDeviceId,
|
|
};
|
|
}
|
|
|
|
handleInputChange(deviceId) {
|
|
const {
|
|
changeInputDevice,
|
|
} = this.props;
|
|
|
|
changeInputDevice(deviceId);
|
|
this.setState({
|
|
inputDeviceId: deviceId,
|
|
});
|
|
}
|
|
|
|
handleOutputChange(deviceId) {
|
|
const {
|
|
changeOutputDevice,
|
|
} = this.props;
|
|
|
|
changeOutputDevice(deviceId);
|
|
this.setState({
|
|
outputDeviceId: deviceId,
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
isConnecting,
|
|
intl,
|
|
handleBack,
|
|
handleRetry,
|
|
} = this.props;
|
|
|
|
return (
|
|
<div>
|
|
<div className={styles.form}>
|
|
<div className={styles.row}>
|
|
<div className={styles.audioNote}>
|
|
{intl.formatMessage(intlMessages.descriptionLabel)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className={styles.row}>
|
|
<div className={styles.col}>
|
|
<div className={styles.formElement}>
|
|
<label
|
|
htmlFor="inputDeviceSelector"
|
|
className={cx(styles.label, styles.labelSmall)}
|
|
>
|
|
{intl.formatMessage(intlMessages.micSourceLabel)}
|
|
<DeviceSelector
|
|
id="inputDeviceSelector"
|
|
value={this.state.inputDeviceId}
|
|
className={styles.select}
|
|
kind="audioinput"
|
|
onChange={this.handleInputChange}
|
|
/>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div className={styles.col}>
|
|
<div className={styles.formElement}>
|
|
<label
|
|
htmlFor="outputDeviceSelector"
|
|
className={cx(styles.label, styles.labelSmall)}
|
|
>
|
|
{intl.formatMessage(intlMessages.speakerSourceLabel)}
|
|
<DeviceSelector
|
|
id="outputDeviceSelector"
|
|
value={this.state.outputDeviceId}
|
|
className={styles.select}
|
|
kind="audiooutput"
|
|
onChange={this.handleOutputChange}
|
|
/>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className={styles.row}>
|
|
<div className={cx(styles.col, styles.spacedLeft)}>
|
|
<label
|
|
htmlFor="audioTest"
|
|
className={styles.labelSmall}
|
|
>
|
|
Test your speaker volume
|
|
<AudioTestContainer id="audioTest" />
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div className={styles.enterAudio}>
|
|
<Button
|
|
className={styles.backBtn}
|
|
label={intl.formatMessage(intlMessages.backLabel)}
|
|
size={'md'}
|
|
color={'primary'}
|
|
onClick={handleBack}
|
|
disabled={isConnecting}
|
|
ghost
|
|
/>
|
|
<Button
|
|
size={'md'}
|
|
color={'primary'}
|
|
label={intl.formatMessage(intlMessages.retryLabel)}
|
|
onClick={handleRetry}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
AudioSettings.propTypes = propTypes;
|
|
|
|
export default withModalMounter(injectIntl(AudioSettings));
|