/* global interfaceConfig */
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { translate, translateToHTML } from '../../base/i18n';
import OverlayFrame from './OverlayFrame';
/**
 * Implements a React Component for overlay with guidance how to proceed with
 * gUM prompt.
 */
class UserMediaPermissionsOverlay extends Component {
    /**
     * UserMediaPermissionsOverlay component's property types.
     *
     * @static
     */
    static propTypes = {
        /**
         * The browser which is used currently. The text is different for every
         * browser.
         *
         * @public
         * @type {string}
         */
        browser: PropTypes.string,
        /**
         * The function to translate human-readable text.
         *
         * @public
         * @type {Function}
         */
        t: PropTypes.func
    };
    /**
     * Initializes a new SuspendedOverlay instance.
     *
     * @param {Object} props - The read-only properties with which the new
     * instance is to be initialized.
     * @public
     */
    constructor(props) {
        super(props);
        this.state = {
            /**
             * The src value of the image for the policy logo.
             *
             * @type {string}
             */
            policyLogoSrc: interfaceConfig.POLICY_LOGO
        };
    }
    /**
     * Implements React's {@link Component#render()}.
     *
     * @inheritdoc
     * @returns {ReactElement|null}
     */
    render() {
        const { browser, t } = this.props;
        return (
             
                        { translateToHTML(t, 'startupoverlay.policyText') }
                    
                        {
                            t('startupoverlay.title',
                                { postProcess: 'resolveAppName' })
                        }
                    
                    
                        {
                            translateToHTML(t,
                                `userMedia.${browser}GrantPermissions`)
                        }