123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- /* global interfaceConfig */
-
- import { FieldTextAreaStateless } from '@atlaskit/field-text-area';
- import StarIcon from '@atlaskit/icon/glyph/star';
- import StarFilledIcon from '@atlaskit/icon/glyph/star-filled';
- import PropTypes from 'prop-types';
- import React, { Component } from 'react';
- import { connect } from 'react-redux';
-
- import {
- createFeedbackOpenEvent,
- sendAnalytics
- } from '../../analytics';
- import { Dialog } from '../../base/dialog';
- import { translate } from '../../base/i18n';
-
- import { cancelFeedback, submitFeedback } from '../actions';
-
- const scoreAnimationClass
- = interfaceConfig.ENABLE_FEEDBACK_ANIMATION ? 'shake-rotate' : '';
-
- /**
- * The scores to display for selecting. The score is the index in the array and
- * the value of the index is a translation key used for display in the dialog.
- *
- * @types {string[]}
- */
- const SCORES = [
- 'feedback.veryBad',
- 'feedback.bad',
- 'feedback.average',
- 'feedback.good',
- 'feedback.veryGood'
- ];
-
- /**
- * A React {@code Component} for displaying a dialog to rate the current
- * conference quality, write a message describing the experience, and submit
- * the feedback.
- *
- * @extends Component
- */
- class FeedbackDialog extends Component {
- /**
- * {@code FeedbackDialog} component's property types.
- *
- * @static
- */
- static propTypes = {
- /**
- * The cached feedback message, if any, that was set when closing a
- * previous instance of {@code FeedbackDialog}.
- */
- _message: PropTypes.string,
-
- /**
- * The cached feedback score, if any, that was set when closing a
- * previous instance of {@code FeedbackDialog}.
- */
- _score: PropTypes.number,
-
- /**
- * The JitsiConference that is being rated. The conference is passed in
- * because feedback can occur after a conference has been left, so
- * references to it may no longer exist in redux.
- *
- * @type {JitsiConference}
- */
- conference: PropTypes.object,
-
- /**
- * Invoked to signal feedback submission or canceling.
- */
- dispatch: PropTypes.func,
-
- /**
- * Callback invoked when {@code FeedbackDialog} is unmounted.
- */
- onClose: PropTypes.func,
-
- /**
- * Invoked to obtain translated strings.
- */
- t: PropTypes.func
- };
-
- /**
- * Initializes a new {@code FeedbackDialog} instance.
- *
- * @param {Object} props - The read-only React {@code Component} props with
- * which the new instance is to be initialized.
- */
- constructor(props) {
- super(props);
-
- const { _message, _score } = this.props;
-
- this.state = {
- /**
- * The currently entered feedback message.
- *
- * @type {string}
- */
- message: _message,
-
- /**
- * The score selection index which is currently being hovered. The
- * value -1 is used as a sentinel value to match store behavior of
- * using -1 for no score having been selected.
- *
- * @type {number}
- */
- mousedOverScore: -1,
-
- /**
- * The currently selected score selection index. The score will not
- * be 0 indexed so subtract one to map with SCORES.
- *
- * @type {number}
- */
- score: _score > -1 ? _score - 1 : _score
- };
-
- /**
- * An array of objects with click handlers for each of the scores listed
- * in SCORES. This pattern is used for binding event handlers only once
- * for each score selection icon.
- *
- * @type {Object[]}
- */
- this._scoreClickConfigurations = SCORES.map((textKey, index) => {
- return {
- _onClick: () => this._onScoreSelect(index),
- _onMouseOver: () => this._onScoreMouseOver(index)
- };
- });
-
- // Bind event handlers so they are only bound once for every instance.
- this._onCancel = this._onCancel.bind(this);
- this._onMessageChange = this._onMessageChange.bind(this);
- this._onScoreContainerMouseLeave
- = this._onScoreContainerMouseLeave.bind(this);
- this._onSubmit = this._onSubmit.bind(this);
- }
-
- /**
- * Emits an analytics event to notify feedback has been opened.
- *
- * @inheritdoc
- */
- componentDidMount() {
- sendAnalytics(createFeedbackOpenEvent());
- }
-
- /**
- * Invokes the onClose callback, if defined, to notify of the close event.
- *
- * @inheritdoc
- */
- componentWillUnmount() {
- if (this.props.onClose) {
- this.props.onClose();
- }
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const { message, mousedOverScore, score } = this.state;
- const scoreToDisplayAsSelected
- = mousedOverScore > -1 ? mousedOverScore : score;
-
- const scoreIcons = this._scoreClickConfigurations.map(
- (config, index) => {
- const isFilled = index <= scoreToDisplayAsSelected;
- const activeClass = isFilled ? 'active' : '';
- const className
- = `star-btn ${scoreAnimationClass} ${activeClass}`;
-
- return (
- <a
- className = { className }
- key = { index }
- onClick = { config._onClick }
- onMouseOver = { config._onMouseOver }>
- { isFilled
- ? <StarFilledIcon
- label = 'star-filled'
- size = 'xlarge' />
- : <StarIcon
- label = 'star'
- size = 'xlarge' /> }
- </a>
- );
- });
-
- const { t } = this.props;
-
- return (
- <Dialog
- okTitleKey = 'dialog.Submit'
- onCancel = { this._onCancel }
- onSubmit = { this._onSubmit }
- titleKey = 'feedback.rateExperience'>
- <div className = 'feedback-dialog'>
- <div className = 'rating'>
- <div className = 'star-label'>
- <p id = 'starLabel'>
- { t(SCORES[scoreToDisplayAsSelected]) }
- </p>
- </div>
- <div
- className = 'stars'
- onMouseLeave = { this._onScoreContainerMouseLeave }>
- { scoreIcons }
- </div>
- </div>
- <div className = 'details'>
- <FieldTextAreaStateless
- autoFocus = { true }
- className = 'input-control'
- id = 'feedbackTextArea'
- isLabelHidden = { true }
- onChange = { this._onMessageChange }
- placeholder = { t('dialog.feedbackHelp') }
- shouldFitContainer = { true }
- value = { message } />
- </div>
- </div>
- </Dialog>
- );
- }
-
- /**
- * Dispatches an action notifying feedback was not submitted. The submitted
- * score will have one added as the rest of the app does not expect 0
- * indexing.
- *
- * @private
- * @returns {boolean} Returns true to close the dialog.
- */
- _onCancel() {
- const { message, score } = this.state;
- const scoreToSubmit = score > -1 ? score + 1 : score;
-
- this.props.dispatch(cancelFeedback(scoreToSubmit, message));
-
- return true;
- }
-
- /**
- * Updates the known entered feedback message.
- *
- * @param {Object} event - The DOM event from updating the textfield for the
- * feedback message.
- * @private
- * @returns {void}
- */
- _onMessageChange(event) {
- this.setState({ message: event.target.value });
- }
-
- /**
- * Updates the currently selected score.
- *
- * @param {number} score - The index of the selected score in SCORES.
- * @private
- * @returns {void}
- */
- _onScoreSelect(score) {
- this.setState({ score });
- }
-
- /**
- * Sets the currently hovered score to null to indicate no hover is
- * occurring.
- *
- * @private
- * @returns {void}
- */
- _onScoreContainerMouseLeave() {
- this.setState({ mousedOverScore: -1 });
- }
-
- /**
- * Updates the known state of the score icon currently behind hovered over.
- *
- * @param {number} mousedOverScore - The index of the SCORES value currently
- * being moused over.
- * @private
- * @returns {void}
- */
- _onScoreMouseOver(mousedOverScore) {
- this.setState({ mousedOverScore });
- }
-
- /**
- * Dispatches the entered feedback for submission. The submitted score will
- * have one added as the rest of the app does not expect 0 indexing.
- *
- * @private
- * @returns {boolean} Returns true to close the dialog.
- */
- _onSubmit() {
- const { conference, dispatch } = this.props;
- const { message, score } = this.state;
-
- const scoreToSubmit = score > -1 ? score + 1 : score;
-
- dispatch(submitFeedback(scoreToSubmit, message, conference));
-
- return true;
- }
- }
-
- /**
- * Maps (parts of) the Redux state to the associated {@code FeedbackDialog}'s
- * props.
- *
- * @param {Object} state - The Redux state.
- * @private
- * @returns {{
- * }}
- */
- function _mapStateToProps(state) {
- const { message, score } = state['features/feedback'];
-
- return {
- /**
- * The cached feedback message, if any, that was set when closing a
- * previous instance of {@code FeedbackDialog}.
- *
- * @type {string}
- */
- _message: message,
-
- /**
- * The currently selected score selection index.
- *
- * @type {number}
- */
- _score: score
- };
- }
-
- export default translate(connect(_mapStateToProps)(FeedbackDialog));
|