import React, { Component } from 'react'; import _ from 'lodash'; import { defineMessages, injectIntl } from 'react-intl'; import { styles } from './styles'; 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', }, }); class LiveResult extends Component { constructor(props) { super(props); this.getUnresponsive = this.getUnresponsive.bind(this); this.getRespondents = this.getRespondents.bind(this); this.getPollStats = this.getPollStats.bind(this); } getPollStats() { const { currentPoll } = this.props; const pollStats = []; if (currentPoll) { const { answers, numRespondents, } = currentPoll; if (answers) { answers.map((obj) => { const pct = Math.round(obj.numVotes / numRespondents * 100); return pollStats.push(
{obj.key}
{obj.numVotes}
{`${isNaN(pct) ? 0 : pct}%`}
); }); } } return pollStats; } getRespondents() { const { currentPoll, getUser } = this.props; if (!currentPoll) return null; const respondedUsers = []; if (currentPoll) { const { answers, responses, } = currentPoll; if (responses && answers) { responses.map((ur) => { const user = getUser(ur.userId); if (user) { answers.map((obj) => { if (obj.id === ur.answerId) { respondedUsers.push(
{user.name}
); respondedUsers.push(
{obj.key}
); } }); } }); } } return respondedUsers; } getUnresponsive() { const { currentPoll, getUser } = this.props; if (!currentPoll) return null; const { users, } = currentPoll; const usersToRespond = []; const usersList = _.compact(users); if (usersList) { usersList.map((userId) => { const user = getUser(userId); if (user) { usersToRespond.push(
{user.name}
); usersToRespond.push(
^
); } }); } return usersToRespond; } render() { const { intl } = this.props; return (
{this.getPollStats()}
{intl.formatMessage(intlMessages.usersTitle)}
{intl.formatMessage(intlMessages.responsesTitle)}
{this.getRespondents()} {this.getUnresponsive()}
); } } export default injectIntl(LiveResult);