123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /* global $, APP */
-
- import React, { Component } from 'react';
- import { connect as reactReduxConnect } from 'react-redux';
-
- import { connect, disconnect } from '../../base/connection';
- import { Watermarks } from '../../base/react';
- import { FeedbackButton } from '../../feedback';
- import { OverlayContainer } from '../../overlay';
-
- /**
- * For legacy reasons, inline style for display none.
- *
- * @private
- * @type {{
- * display: string
- * }}
- */
- const _DISPLAY_NONE_STYLE = {
- display: 'none'
- };
-
- /**
- * The conference page of the Web application.
- */
- class Conference extends Component {
-
- /**
- * Conference component's property types.
- *
- * @static
- */
- static propTypes = {
- dispatch: React.PropTypes.func
- }
-
- /**
- * Until we don't rewrite UI using react components
- * we use UI.start from old app. Also method translates
- * component right after it has been mounted.
- *
- * @inheritdoc
- */
- componentDidMount() {
- APP.UI.start();
-
- // XXX Temporary solution until we add React translation.
- APP.translation.translateElement($('#videoconference_page'));
-
- this.props.dispatch(connect());
- }
-
- /**
- * Disconnect from the conference when component will be
- * unmounted.
- *
- * @inheritdoc
- */
- componentWillUnmount() {
- this.props.dispatch(disconnect());
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- return (
- <div id = 'videoconference_page'>
- <div id = 'mainToolbarContainer'>
- <div
- className = 'notice'
- id = 'notice'
- style = { _DISPLAY_NONE_STYLE }>
- <span
- className = 'noticeText'
- id = 'noticeText' />
- </div>
- <div
- className = 'toolbar'
- id = 'mainToolbar' />
- </div>
- <div
- className = 'hide'
- id = 'subject' />
- <div
- className = 'toolbar'
- id = 'extendedToolbar'>
- <div id = 'extendedToolbarButtons' />
-
- <FeedbackButton />
-
- <div id = 'sideToolbarContainer' />
- </div>
- <div id = 'videospace'>
- <div
- className = 'videocontainer'
- id = 'largeVideoContainer'>
- <div id = 'sharedVideo'>
- <div id = 'sharedVideoIFrame' />
- </div>
- <div id = 'etherpad' />
-
- <Watermarks />
-
- <div id = 'dominantSpeaker'>
- <div className = 'dynamic-shadow' />
- <img
- id = 'dominantSpeakerAvatar'
- src = '' />
- </div>
- <span id = 'remoteConnectionMessage' />
- <div id = 'largeVideoWrapper'>
- <video
- autoPlay = { true }
- id = 'largeVideo'
- muted = 'true' />
- </div>
- <span id = 'localConnectionMessage' />
- <span
- className = 'video-state-indicator moveToCorner'
- id = 'videoResolutionLabel'>HD</span>
- <span
- className
- = 'video-state-indicator centeredVideoLabel'
- id = 'recordingLabel'>
- <span id = 'recordingLabelText' />
- <img
- className = 'recordingSpinner'
- id = 'recordingSpinner'
- src = 'images/spin.svg' />
- </span>
- </div>
- <div className = 'filmstrip'>
- <div
- className = 'filmstrip__videos'
- id = 'remoteVideos'>
- <span
- className = 'videocontainer'
- id = 'localVideoContainer'>
- <div className = 'videocontainer__background' />
- <span id = 'localVideoWrapper' />
- <audio
- autoPlay = { true }
- id = 'localAudio'
- muted = { true } />
- <div className = 'videocontainer__toolbar' />
- <div className = 'videocontainer__toptoolbar' />
- <div
- className
- = 'videocontainer__hoverOverlay' />
- </span>
- <audio
- id = 'userJoined'
- preload = 'auto'
- src = 'sounds/joined.wav' />
- <audio
- id = 'userLeft'
- preload = 'auto'
- src = 'sounds/left.wav' />
- </div>
- </div>
- </div>
-
- <OverlayContainer />
- </div>
- );
- }
- }
-
- export default reactReduxConnect()(Conference);
|