123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /* @flow */
-
- import Tooltip from '@atlaskit/tooltip';
- import React, { Component } from 'react';
- import { connect } from 'react-redux';
-
- import { translate } from '../../base/i18n';
-
- import { openFeedbackDialog } from '../actions';
-
- /**
- * Defines property types for the FeedbackButton component.
- */
- type FeedbackButtonPropTypes = {
-
- /**
- * The JitsiConference for which the feedback will be about.
- *
- * FIXME define JitsiConference type
- * @type {JitsiConference}
- */
- _conference: Object,
-
- /**
- * Redux store dispatch function.
- */
- dispatch: Dispatch<*>,
-
- /**
- * Invoked to obtain translated strings.
- */
- t: Function,
-
- /**
- * From which side of the button the tooltip should appear from.
- */
- tooltipPosition: String
- }
-
- /**
- * Implements a Web/React Component which renders a feedback button.
- */
- class FeedbackButton extends Component<FeedbackButtonPropTypes> {
- _onClick: Function;
-
- /**
- * 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 (
- <div id = 'feedbackButton'>
- <Tooltip
- description = { this.props.t('welcomepage.sendFeedback') }
- position = { this.props.tooltipPosition } >
- <a
- className = 'button icon-feedback'
- onClick = { this._onClick } />
- </Tooltip>
- </div>
- );
- }
-
- /**
- * 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 translate(connect(_mapStateToProps)(FeedbackButton));
|