bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/quick-poll-dropdown/component.jsx

197 lines
5.5 KiB
React
Raw Normal View History

import React, { Component } from 'react';
2019-02-22 05:01:39 +08:00
import PropTypes from 'prop-types';
import { defineMessages } from 'react-intl';
2019-02-22 05:01:39 +08:00
import _ from 'lodash';
import Button from '/imports/ui/components/button/component';
import Dropdown from '/imports/ui/components/dropdown/component';
import DropdownTrigger from '/imports/ui/components/dropdown/trigger/component';
import DropdownContent from '/imports/ui/components/dropdown/content/component';
import DropdownList from '/imports/ui/components/dropdown/list/component';
import DropdownListItem from '/imports/ui/components/dropdown/list/item/component';
import { styles } from '../styles';
const POLL_SETTINGS = Meteor.settings.public.poll;
const MAX_CUSTOM_FIELDS = POLL_SETTINGS.maxCustom;
2019-02-22 05:01:39 +08:00
const intlMessages = defineMessages({
quickPollLabel: {
id: 'app.poll.quickPollTitle',
description: 'Quick poll button title',
},
trueOptionLabel: {
id: 'app.poll.t',
description: 'Poll true option value',
},
falseOptionLabel: {
id: 'app.poll.f',
description: 'Poll false option value',
},
yesOptionLabel: {
id: 'app.poll.y',
description: 'Poll yes option value',
},
noOptionLabel: {
id: 'app.poll.n',
description: 'Poll no option value',
},
abstentionOptionLabel: {
id: 'app.poll.abstention',
description: 'Poll Abstention option value',
},
2019-02-22 05:01:39 +08:00
});
const propTypes = {
intl: PropTypes.object.isRequired,
2019-02-22 05:01:39 +08:00
parseCurrentSlideContent: PropTypes.func.isRequired,
amIPresenter: PropTypes.bool.isRequired,
2019-02-22 05:01:39 +08:00
};
const getAvailableQuickPolls = (slideId, parsedSlides, startPoll, pollTypes) => {
2019-03-25 01:28:01 +08:00
const pollItemElements = parsedSlides.map((poll) => {
2021-04-06 01:50:50 +08:00
let { poll: label, type } = poll;
2019-03-25 01:28:01 +08:00
let itemLabel = label;
let letterAnswers = [];
2019-02-22 05:01:39 +08:00
if (type !== pollTypes.YesNo &&
type !== pollTypes.YesNoAbstention &&
type !== pollTypes.TrueFalse)
{
2019-03-25 01:28:01 +08:00
const { options } = itemLabel;
itemLabel = options.join('/').replace(/[\n.)]/g, '');
if (type === pollTypes.Custom) {
for (const option of options) {
const letterOption = option.replace(/[\r.)]/g, '');
if (letterAnswers.length < MAX_CUSTOM_FIELDS) {
letterAnswers.push(letterOption);
} else {
break;
}
}
}
2019-03-25 01:28:01 +08:00
}
2019-02-22 05:01:39 +08:00
2019-03-25 01:28:01 +08:00
// removes any whitespace from the label
itemLabel = itemLabel.replace(/\s+/g, '').toUpperCase();
2019-02-22 05:01:39 +08:00
2019-03-25 01:28:01 +08:00
const numChars = {
1: 'A', 2: 'B', 3: 'C', 4: 'D', 5: 'E',
};
itemLabel = itemLabel.split('').map((c) => {
if (numChars[c]) return numChars[c];
return c;
}).join('');
return (
<DropdownListItem
label={itemLabel}
key={_.uniqueId('quick-poll-item')}
onClick={() => startPoll(type, slideId, letterAnswers)}
answers={letterAnswers}
2019-03-25 01:28:01 +08:00
/>
);
});
const sizes = [];
return pollItemElements.filter((el) => {
const { label } = el.props;
if (label.length === sizes[sizes.length - 1]) return;
sizes.push(label.length);
return el;
});
};
2019-02-22 05:01:39 +08:00
class QuickPollDropdown extends Component {
render() {
const {
amIPresenter,
intl,
parseCurrentSlideContent,
startPoll,
currentSlide,
activePoll,
className,
pollTypes,
} = this.props;
const parsedSlide = parseCurrentSlideContent(
intl.formatMessage(intlMessages.yesOptionLabel),
intl.formatMessage(intlMessages.noOptionLabel),
intl.formatMessage(intlMessages.abstentionOptionLabel),
intl.formatMessage(intlMessages.trueOptionLabel),
intl.formatMessage(intlMessages.falseOptionLabel),
);
2019-02-22 05:01:39 +08:00
const { slideId, quickPollOptions } = parsedSlide;
const quickPolls = getAvailableQuickPolls(slideId, quickPollOptions, startPoll, pollTypes);
if (quickPollOptions.length === 0) return null;
let answers = null;
let quickPollLabel = '';
if (quickPolls.length > 0) {
const { props: pollProps } = quickPolls[0];
quickPollLabel = pollProps.label;
answers = pollProps.answers;
}
let singlePollType = null;
if (quickPolls.length === 1 && quickPollOptions.length) {
const { type } = quickPollOptions[0];
singlePollType = type;
}
let btn = (
<Button
aria-label={intl.formatMessage(intlMessages.quickPollLabel)}
className={styles.quickPollBtn}
label={quickPollLabel}
tooltipLabel={intl.formatMessage(intlMessages.quickPollLabel)}
2021-04-06 01:50:50 +08:00
onClick={() => startPoll(singlePollType, currentSlide.id, answers)}
size="lg"
disabled={!!activePoll}
/>
);
const usePollDropdown = quickPollOptions && quickPollOptions.length && quickPolls.length > 1;
let dropdown = null;
if (usePollDropdown) {
btn = (
<Button
aria-label={intl.formatMessage(intlMessages.quickPollLabel)}
className={styles.quickPollBtn}
label={quickPollLabel}
tooltipLabel={intl.formatMessage(intlMessages.quickPollLabel)}
onClick={() => null}
size="lg"
disabled={!!activePoll}
/>
);
dropdown = (
<Dropdown className={className}>
<DropdownTrigger tabIndex={0}>
{btn}
</DropdownTrigger>
<DropdownContent placement="top left">
<DropdownList>
{quickPolls}
</DropdownList>
</DropdownContent>
</Dropdown>
);
}
return amIPresenter && usePollDropdown ? (
dropdown
) : (
btn
);
}
}
2019-02-22 05:01:39 +08:00
QuickPollDropdown.propTypes = propTypes;
export default QuickPollDropdown;