82 lines
2.2 KiB
JavaScript
Executable File
82 lines
2.2 KiB
JavaScript
Executable File
import { Meteor } from 'meteor/meteor';
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
|
import React, { Component, PropTypes } from 'react';
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
import AudioNotification from './component';
|
|
import styles from './styles.scss';
|
|
import Button from '/imports/ui/components/button/component';
|
|
|
|
const intlMessages = defineMessages({
|
|
audioFailed: {
|
|
id: 'app.audioNotification.audioFailedMessage',
|
|
description: 'The audio could not connect, Try again',
|
|
},
|
|
mediaFailed: {
|
|
id: 'app.audioNotification.mediaFailedMessage',
|
|
description: 'Could not access getUserMicMedia, Try again',
|
|
},
|
|
});
|
|
|
|
class AudioNotificationContainer extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.color = null;
|
|
this.message = null;
|
|
|
|
this.state = {
|
|
status: null,
|
|
}
|
|
|
|
this.handleAudioFailure = this.handleAudioFailure.bind(this);
|
|
this.handleMediaFailure = this.handleMediaFailure.bind(this);
|
|
this.handleClose = this.handleClose.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
window.addEventListener("bbb.webrtc.failed", this.handleAudioFailure);
|
|
window.addEventListener("bbb.webrtc.mediaFailed", this.handleMediaFailure);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
window.removeEventListener("bbb.webrtc.failed", this.handleAudioFailure);
|
|
window.removeEventListener("bbb.webrtc.mediaFailed", this.handleMediaFailure);
|
|
}
|
|
|
|
handleClose(){
|
|
this.color = null;
|
|
this.message = null;
|
|
this.setState({status: null});
|
|
}
|
|
|
|
handleAudioFailure() {
|
|
this.message = this.props.audioFailure;
|
|
this.setState({status: 'failed'});
|
|
}
|
|
|
|
handleMediaFailure() {
|
|
this.message = this.props.mediaFailure;
|
|
this.setState({status: 'failed'});
|
|
}
|
|
|
|
render() {
|
|
const handleClose = this.handleClose;
|
|
this.color = 'danger';
|
|
|
|
return(
|
|
<AudioNotification
|
|
color={this.color}
|
|
message={this.message}
|
|
handleClose={this.handleClose}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default injectIntl(createContainer(({ intl }) => {
|
|
let messages = {};
|
|
messages.audioFailure = intl.formatMessage(intlMessages.audioFailed);
|
|
messages.mediaFailure = intl.formatMessage(intlMessages.mediaFailed);
|
|
return messages;
|
|
}, AudioNotificationContainer));
|