import React from 'react'; import { connect } from 'react-redux'; import { isMobileBrowser } from '../../base/environment/utils'; import { translate, translateToHTML } from '../../base/i18n/functions'; import Icon from '../../base/icons/components/Icon'; import { IconWarning } from '../../base/icons/svg'; import Watermarks from '../../base/react/components/web/Watermarks'; import getUnsafeRoomText from '../../base/util/getUnsafeRoomText.web'; import CalendarList from '../../calendar-sync/components/CalendarList.web'; import RecentList from '../../recent-list/components/RecentList.web'; import SettingsButton from '../../settings/components/web/SettingsButton'; import { SETTINGS_TABS } from '../../settings/constants'; import { AbstractWelcomePage, IProps, _mapStateToProps } from './AbstractWelcomePage'; import Tabs from './Tabs'; /** * The pattern used to validate room name. * * @type {string} */ export const ROOM_NAME_VALIDATE_PATTERN_STR = '^[^?&:\u0022\u0027%#]+$'; /** * The Web container rendering the welcome page. * * @augments AbstractWelcomePage */ class WelcomePage extends AbstractWelcomePage { _additionalContentRef: HTMLDivElement | null; _additionalToolbarContentRef: HTMLDivElement | null; _additionalCardRef: HTMLDivElement | null; _roomInputRef: HTMLInputElement | null; _additionalCardTemplate: HTMLTemplateElement | null; _additionalContentTemplate: HTMLTemplateElement | null; _additionalToolbarContentTemplate: HTMLTemplateElement | null; _titleHasNotAllowCharacter: boolean; /** * 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: IProps) { super(props); this.state = { ...this.state, generateRoomNames: interfaceConfig.GENERATE_ROOMNAMES_ON_WELCOME_PAGE }; /** * Used To display a warning massage if the title input has no allow character. * * @private * @type {boolean} */ this._titleHasNotAllowCharacter = false; /** * 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; this._roomInputRef = null; /** * The HTML Element used as the container for additional toolbar content. Used * for directly appending the additional content template to the dom. * * @private * @type {HTMLTemplateElement|null} */ this._additionalToolbarContentRef = null; this._additionalCardRef = null; /** * The template to use as the additional card displayed near the main one. * * @private * @type {HTMLTemplateElement|null} */ this._additionalCardTemplate = document.getElementById( 'welcome-page-additional-card-template') as HTMLTemplateElement; /** * 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') as HTMLTemplateElement; /** * The template to use as the additional content for the welcome page header toolbar. * If not found then only the settings icon will be displayed. * * @private * @type {HTMLTemplateElement|null} */ this._additionalToolbarContentTemplate = document.getElementById( 'settings-toolbar-additional-content-template' ) as HTMLTemplateElement; // Bind event handlers so they are only bound once per instance. this._onFormSubmit = this._onFormSubmit.bind(this); this._onRoomChange = this._onRoomChange.bind(this); this._setAdditionalCardRef = this._setAdditionalCardRef.bind(this); this._setAdditionalContentRef = this._setAdditionalContentRef.bind(this); this._setRoomInputRef = this._setRoomInputRef.bind(this); this._setAdditionalToolbarContentRef = this._setAdditionalToolbarContentRef.bind(this); this._renderFooter = this._renderFooter.bind(this); } /** * Implements React's {@link Component#componentDidMount()}. Invoked * immediately after this component is mounted. * * @inheritdoc * @returns {void} */ override componentDidMount() { super.componentDidMount(); document.body.classList.add('welcome-page'); document.title = interfaceConfig.APP_NAME; if (this.state.generateRoomNames) { this._updateRoomName(); } if (this._shouldShowAdditionalContent()) { this._additionalContentRef?.appendChild( this._additionalContentTemplate?.content.cloneNode(true) as Node); } if (this._shouldShowAdditionalToolbarContent()) { this._additionalToolbarContentRef?.appendChild( this._additionalToolbarContentTemplate?.content.cloneNode(true) as Node ); } if (this._shouldShowAdditionalCard()) { this._additionalCardRef?.appendChild( this._additionalCardTemplate?.content.cloneNode(true) as Node ); } } /** * Removes the classname used for custom styling of the welcome page. * * @inheritdoc * @returns {void} */ override componentWillUnmount() { super.componentWillUnmount(); document.body.classList.remove('welcome-page'); } /** * Implements React's {@link Component#render()}. * * @inheritdoc * @returns {ReactElement|null} */ override render() { const { _moderatedRoomServiceUrl, t } = this.props; const { DEFAULT_WELCOME_PAGE_LOGO_URL, DISPLAY_WELCOME_FOOTER } = interfaceConfig; const showAdditionalCard = this._shouldShowAdditionalCard(); const showAdditionalContent = this._shouldShowAdditionalContent(); const showAdditionalToolbarContent = this._shouldShowAdditionalToolbarContent(); const contentClassName = showAdditionalContent ? 'with-content' : 'without-content'; const footerClassName = DISPLAY_WELCOME_FOOTER ? 'with-footer' : 'without-footer'; return (
{showAdditionalToolbarContent ?
: null }

{interfaceConfig.APP_NAME}

{t('welcomepage.headerSubtitle')}
{this._titleHasNotAllowCharacter && (
{t('welcomepage.roomNameAllowedChars')}
)} {this._renderInsecureRoomNameWarning()} {_moderatedRoomServiceUrl && (
{ translateToHTML( t, 'welcomepage.moderatedMessage', { url: _moderatedRoomServiceUrl }) }
)}
{this._renderTabs()}
{showAdditionalCard ?
: null}
{showAdditionalContent ?
: null}
{DISPLAY_WELCOME_FOOTER && this._renderFooter()}
); } /** * Renders the insecure room name warning. * * @inheritdoc */ override _doRenderInsecureRoomNameWarning() { return (
{getUnsafeRoomText(this.props.t, 'welcome')}
); } /** * 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: React.FormEvent) { event.preventDefault(); if (!this._roomInputRef || this._roomInputRef.reportValidity()) { 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 */ // @ts-ignore // eslint-disable-next-line require-jsdoc _onRoomChange(event: React.ChangeEvent) { const specialCharacters = [ '?', '&', ':', '\'', '"', '%', '#', '.' ]; this._titleHasNotAllowCharacter = specialCharacters.some(char => event.target.value.includes(char)); super._onRoomChange(event.target.value); } /** * Renders the footer. * * @returns {ReactElement} */ _renderFooter() { const { t, _deeplinkingCfg: { ios = { downloadLink: undefined }, android = { fDroidUrl: undefined, downloadLink: undefined } } } = this.props; const { downloadLink: iosDownloadLink } = ios; const { fDroidUrl, downloadLink: androidDownloadLink } = android; return (
{t('welcomepage.jitsiOnMobile')}
{ { {
); } /** * Renders tabs to show previous meetings and upcoming calendar events. The * tabs are purposefully hidden on mobile browsers. * * @returns {ReactElement|null} */ _renderTabs() { if (isMobileBrowser()) { return null; } const { _calendarEnabled, _recentListEnabled, t } = this.props; const tabs = []; if (_calendarEnabled) { tabs.push({ id: 'calendar', label: t('welcomepage.upcomingMeetings'), content: }); } if (_recentListEnabled) { tabs.push({ id: 'recent', label: t('welcomepage.recentMeetings'), content: }); } if (tabs.length === 0) { return null; } return ( ); } /** * Sets the internal reference to the HTMLDivElement used to hold the * additional card shown near the tabs card. * * @param {HTMLDivElement} el - The HTMLElement for the div that is the root * of the welcome page content. * @private * @returns {void} */ _setAdditionalCardRef(el: HTMLDivElement) { this._additionalCardRef = el; } /** * 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: HTMLDivElement) { this._additionalContentRef = el; } /** * Sets the internal reference to the HTMLDivElement used to hold the * toolbar additional content. * * @param {HTMLDivElement} el - The HTMLElement for the div that is the root * of the additional toolbar content. * @private * @returns {void} */ _setAdditionalToolbarContentRef(el: HTMLDivElement) { this._additionalToolbarContentRef = el; } /** * Sets the internal reference to the HTMLInputElement used to hold the * welcome page input room element. * * @param {HTMLInputElement} el - The HTMLElement for the input of the room name on the welcome page. * @private * @returns {void} */ _setRoomInputRef(el: HTMLInputElement) { this._roomInputRef = el; } /** * Returns whether or not an additional card should be displayed near the tabs. * * @private * @returns {boolean} */ _shouldShowAdditionalCard() { return interfaceConfig.DISPLAY_WELCOME_PAGE_ADDITIONAL_CARD && this._additionalCardTemplate?.content && this._additionalCardTemplate?.innerHTML?.trim(); } /** * 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?.content && this._additionalContentTemplate?.innerHTML?.trim(); } /** * Returns whether or not additional content should be displayed inside * the header toolbar. * * @private * @returns {boolean} */ _shouldShowAdditionalToolbarContent() { return interfaceConfig.DISPLAY_WELCOME_PAGE_TOOLBAR_ADDITIONAL_CONTENT && this._additionalToolbarContentTemplate?.content && this._additionalToolbarContentTemplate?.innerHTML.trim(); } } export default translate(connect(_mapStateToProps)(WelcomePage));