import React, { Component } from 'react'; import PropTypes from 'prop-types'; import injectWbResizeEvent from '/imports/ui/components/presentation/resize-wrapper/component'; import { defineMessages, injectIntl } from 'react-intl'; import { Meteor } from 'meteor/meteor'; import Styled from './styles'; import AudioService from '/imports/ui/components/audio/service'; import Checkbox from '/imports/ui/components/common/checkbox/component'; 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: '', checkedAnswers: [], }; this.pollingContainer = null; this.play = this.play.bind(this); this.handleUpdateResponseInput = this.handleUpdateResponseInput.bind(this); this.renderButtonAnswers = this.renderButtonAnswers.bind(this); this.handleCheckboxChange = this.handleCheckboxChange.bind(this); this.handleSubmit = this.handleSubmit.bind(this); this.renderCheckboxAnswers = this.renderCheckboxAnswers.bind(this); this.handleMessageKeyDown = this.handleMessageKeyDown.bind(this); } componentDidMount() { this.play(); this.pollingContainer && this.pollingContainer?.focus(); } 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 }); } handleSubmit(pollId) { const { handleVote } = this.props; const { checkedAnswers } = this.state; handleVote(pollId, checkedAnswers); } handleCheckboxChange(pollId, answerId) { const { checkedAnswers } = this.state; if (checkedAnswers.includes(answerId)) { checkedAnswers.splice(checkedAnswers.indexOf(answerId), 1); } else { checkedAnswers.push(answerId); } checkedAnswers.sort(); this.setState({ checkedAnswers }); } handleMessageKeyDown(e) { const { poll, handleTypedVote, } = this.props; const { typedAns, } = this.state; if (e.keyCode === 13 && typedAns.length > 0) { handleTypedVote(poll.pollId, typedAns); } } renderButtonAnswers() { 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); return (