| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | /* @flow */
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { openFeedbackDialog } from '../actions';
/**
 * Implements a Web/React Component which renders a feedback button.
 */
class FeedbackButton extends Component {
    _onClick: Function;
    static propTypes = {
        /**
         * The JitsiConference for which the feedback will be about.
         *
         * @type {JitsiConference}
         */
        _conference: React.PropTypes.object
    };
    /**
     * Initializes a new FeedbackButton instance.
     *
     * @param {Object} props - The read-only properties with which the new
     * instance is to be initialized.
     */
    constructor(props: Object) {
        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() {
        return (
            <a
                className = 'button icon-feedback'
                id = 'feedbackButton'
                onClick = { this._onClick } />
        );
    }
    /**
     * Dispatches an action to open a dialog requesting call feedback.
     *
     * @private
     * @returns {void}
     */
    _onClick() {
        const { _conference, dispatch } = this.props;
        dispatch(openFeedbackDialog(_conference));
    }
}
/**
 * Maps (parts of) the Redux state to the associated Conference's props.
 *
 * @param {Object} state - The Redux state.
 * @private
 * @returns {{
 *     _toolboxVisible: boolean
 * }}
 */
function _mapStateToProps(state) {
    return {
        /**
         * The JitsiConference for which the feedback will be about.
         *
         * @private
         * @type {JitsiConference}
         */
        _conference: state['features/base/conference'].conference
    };
}
export default connect(_mapStateToProps)(FeedbackButton);
 |