| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 | // @flow
import Tabs from '@atlaskit/tabs';
import React, { Component } from 'react';
import { StatelessDialog } from '../../../base/dialog';
import { translate } from '../../../base/i18n';
const logger = require('jitsi-meet-logger').getLogger(__filename);
/**
 * The type of the React {@code Component} props of {@link DialogWithTabs}.
 */
export type Props = {
    /**
     * Function that closes the dialog.
     */
    closeDialog: Function,
    /**
     * Which settings tab should be initially displayed. If not defined then
     * the first tab will be displayed.
     */
    defaultTab: number,
    /**
     * Disables dismissing the dialog when the blanket is clicked. Enabled
     * by default.
     */
    disableBlanketClickDismiss: boolean,
    /**
     * Callback invoked when the Save button has been pressed.
     */
    onSubmit: Function,
    /**
     * Invoked to obtain translated strings.
     */
    t: Function,
    /**
     * Information about the tabs that will be rendered.
     */
    tabs: Array<Object>
};
/**
 * The type of the React {@code Component} state of {@link DialogWithTabs}.
 */
type State = {
    /**
     * An array of the states of the tabs.
     */
    tabStates: Array<Object>
};
/**
 * A React {@code Component} for displaying a dialog with tabs.
 *
 * @extends Component
 */
class DialogWithTabs extends Component<Props, State> {
    /**
     * Initializes a new {@code DialogWithTabs} instance.
     *
     * @param {Object} props - The read-only React {@code Component} props with
     * which the new instance is to be initialized.
     */
    constructor(props: Props) {
        super(props);
        this.state = {
            tabStates: this.props.tabs.map(tab => tab.props)
        };
        this._onSubmit = this._onSubmit.bind(this);
        this._onTabStateChange = this._onTabStateChange.bind(this);
    }
    /**
     * Implements React's {@link Component#render()}.
     *
     * @inheritdoc
     * @returns {ReactElement}
     */
    render() {
        const onCancel = this.props.closeDialog;
        return (
            <StatelessDialog
                disableBlanketClickDismiss
                    = { this.props.disableBlanketClickDismiss }
                onCancel = { onCancel }
                onSubmit = { this._onSubmit }
                titleKey = 'settings.title'>
                <div className = 'settings-dialog'>
                    { this._renderTabs() }
                </div>
            </StatelessDialog>
        );
    }
    /**
     * Renders the tabs from the tab information passed on props.
     *
     * @returns {void}
     */
    _renderTabs() {
        const { defaultTab = 0, t, tabs } = this.props;
        if (tabs.length === 1) {
            return this._renderTab({
                ...tabs[0],
                tabId: 0
            });
        }
        if (tabs.length > 1) {
            return (
                <Tabs
                    tabs = {
                        tabs.map(({ component, label, styles }, idx) => {
                            return {
                                content: this._renderTab({
                                    component,
                                    styles,
                                    tabId: idx
                                }),
                                defaultSelected: defaultTab === idx,
                                label: t(label)
                            };
                        })
                    } />);
        }
        logger.warn('No settings tabs configured to display.');
        return null;
    }
    /**
     * Renders a tab from the tab information passed as parameters.
     *
     * @param {Object} tabInfo - Information about the tab.
     * @returns {Component} - The tab.
     */
    _renderTab({ component, styles, tabId }) {
        const { closeDialog } = this.props;
        const TabComponent = component;
        return (
            <div className = { styles }>
                <TabComponent
                    closeDialog = { closeDialog }
                    onTabStateChange
                        = { this._onTabStateChange }
                    tabId = { tabId }
                    { ...this.state.tabStates[tabId] } />
            </div>);
    }
    _onTabStateChange: (number, Object) => void;
    /**
     * Changes the state for a tab.
     *
     * @param {number} tabId - The id of the tab which state will be changed.
     * @param {Object} state - The new state.
     * @returns {void}
     */
    _onTabStateChange(tabId, state) {
        const tabStates = [ ...this.state.tabStates ];
        tabStates[tabId] = state;
        this.setState({ tabStates });
    }
    _onSubmit: () => void;
    /**
     * Submits the information filled in the dialog.
     *
     * @returns {void}
     */
    _onSubmit() {
        const { onSubmit, tabs } = this.props;
        tabs.forEach(({ submit }, idx) => {
            submit(this.state.tabStates[idx]);
        });
        onSubmit();
    }
}
export default translate(DialogWithTabs);
 |