| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 | 
							- /* @flow */
 - 
 - import PropTypes from 'prop-types';
 - import React, { Component } from 'react';
 - import { connect } from 'react-redux';
 - 
 - import {
 -     createToolbarEvent,
 -     sendAnalytics
 - } from '../../analytics';
 - import {
 -     getAvatarURL,
 -     getLocalParticipant
 - } from '../../base/participants';
 - import UIEvents from '../../../../service/UI/UIEvents';
 - 
 - import ToolbarButton from './ToolbarButton';
 - 
 - declare var APP: Object;
 - 
 - /**
 -  * The default configuration for the button.
 -  *
 -  * @type {Object}
 -  */
 - const DEFAULT_BUTTON_CONFIGURATION = {
 -     buttonName: 'profile',
 -     classNames: [ 'button' ],
 -     enabled: true,
 -     id: 'toolbar_button_profile',
 -     tooltipKey: 'profile.setDisplayNameLabel'
 - };
 - 
 - /**
 -  * React {@code Component} for the profile button.
 -  *
 -  * @extends Component
 -  */
 - class ProfileButton extends Component<*> {
 -     _onClick: Function;
 - 
 -     /**
 -      * {@code ProfileButton}'s property types.
 -      *
 -      * @static
 -      */
 -     static propTypes = {
 -         /**
 -          * The redux representation of the local participant.
 -          */
 -         _localParticipant: PropTypes.object,
 - 
 -         /**
 -          * Whether the button support clicking or not.
 -          */
 -         _unclickable: PropTypes.bool,
 - 
 -         /**
 -          * Whether the side panel is opened or not.
 -          */
 -         toggled: PropTypes.bool,
 - 
 -         /**
 -          * From which side tooltips should display. Will be re-used for
 -          * displaying the inline dialog for video quality adjustment.
 -          */
 -         tooltipPosition: PropTypes.string
 -     };
 - 
 -     /**
 -      * Initializes a new {@code ProfileButton} instance.
 -      *
 -      * @param {Object} props - The read-only properties with which the new
 -      * instance is to be initialized.
 -      */
 -     constructor(props) {
 -         super(props);
 - 
 -         // Bind event handlers so they are only bound once for every instance.
 -         this._onClick = this._onClick.bind(this);
 -     }
 - 
 -     /**
 -      * Implements React's {@link Component#render()}.
 -      *
 -      * @inheritdoc
 -      * @returns {ReactElement}
 -      */
 -     render() {
 -         const {
 -             _localParticipant,
 -             _unclickable,
 -             tooltipPosition,
 -             toggled
 -         } = this.props;
 -         const buttonConfiguration = {
 -             ...DEFAULT_BUTTON_CONFIGURATION,
 -             unclickable: _unclickable,
 -             toggled
 -         };
 - 
 -         return (
 -             <ToolbarButton
 -                 button = { buttonConfiguration }
 -                 onClick = { this._onClick }
 -                 tooltipPosition = { tooltipPosition }>
 -                 <img
 -                     id = 'avatar'
 -                     src = { getAvatarURL(_localParticipant) } />
 -             </ToolbarButton>
 -         );
 -     }
 - 
 -     /**
 -      * Click handler for the button.
 -      *
 -      * @returns {void}
 -      */
 -     _onClick() {
 -         if (!this.props._unclickable) {
 -             // TODO: Include an 'enable' attribute, which specifies whether
 -             // the profile panel was opened or closed.
 -             sendAnalytics(createToolbarEvent('profile'));
 -             APP.UI.emitEvent(UIEvents.TOGGLE_PROFILE);
 -         }
 -     }
 - }
 - 
 - /**
 -  * Maps (parts of) the Redux state to the associated {@code ProfileButton}
 -  * component's props.
 -  *
 -  * @param {Object} state - The Redux state.
 -  * @private
 -  * @returns {{
 -  *     _localParticipant: Object,
 -  *     _unclickable: boolean
 -  * }}
 -  */
 - function _mapStateToProps(state) {
 -     return {
 -         _localParticipant: getLocalParticipant(state),
 -         _unclickable: !state['features/base/jwt'].isGuest
 -     };
 - }
 - 
 - export default connect(_mapStateToProps)(ProfileButton);
 
 
  |