| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 | 
							- /* global interfaceConfig */
 - 
 - import React from 'react';
 - 
 - import { translate } from '../../base/i18n';
 - import { Platform, Watermarks } from '../../base/react';
 - import { connect } from '../../base/redux';
 - import { CalendarList } from '../../calendar-sync';
 - import { RecentList } from '../../recent-list';
 - import { SettingsButton, SETTINGS_TABS } from '../../settings';
 - 
 - import { AbstractWelcomePage, _mapStateToProps } from './AbstractWelcomePage';
 - import Tabs from './Tabs';
 - 
 - /**
 -  * The Web container rendering the welcome page.
 -  *
 -  * @extends AbstractWelcomePage
 -  */
 - class WelcomePage extends AbstractWelcomePage {
 -     /**
 -      * Default values for {@code WelcomePage} component's properties.
 -      *
 -      * @static
 -      */
 -     static defaultProps = {
 -         _room: ''
 -     };
 - 
 -     /**
 -      * Initializes a new WelcomePage instance.
 -      *
 -      * @param {Object} props - The read-only properties with which the new
 -      * instance is to be initialized.
 -      */
 -     constructor(props) {
 -         super(props);
 - 
 -         this.state = {
 -             ...this.state,
 - 
 -             generateRoomnames:
 -                 interfaceConfig.GENERATE_ROOMNAMES_ON_WELCOME_PAGE,
 -             selectedTab: 0
 -         };
 - 
 -         /**
 -          * The HTML Element used as the container for additional content. Used
 -          * for directly appending the additional content template to the dom.
 -          *
 -          * @private
 -          * @type {HTMLTemplateElement|null}
 -          */
 -         this._additionalContentRef = null;
 - 
 -         /**
 -          * The template to use as the main content for the welcome page. If
 -          * not found then only the welcome page head will display.
 -          *
 -          * @private
 -          * @type {HTMLTemplateElement|null}
 -          */
 -         this._additionalContentTemplate = document.getElementById(
 -             'welcome-page-additional-content-template');
 - 
 -         // Bind event handlers so they are only bound once per instance.
 -         this._onFormSubmit = this._onFormSubmit.bind(this);
 -         this._onRoomChange = this._onRoomChange.bind(this);
 -         this._setAdditionalContentRef
 -             = this._setAdditionalContentRef.bind(this);
 -         this._onTabSelected = this._onTabSelected.bind(this);
 -     }
 - 
 -     /**
 -      * Implements React's {@link Component#componentDidMount()}. Invoked
 -      * immediately after this component is mounted.
 -      *
 -      * @inheritdoc
 -      * @returns {void}
 -      */
 -     componentDidMount() {
 -         document.body.classList.add('welcome-page');
 - 
 -         if (this.state.generateRoomnames) {
 -             this._updateRoomname();
 -         }
 - 
 -         if (this._shouldShowAdditionalContent()) {
 -             this._additionalContentRef.appendChild(
 -                 this._additionalContentTemplate.content.cloneNode(true));
 -         }
 -     }
 - 
 -     /**
 -      * Removes the classname used for custom styling of the welcome page.
 -      *
 -      * @inheritdoc
 -      * @returns {void}
 -      */
 -     componentWillUnmount() {
 -         super.componentWillUnmount();
 - 
 -         document.body.classList.remove('welcome-page');
 -     }
 - 
 -     /**
 -      * Implements React's {@link Component#render()}.
 -      *
 -      * @inheritdoc
 -      * @returns {ReactElement|null}
 -      */
 -     render() {
 -         const { t } = this.props;
 -         const { APP_NAME } = interfaceConfig;
 -         const showAdditionalContent = this._shouldShowAdditionalContent();
 - 
 -         return (
 -             <div
 -                 className = { `welcome ${showAdditionalContent
 -                     ? 'with-content' : 'without-content'}` }
 -                 id = 'welcome_page'>
 -                 <div className = 'welcome-watermark'>
 -                     <Watermarks />
 -                 </div>
 -                 <div className = 'header'>
 -                     <div className = 'welcome-page-settings'>
 -                         <SettingsButton
 -                             defaultTab = { SETTINGS_TABS.CALENDAR } />
 -                     </div>
 -                     <div className = 'header-image' />
 -                     <div className = 'header-text'>
 -                         <h1 className = 'header-text-title'>
 -                             { t('welcomepage.title') }
 -                         </h1>
 -                         <p className = 'header-text-description'>
 -                             { t('welcomepage.appDescription',
 -                                 { app: APP_NAME }) }
 -                         </p>
 -                     </div>
 -                     <div id = 'enter_room'>
 -                         <div className = 'enter-room-input-container'>
 -                             <div className = 'enter-room-title'>
 -                                 { t('welcomepage.enterRoomTitle') }
 -                             </div>
 -                             <form onSubmit = { this._onFormSubmit }>
 -                                 <input
 -                                     autoFocus = { true }
 -                                     className = 'enter-room-input'
 -                                     id = 'enter_room_field'
 -                                     onChange = { this._onRoomChange }
 -                                     placeholder
 -                                         = { this.state.roomPlaceholder }
 -                                     type = 'text'
 -                                     value = { this.state.room } />
 -                             </form>
 -                         </div>
 -                         <div
 -                             className = 'welcome-page-button'
 -                             id = 'enter_room_button'
 -                             onClick = { this._onJoin }>
 -                             { t('welcomepage.go') }
 -                         </div>
 -                     </div>
 -                     { this._renderTabs() }
 -                 </div>
 -                 { showAdditionalContent
 -                     ? <div
 -                         className = 'welcome-page-content'
 -                         ref = { this._setAdditionalContentRef } />
 -                     : null }
 -             </div>
 -         );
 -     }
 - 
 -     /**
 -      * Prevents submission of the form and delegates join logic.
 -      *
 -      * @param {Event} event - The HTML Event which details the form submission.
 -      * @private
 -      * @returns {void}
 -      */
 -     _onFormSubmit(event) {
 -         event.preventDefault();
 - 
 -         this._onJoin();
 -     }
 - 
 -     /**
 -      * Overrides the super to account for the differences in the argument types
 -      * provided by HTML and React Native text inputs.
 -      *
 -      * @inheritdoc
 -      * @override
 -      * @param {Event} event - The (HTML) Event which details the change such as
 -      * the EventTarget.
 -      * @protected
 -      */
 -     _onRoomChange(event) {
 -         super._onRoomChange(event.target.value);
 -     }
 - 
 -     /**
 -      * Callback invoked when the desired tab to display should be changed.
 -      *
 -      * @param {number} tabIndex - The index of the tab within the array of
 -      * displayed tabs.
 -      * @private
 -      * @returns {void}
 -      */
 -     _onTabSelected(tabIndex) {
 -         this.setState({ selectedTab: tabIndex });
 -     }
 - 
 -     /**
 -      * Renders tabs to show previous meetings and upcoming calendar events. The
 -      * tabs are purposefully hidden on mobile browsers.
 -      *
 -      * @returns {ReactElement|null}
 -      */
 -     _renderTabs() {
 -         const isMobileBrowser
 -             = Platform.OS === 'android' || Platform.OS === 'ios';
 - 
 -         if (isMobileBrowser) {
 -             return null;
 -         }
 - 
 -         const { t } = this.props;
 - 
 -         const tabs = [];
 - 
 -         if (CalendarList) {
 -             tabs.push({
 -                 label: t('welcomepage.calendar'),
 -                 content: <CalendarList />
 -             });
 -         }
 - 
 -         tabs.push({
 -             label: t('welcomepage.recentList'),
 -             content: <RecentList />
 -         });
 - 
 -         return (
 -             <Tabs
 -                 onSelect = { this._onTabSelected }
 -                 selected = { this.state.selectedTab }
 -                 tabs = { tabs } />);
 -     }
 - 
 -     /**
 -      * Sets the internal reference to the HTMLDivElement used to hold the
 -      * welcome page content.
 -      *
 -      * @param {HTMLDivElement} el - The HTMLElement for the div that is the root
 -      * of the welcome page content.
 -      * @private
 -      * @returns {void}
 -      */
 -     _setAdditionalContentRef(el) {
 -         this._additionalContentRef = el;
 -     }
 - 
 -     /**
 -      * Returns whether or not additional content should be displayed below
 -      * the welcome page's header for entering a room name.
 -      *
 -      * @private
 -      * @returns {boolean}
 -      */
 -     _shouldShowAdditionalContent() {
 -         return interfaceConfig.DISPLAY_WELCOME_PAGE_CONTENT
 -             && this._additionalContentTemplate
 -             && this._additionalContentTemplate.content
 -             && this._additionalContentTemplate.innerHTML.trim();
 -     }
 - }
 - 
 - export default translate(connect(_mapStateToProps)(WelcomePage));
 
 
  |