bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/poll/live-result/component.jsx

258 lines
7.0 KiB
React
Raw Normal View History

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
2018-10-10 23:49:58 +08:00
import _ from 'lodash';
2018-10-16 03:05:50 +08:00
import { defineMessages, injectIntl } from 'react-intl';
2018-10-24 22:17:13 +08:00
import Button from '/imports/ui/components/button/component';
import caseInsensitiveReducer from '/imports/utils/caseInsensitiveReducer';
2018-10-10 23:49:58 +08:00
import { styles } from './styles';
2018-11-02 02:20:35 +08:00
import Service from './service';
2018-10-10 23:49:58 +08:00
2018-10-16 03:05:50 +08:00
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',
},
2018-10-24 22:17:13 +08:00
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',
},
2019-04-18 00:36:04 +08:00
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',
},
2018-10-16 03:05:50 +08:00
});
2019-04-18 00:36:04 +08:00
const getResponseString = (obj) => {
const { children } = obj.props;
if (typeof children !== 'string') {
return getResponseString(children[1]);
}
2019-04-18 00:36:04 +08:00
return children;
};
class LiveResult extends PureComponent {
static getDerivedStateFromProps(nextProps) {
2019-05-23 02:00:44 +08:00
const {
currentPoll, intl, pollAnswerIds,
2019-05-23 02:00:44 +08:00
} = nextProps;
if (!currentPoll) return null;
const {
answers, responses, users, numRespondents,
} = currentPoll;
2021-03-19 00:46:49 +08:00
const currentPollQuestion = (currentPoll.question) ? currentPoll.question : '';
let userAnswers = responses
? [...users, ...responses.map(u => u.userId)]
: [...users];
userAnswers = userAnswers.map(id => Service.getUser(id))
.map((user) => {
let answer = '';
if (responses) {
const response = responses.find(r => r.userId === user.userId);
2021-02-05 00:54:50 +08:00
if (response) {
const answerKeys = [];
2021-02-05 00:54:50 +08:00
response.answerIds.forEach((answerId) => {
answerKeys.push(answers[answerId].key);
});
2021-02-05 00:54:50 +08:00
answer = answerKeys.join(', ');
}
}
return {
name: user.name,
answer,
};
})
2018-11-02 02:20:35 +08:00
.sort(Service.sortUsers)
2019-05-23 02:00:44 +08:00
.reduce((acc, user) => {
const formattedMessageIndex = user.answer.toLowerCase();
return ([
...acc,
(
<tr key={_.uniqueId('stats-')}>
<td className={styles.resultLeft}>{user.name}</td>
<td data-test="receivedAnswer" className={styles.resultRight}>
2019-05-23 02:00:44 +08:00
{
pollAnswerIds[formattedMessageIndex]
? intl.formatMessage(pollAnswerIds[formattedMessageIndex])
: user.answer
}
</td>
</tr>
),
]);
}, []);
2018-10-10 23:49:58 +08:00
const pollStats = [];
answers.reduce(caseInsensitiveReducer, []).map((obj) => {
2019-05-23 02:00:44 +08:00
const formattedMessageIndex = obj.key.toLowerCase();
2018-10-31 21:28:32 +08:00
const pct = Math.round(obj.numVotes / numRespondents * 100);
const pctFotmatted = `${Number.isNaN(pct) ? 0 : pct}%`;
const calculatedWidth = {
width: pctFotmatted,
};
2018-10-31 21:28:32 +08:00
2018-12-18 23:15:51 +08:00
return pollStats.push(
<div className={styles.main} key={_.uniqueId('stats-')}>
<div className={styles.left}>
2019-05-23 02:00:44 +08:00
{
pollAnswerIds[formattedMessageIndex]
? intl.formatMessage(pollAnswerIds[formattedMessageIndex])
: obj.key
}
2018-12-18 23:15:51 +08:00
</div>
<div className={styles.center}>
<div className={styles.barShade} style={calculatedWidth} />
<div className={styles.barVal}>{obj.numVotes || 0}</div>
2018-12-18 23:15:51 +08:00
</div>
<div className={styles.right}>
{pctFotmatted}
2018-12-18 23:15:51 +08:00
</div>
</div>,
);
2018-10-31 21:28:32 +08:00
});
2018-10-10 23:49:58 +08:00
return {
userAnswers,
pollStats,
2021-03-19 00:46:49 +08:00
currentPollQuestion,
};
}
constructor(props) {
super(props);
this.state = {
userAnswers: null,
pollStats: null,
2021-03-19 00:46:49 +08:00
currentPollQuestion: null,
};
2018-10-10 23:49:58 +08:00
}
render() {
2018-10-24 22:17:13 +08:00
const {
isMeteorConnected,
intl,
stopPoll,
handleBackClick,
currentPoll,
2018-10-24 22:17:13 +08:00
} = this.props;
2018-10-16 03:05:50 +08:00
2021-03-19 00:46:49 +08:00
const { userAnswers, pollStats, currentPollQuestion } = this.state;
2019-04-18 00:36:04 +08:00
let waiting;
let userCount = 0;
let respondedCount = 0;
if (userAnswers) {
userCount = userAnswers.length;
userAnswers.map((user) => {
const response = getResponseString(user);
if (response === '') return user;
2019-04-18 00:36:04 +08:00
respondedCount += 1;
return user;
});
waiting = respondedCount !== userAnswers.length && currentPoll;
2019-04-18 00:36:04 +08:00
}
2018-10-10 23:49:58 +08:00
return (
<div>
<div className={styles.stats}>
2021-03-19 00:46:49 +08:00
{currentPollQuestion ? <span className={styles.title}>{currentPollQuestion}</span> : null}
2020-09-22 06:52:38 +08:00
<div className={styles.status}>
{waiting
? (
<span>
{`${intl.formatMessage(intlMessages.waitingLabel, {
0: respondedCount,
1: userCount,
})} `}
</span>
)
: <span>{intl.formatMessage(intlMessages.doneLabel)}</span>}
{waiting
? <span className={styles.connectingAnimation} /> : null}
</div>
{pollStats}
2018-10-10 23:49:58 +08:00
</div>
{currentPoll && currentPoll.answers.length > 0
? (
<Button
disabled={!isMeteorConnected}
onClick={() => {
Session.set('pollInitiated', false);
Service.publishPoll();
stopPoll();
}}
label={intl.formatMessage(intlMessages.publishLabel)}
2020-03-20 22:42:04 +08:00
data-test="publishLabel"
color="primary"
className={styles.btn}
/>
) : (
<Button
disabled={!isMeteorConnected}
onClick={() => {
handleBackClick();
}}
label={intl.formatMessage(intlMessages.backLabel)}
color="default"
className={styles.btn}
/>
)
}
2020-09-22 06:52:38 +08:00
<div className={styles.separator} />
<table>
<tbody>
<tr>
<th className={styles.theading}>{intl.formatMessage(intlMessages.usersTitle)}</th>
<th className={styles.theading}>{intl.formatMessage(intlMessages.responsesTitle)}</th>
</tr>
{userAnswers}
</tbody>
</table>
2018-10-10 23:49:58 +08:00
</div>
);
}
}
2018-10-16 03:05:50 +08:00
export default injectIntl(LiveResult);
LiveResult.defaultProps = { currentPoll: null };
LiveResult.propTypes = {
intl: PropTypes.shape({
formatMessage: PropTypes.func.isRequired,
}).isRequired,
currentPoll: PropTypes.oneOfType([
PropTypes.arrayOf(Object),
PropTypes.shape({
answers: PropTypes.arrayOf(PropTypes.object),
users: PropTypes.arrayOf(PropTypes.string),
}),
]),
2018-12-18 23:15:51 +08:00
stopPoll: PropTypes.func.isRequired,
handleBackClick: PropTypes.func.isRequired,
};