/* eslint-disable lines-around-comment */ import DropdownMenu, { DropdownItem, DropdownItemGroup } from '@atlaskit/dropdown-menu'; import React from 'react'; import { WithTranslation } from 'react-i18next'; // @ts-ignore import keyboardShortcut from '../../../../../modules/keyboardshortcut/keyboardshortcut'; // @ts-ignore import { AbstractDialogTab } from '../../../base/dialog'; // @ts-ignore import type { Props as AbstractDialogTabProps } from '../../../base/dialog'; import { translate } from '../../../base/i18n/functions'; import Checkbox from '../../../base/ui/components/web/Checkbox'; // @ts-ignore import TouchmoveHack from '../../../chat/components/web/TouchmoveHack'; // @ts-ignore import { MAX_ACTIVE_PARTICIPANTS } from '../../../filmstrip'; // @ts-ignore import { SS_DEFAULT_FRAME_RATE } from '../../constants'; /** * The type of the React {@code Component} props of {@link MoreTab}. */ export type Props = AbstractDialogTabProps & WithTranslation & { /** * The currently selected desktop share frame rate in the frame rate select dropdown. */ currentFramerate: string, /** * The currently selected language to display in the language select * dropdown. */ currentLanguage: string, /** * All available desktop capture frame rates. */ desktopShareFramerates: Array, /** * Whether to show hide self view setting. */ disableHideSelfView: boolean, /** * The types of enabled notifications that can be configured and their specific visibility. */ enabledNotifications: Object, /** * Whether or not follow me is currently active (enabled by some other participant). */ followMeActive: boolean, /** * Whether or not to hide self-view screen. */ hideSelfView: boolean, /** * All available languages to display in the language select dropdown. */ languages: Array, /** * Whether or not to display the language select dropdown. */ showLanguageSettings: boolean, /** * Whether or not to display moderator-only settings. */ showModeratorSettings: boolean, /** * Whether or not to display notifications settings. */ showNotificationsSettings: boolean, /** * Whether or not to show prejoin screen. */ showPrejoinPage: boolean, /** * Whether or not to display the prejoin settings section. */ showPrejoinSettings: boolean, /** * Invoked to obtain translated strings. */ t: Function }; /** * The type of the React {@code Component} state of {@link MoreTab}. */ type State = { /** * Whether or not the desktop share frame rate select dropdown is open. */ isFramerateSelectOpen: boolean, /** * Whether or not the language select dropdown is open. */ isLanguageSelectOpen: boolean }; /** * React {@code Component} for modifying language and moderator settings. * * @augments Component */ class MoreTab extends AbstractDialogTab { /** * Initializes a new {@code MoreTab} instance. * * @param {Object} props - The read-only properties with which the new * instance is to be initialized. */ constructor(props: Props) { super(props); // @ts-ignore this.state = { isFramerateSelectOpen: false, isLanguageSelectOpen: false, isMaxStageParticipantsOpen: false }; // Bind event handler so it is only bound once for every instance. this._onFramerateDropdownOpenChange = this._onFramerateDropdownOpenChange.bind(this); this._onFramerateItemSelect = this._onFramerateItemSelect.bind(this); this._onLanguageDropdownOpenChange = this._onLanguageDropdownOpenChange.bind(this); this._onLanguageItemSelect = this._onLanguageItemSelect.bind(this); this._onEnabledNotificationsChanged = this._onEnabledNotificationsChanged.bind(this); this._onShowPrejoinPageChanged = this._onShowPrejoinPageChanged.bind(this); this._onKeyboardShortcutEnableChanged = this._onKeyboardShortcutEnableChanged.bind(this); this._onHideSelfViewChanged = this._onHideSelfViewChanged.bind(this); this._renderMaxStageParticipantsSelect = this._renderMaxStageParticipantsSelect.bind(this); this._onMaxStageParticipantsSelect = this._onMaxStageParticipantsSelect.bind(this); this._onMaxStageParticipantsOpenChange = this._onMaxStageParticipantsOpenChange.bind(this); } /** * Implements React's {@link Component#render()}. * * @inheritdoc * @returns {ReactElement} */ render() { const content = []; content.push(this._renderSettingsLeft()); content.push(this._renderSettingsRight()); return (
{ content }
); } /** * Callback invoked to toggle display of the desktop share framerate select dropdown. * * @param {Object} event - The event for opening or closing the dropdown. * @private * @returns {void} */ _onFramerateDropdownOpenChange({ isOpen }: {isOpen: boolean}) { // @ts-ignore this.setState({ isFramerateSelectOpen: isOpen }); } /** * Callback invoked to select a frame rate from the select dropdown. * * @param {Object} e - The key event to handle. * @private * @returns {void} */ _onFramerateItemSelect(e: React.ChangeEvent) { const frameRate = e.currentTarget.getAttribute('data-framerate'); super._onChange({ currentFramerate: frameRate }); } /** * Callback invoked to toggle display of the language select dropdown. * * @param {Object} event - The event for opening or closing the dropdown. * @private * @returns {void} */ _onLanguageDropdownOpenChange({ isOpen }: {isOpen: boolean}) { // @ts-ignore this.setState({ isLanguageSelectOpen: isOpen }); } /** * Callback invoked to select a language from select dropdown. * * @param {Object} e - The key event to handle. * * @returns {void} */ _onLanguageItemSelect(e: React.ChangeEvent) { const language = e.currentTarget.getAttribute('data-language'); super._onChange({ currentLanguage: language }); } /** * Callback invoked to select if the lobby * should be shown. * * @param {Object} e - The key event to handle. * * @returns {void} */ _onShowPrejoinPageChanged({ target: { checked } }: React.ChangeEvent) { super._onChange({ showPrejoinPage: checked }); } /** * Callback invoked to select if the given type of * notifications should be shown. * * @param {Object} e - The key event to handle. * @param {string} type - The type of the notification. * * @returns {void} */ _onEnabledNotificationsChanged({ target: { checked } }: React.ChangeEvent, type: any) { super._onChange({ enabledNotifications: { // @ts-ignore ...this.props.enabledNotifications, [type]: checked } }); } /** * Callback invoked to select if global keyboard shortcuts * should be enabled. * * @param {Object} e - The key event to handle. * * @returns {void} */ _onKeyboardShortcutEnableChanged({ target: { checked } }: React.ChangeEvent) { keyboardShortcut.enable(checked); super._onChange({ keyboardShortcutEnable: checked }); } /** * Callback invoked to select if hide self view should be enabled. * * @param {Object} e - The key event to handle. * * @returns {void} */ _onHideSelfViewChanged({ target: { checked } }: React.ChangeEvent) { super._onChange({ hideSelfView: checked }); } /** * Callback invoked to toggle display of the max stage participants select dropdown. * * @param {Object} event - The event for opening or closing the dropdown. * @private * @returns {void} */ _onMaxStageParticipantsOpenChange({ isOpen }: {isOpen: boolean}) { // @ts-ignore this.setState({ isMaxStageParticipantsOpen: isOpen }); } /** * Callback invoked to select a max number of stage participants from the select dropdown. * * @param {Object} e - The key event to handle. * @private * @returns {void} */ _onMaxStageParticipantsSelect(e: React.ChangeEvent) { const maxParticipants = e.currentTarget.getAttribute('data-maxparticipants'); super._onChange({ maxStageParticipants: maxParticipants }); } /** * Returns the React Element for the desktop share frame rate dropdown. * * @returns {ReactElement} */ _renderFramerateSelect() { // @ts-ignore const { currentFramerate, desktopShareFramerates, t } = this.props; const frameRateItems = desktopShareFramerates.map((frameRate: string) => ( { `${frameRate} ${t('settings.framesPerSecond')}` } )); return (

{ t('settings.desktopShareFramerate') }

{ frameRateItems }
{ parseInt(currentFramerate, 10) > SS_DEFAULT_FRAME_RATE ? t('settings.desktopShareHighFpsWarning') : t('settings.desktopShareWarning') }
); } /** * Returns the React Element for keyboardShortcut settings. * * @private * @returns {ReactElement} */ _renderKeyboardShortcutCheckbox() { // @ts-ignore const { t } = this.props; return (

{ t('keyboardShortcuts.keyboardShortcuts') }

); } /** * Returns the React Element for self view setting. * * @private * @returns {ReactElement} */ _renderSelfViewCheckbox() { // @ts-ignore const { hideSelfView, t } = this.props; return (

{ t('settings.selfView') }

); } /** * Returns the menu item for changing displayed language. * * @private * @returns {ReactElement} */ _renderLanguageSelect() { const { currentLanguage, languages, t // @ts-ignore } = this.props; const languageItems = languages.map((language: string) => ( { t(`languages:${language}`) } )); return (

{ t('settings.language') }

{ languageItems }
); } /** * Returns the React Element for modifying prejoin screen settings. * * @private * @returns {ReactElement} */ _renderPrejoinScreenSettings() { // @ts-ignore const { t, showPrejoinPage } = this.props; return (

{ t('prejoin.premeeting') }

); } /** * Returns the React Element for modifying the enabled notifications settings. * * @private * @returns {ReactElement} */ _renderNotificationsSettings() { // @ts-ignore const { t, enabledNotifications } = this.props; return (

{ t('notify.displayNotifications') }

{ Object.keys(enabledNotifications).map(key => ( this._onEnabledNotificationsChanged(e, key) } /> )) }
); } /** * Returns the React Element for the max stage participants dropdown. * * @returns {ReactElement} */ _renderMaxStageParticipantsSelect() { // @ts-ignore const { maxStageParticipants, t, stageFilmstripEnabled } = this.props; if (!stageFilmstripEnabled) { return null; } const maxParticipantsItems = Array(MAX_ACTIVE_PARTICIPANTS).fill(0) .map((no, index) => ( {index + 1} )); return (

{ t('settings.maxStageParticipants') }

{ maxParticipantsItems }
); } /** * Returns the React element that needs to be displayed on the right half of the more tabs. * * @private * @returns {ReactElement} */ _renderSettingsRight() { // @ts-ignore const { showLanguageSettings } = this.props; return (
{ showLanguageSettings && this._renderLanguageSelect() } { this._renderFramerateSelect() } { this._renderMaxStageParticipantsSelect() }
); } /** * Returns the React element that needs to be displayed on the left half of the more tabs. * * @returns {ReactElement} */ _renderSettingsLeft() { // @ts-ignore const { disableHideSelfView, showNotificationsSettings, showPrejoinSettings } = this.props; return (
{ showPrejoinSettings && this._renderPrejoinScreenSettings() } { showNotificationsSettings && this._renderNotificationsSettings() } { this._renderKeyboardShortcutCheckbox() } { !disableHideSelfView && this._renderSelfViewCheckbox() }
); } } // @ts-ignore export default translate(MoreTab);