bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-notification/component.jsx
2017-10-11 09:05:57 -03:00

75 lines
1.5 KiB
JavaScript

import React, { Component } from 'react';
import cx from 'classnames';
import Button from '/imports/ui/components/button/component';
import PropTypes from 'prop-types';
import { defineMessages, injectIntl } from 'react-intl';
import styles from './styles.scss';
const COLORS = [
'default', 'primary', 'danger', 'success',
];
const propTypes = {
color: PropTypes.oneOf(COLORS),
handleClose: PropTypes.func.isRequired,
message: PropTypes.string,
};
const defaultProps = {
color: 'danger',
message: null,
};
const intlMessages = defineMessages({
closeLabel: {
id: 'app.audioNotification.closeLabel',
description: 'Audio notification dismiss label',
},
});
class AudioNotification extends Component {
constructor(props) {
super(props);
this.handleClose = this.handleClose.bind(this);
}
handleClose() {
this.props.handleClose();
}
render() {
const {
color,
error,
intl,
} = this.props;
if (!color || !error) {
return null;
}
return (
<div
role="alert"
className={cx(styles.audioNotifications, styles[this.props.color])}
>
{error}
<Button
className={styles.closeBtn}
label={intl.formatMessage(intlMessages.closeLabel)}
icon={'close'}
size={'sm'}
circle
hideLabel
onClick={this.handleClose}
/>
</div>
);
}
}
AudioNotification.propTypes = propTypes;
AudioNotification.defaultProps = defaultProps;
export default injectIntl(AudioNotification);