import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import _ from 'lodash'; import { defineMessages, injectIntl } from 'react-intl'; import Button from '/imports/ui/components/button/component'; import caseInsensitiveReducer from '/imports/utils/caseInsensitiveReducer'; import { styles } from './styles'; import Service from './service'; const intlMessages = defineMessages({ usersTitle: { id: 'app.poll.liveResult.usersTitle', description: 'heading label for poll users', }, responsesTitle: { id: 'app.poll.liveResult.responsesTitle', description: 'heading label for poll responses', }, publishLabel: { id: 'app.poll.publishLabel', description: 'label for the publish button', }, backLabel: { id: 'app.poll.backLabel', description: 'label for the return to poll options button', }, doneLabel: { id: 'app.createBreakoutRoom.doneLabel', description: 'label shown when all users have responded', }, waitingLabel: { id: 'app.poll.waitingLabel', description: 'label shown while waiting for responses', }, }); const getResponseString = (obj) => { const { children } = obj.props; if (typeof children !== 'string') { return getResponseString(children[1]); } return children; }; class LiveResult extends PureComponent { static getDerivedStateFromProps(nextProps) { const { currentPoll, intl, pollAnswerIds, usernames, isDefaultPoll, } = nextProps; if (!currentPoll) return null; const { answers, responses, users, numRespondents, pollType } = currentPoll; const defaultPoll = isDefaultPoll(pollType); const currentPollQuestion = (currentPoll.question) ? currentPoll.question : ''; let userAnswers = responses ? [...users, ...responses.map(u => u.userId)] : [...users]; userAnswers = userAnswers.map(id => usernames[id]) .map((user) => { let answer = ''; if (responses) { const response = responses.find(r => r.userId === user.userId); if (response) answer = answers[response.answerId].key; } return { name: user.name, answer, }; }) .sort(Service.sortUsers) .reduce((acc, user) => { const formattedMessageIndex = user.answer.toLowerCase(); return ([ ...acc, ( {user.name} { defaultPoll && pollAnswerIds[formattedMessageIndex] ? intl.formatMessage(pollAnswerIds[formattedMessageIndex]) : user.answer } ), ]); }, []); const pollStats = []; answers.reduce(caseInsensitiveReducer, []).map((obj) => { const formattedMessageIndex = obj.key.toLowerCase(); const pct = Math.round(obj.numVotes / numRespondents * 100); const pctFotmatted = `${Number.isNaN(pct) ? 0 : pct}%`; const calculatedWidth = { width: pctFotmatted, }; return pollStats.push(
{ defaultPoll && pollAnswerIds[formattedMessageIndex] ? intl.formatMessage(pollAnswerIds[formattedMessageIndex]) : obj.key }
{obj.numVotes || 0}
{pctFotmatted}
, ); }); return { userAnswers, pollStats, currentPollQuestion, }; } constructor(props) { super(props); this.state = { userAnswers: null, pollStats: null, currentPollQuestion: null, }; } render() { const { isMeteorConnected, intl, stopPoll, handleBackClick, currentPoll, } = this.props; const { userAnswers, pollStats, currentPollQuestion } = this.state; let waiting; let userCount = 0; let respondedCount = 0; if (userAnswers) { userCount = userAnswers.length; userAnswers.map((user) => { const response = getResponseString(user); if (response === '') return user; respondedCount += 1; return user; }); waiting = respondedCount !== userAnswers.length && currentPoll; } return (
{currentPollQuestion ? {currentPollQuestion} : null}
{waiting ? ( {`${intl.formatMessage(intlMessages.waitingLabel, { 0: respondedCount, 1: userCount, })} `} ) : {intl.formatMessage(intlMessages.doneLabel)}} {waiting ? : null}
{pollStats}
{currentPoll && currentPoll.answers.length > 0 ? (