import React, { Component } from 'react'; import PropTypes from 'prop-types'; import Button from '/imports/ui/components/button/component'; import injectWbResizeEvent from '/imports/ui/components/presentation/resize-wrapper/component'; import { defineMessages, injectIntl } from 'react-intl'; import cx from 'classnames'; import { Meteor } from 'meteor/meteor'; import { styles } from './styles.scss'; import AudioService from '/imports/ui/components/audio/service'; const MAX_INPUT_CHARS = Meteor.settings.public.poll.maxTypedAnswerLength; const intlMessages = defineMessages({ pollingTitleLabel: { id: 'app.polling.pollingTitle', }, pollAnswerLabel: { id: 'app.polling.pollAnswerLabel', }, pollAnswerDesc: { id: 'app.polling.pollAnswerDesc', }, pollQuestionTitle: { id: 'app.polling.pollQuestionTitle', }, responseIsSecret: { id: 'app.polling.responseSecret', }, responseNotSecret: { id: 'app.polling.responseNotSecret', }, submitLabel: { id: 'app.polling.submitLabel', }, submitAriaLabel: { id: 'app.polling.submitAriaLabel', }, responsePlaceholder: { id: 'app.polling.responsePlaceholder', }, }); const validateInput = (i) => { let _input = i; if (/^\s/.test(_input)) _input = ''; return _input; }; class Polling extends Component { constructor(props) { super(props); this.state = { typedAns: '', }; this.play = this.play.bind(this); this.handleUpdateResponseInput = this.handleUpdateResponseInput.bind(this); this.handleMessageKeyDown = this.handleMessageKeyDown.bind(this); } componentDidMount() { this.play(); } play() { AudioService.playAlertSound(`${Meteor.settings.public.app.cdn + Meteor.settings.public.app.basename + Meteor.settings.public.app.instanceId}` + '/resources/sounds/Poll.mp3'); } handleUpdateResponseInput(e) { this.responseInput.value = validateInput(e.target.value); this.setState({ typedAns: this.responseInput.value }); } handleMessageKeyDown(e) { const { poll, handleTypedVote, } = this.props; const { typedAns, } = this.state; if (e.keyCode === 13 && typedAns.length > 0) { handleTypedVote(poll.pollId, typedAns); } } render() { const { isMeteorConnected, intl, poll, handleVote, handleTypedVote, pollAnswerIds, pollTypes, isDefaultPoll, } = this.props; const { typedAns, } = this.state; if (!poll) return null; const { stackOptions, answers, question, pollType } = poll; const defaultPoll = isDefaultPoll(pollType); const pollAnswerStyles = { [styles.pollingAnswers]: true, [styles.removeColumns]: answers.length === 1, [styles.stacked]: stackOptions, }; return (
{ question.length > 0 && (

{intl.formatMessage(intlMessages.pollQuestionTitle)}

{question}
) } { poll.pollType !== pollTypes.Response && ( { question.length === 0 && (
{intl.formatMessage(intlMessages.pollingTitleLabel)}
) }
{poll.answers.map((pollAnswer) => { const formattedMessageIndex = pollAnswer.key.toLowerCase(); let label = pollAnswer.key; if (defaultPoll && pollAnswerIds[formattedMessageIndex]) { label = intl.formatMessage(pollAnswerIds[formattedMessageIndex]); } return (
); })}
) } { poll.pollType === pollTypes.Response && (
{ this.handleUpdateResponseInput(e); }} onKeyDown={(e) => { this.handleMessageKeyDown(e); }} type="text" className={styles.typedResponseInput} placeholder={intl.formatMessage(intlMessages.responsePlaceholder)} maxLength={MAX_INPUT_CHARS} ref={(r) => { this.responseInput = r; }} />
) }
{intl.formatMessage(poll.secretPoll ? intlMessages.responseIsSecret : intlMessages.responseNotSecret)}
); } } export default injectIntl(injectWbResizeEvent(Polling)); Polling.propTypes = { intl: PropTypes.shape({ formatMessage: PropTypes.func.isRequired, }).isRequired, handleVote: PropTypes.func.isRequired, handleTypedVote: PropTypes.func.isRequired, poll: PropTypes.shape({ pollId: PropTypes.string.isRequired, answers: PropTypes.arrayOf(PropTypes.shape({ id: PropTypes.number.isRequired, key: PropTypes.string.isRequired, }).isRequired).isRequired, }).isRequired, };