bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/breakout-join-confirmation/component.jsx

111 lines
3.3 KiB
React
Raw Normal View History

import React, { Component } from 'react';
import { defineMessages, injectIntl } from 'react-intl';
import { withModalMounter } from '/imports/ui/components/modal/service';
import Modal from '/imports/ui/components/modal/fullscreen/component';
2017-10-06 20:50:01 +08:00
import AudioService from '../audio/service';
2018-07-07 01:38:14 +08:00
import { styles } from './styles';
const intlMessages = defineMessages({
title: {
2016-11-14 19:57:10 +08:00
id: 'app.breakoutJoinConfirmation.title',
2017-04-10 23:50:03 +08:00
description: 'Join breakout room title',
},
message: {
id: 'app.breakoutJoinConfirmation.message',
2017-04-10 23:50:03 +08:00
description: 'Join breakout confim message',
},
2018-07-07 01:38:14 +08:00
freeJoinMessage: {
id: 'app.breakoutJoinConfirmation.freeJoinMessage',
description: 'Join breakout confim message',
},
confirmLabel: {
id: 'app.breakoutJoinConfirmation.confirmLabel',
2017-04-10 23:50:03 +08:00
description: 'Join confirmation button label',
},
confirmDesc: {
id: 'app.breakoutJoinConfirmation.confirmDesc',
2017-04-11 21:52:30 +08:00
description: 'adds context to confirm option',
},
dismissLabel: {
id: 'app.breakoutJoinConfirmation.dismissLabel',
2017-04-10 23:50:03 +08:00
description: 'Cancel button label',
},
dismissDesc: {
id: 'app.breakoutJoinConfirmation.dismissDesc',
2017-04-11 21:52:30 +08:00
description: 'adds context to dismiss option',
},
});
class BreakoutJoinConfirmation extends Component {
constructor(props) {
super(props);
2018-07-07 01:38:14 +08:00
this.state = {
selectValue: props.breakout.breakoutId,
};
this.handleJoinBreakoutConfirmation = this.handleJoinBreakoutConfirmation.bind(this);
2018-07-07 01:38:14 +08:00
this.renderSelectMeeting = this.renderSelectMeeting.bind(this);
this.handleSelectChange = this.handleSelectChange.bind(this);
}
handleJoinBreakoutConfirmation() {
const {
2018-07-07 01:38:14 +08:00
getURL,
mountModal,
2018-07-07 01:38:14 +08:00
breakoutURL,
isFreeJoin,
} = this.props;
2018-07-07 01:38:14 +08:00
const url = isFreeJoin ? getURL(this.state.selectValue) : breakoutURL;
// leave main room's audio when joining a breakout room
2017-05-03 23:06:28 +08:00
AudioService.exitAudio();
2018-07-07 01:38:14 +08:00
window.open(url);
mountModal(null);
}
2018-07-13 00:19:54 +08:00
2018-07-07 01:38:14 +08:00
handleSelectChange(e) {
const { value } = e.target;
this.setState({ selectValue: value });
this.props.requestJoinURL(value);
}
renderSelectMeeting() {
const { breakouts, intl } = this.props;
return (
<div className={styles.selectParent}>
{`${intl.formatMessage(intlMessages.freeJoinMessage)}`}
<select
className={styles.select}
value={this.state.selectValue}
onChange={this.handleSelectChange}
>
{breakouts.map(({ name, breakoutId }) => (<option key={breakoutId} value={breakoutId} >{name}</option>))}
</select>
</div>
);
}
render() {
2018-07-07 01:38:14 +08:00
const { intl, breakoutName, isFreeJoin } = this.props;
return (
<Modal
title={intl.formatMessage(intlMessages.title)}
confirm={{
callback: this.handleJoinBreakoutConfirmation,
label: intl.formatMessage(intlMessages.confirmLabel),
description: intl.formatMessage(intlMessages.confirmDesc),
}}
dismiss={{
label: intl.formatMessage(intlMessages.dismissLabel),
description: intl.formatMessage(intlMessages.dismissDesc),
2017-06-03 03:25:02 +08:00
}}
>
2018-07-07 01:38:14 +08:00
{ isFreeJoin ? this.renderSelectMeeting() : `${intl.formatMessage(intlMessages.message)} ${breakoutName}?`}
</Modal>
);
}
2017-06-03 03:25:02 +08:00
}
export default withModalMounter(injectIntl(BreakoutJoinConfirmation));