2019-02-22 05:01:39 +08:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { defineMessages, intlShape } from 'react-intl';
|
|
|
|
import _ from 'lodash';
|
|
|
|
import { makeCall } from '/imports/ui/services/api';
|
|
|
|
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 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',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const propTypes = {
|
|
|
|
intl: intlShape.isRequired,
|
|
|
|
parseCurrentSlideContent: PropTypes.func.isRequired,
|
|
|
|
isUserPresenter: PropTypes.bool.isRequired,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleClickQuickPoll = (slideId, poll) => {
|
|
|
|
const { type } = poll;
|
|
|
|
Session.set('openPanel', 'poll');
|
|
|
|
Session.set('forcePollOpen', true);
|
|
|
|
|
|
|
|
makeCall('startPoll', type, slideId);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-03-05 10:52:49 +08:00
|
|
|
const getAvailableQuickPolls = (slideId, parsedSlides) => parsedSlides.map((poll) => {
|
|
|
|
const { poll: label, type } = poll;
|
|
|
|
let itemLabel = label;
|
2019-02-22 05:01:39 +08:00
|
|
|
|
2019-03-05 10:52:49 +08:00
|
|
|
if (type !== 'YN' && type !== 'TF') {
|
|
|
|
const { options } = itemLabel;
|
|
|
|
itemLabel = options.join('/').replace(/[\n.)]/g, '');
|
|
|
|
}
|
2019-02-22 05:01:39 +08:00
|
|
|
|
2019-03-05 10:52:49 +08:00
|
|
|
return (
|
|
|
|
<DropdownListItem
|
|
|
|
label={itemLabel}
|
|
|
|
key={_.uniqueId('quick-poll-item')}
|
|
|
|
onClick={() => handleClickQuickPoll(slideId, poll)}
|
|
|
|
/>);
|
|
|
|
});
|
2019-02-22 05:01:39 +08:00
|
|
|
|
|
|
|
const QuickPollDropdown = (props) => {
|
|
|
|
const { isUserPresenter, intl, parseCurrentSlideContent } = props;
|
|
|
|
const parsedSlide = parseCurrentSlideContent(
|
|
|
|
intl.formatMessage(intlMessages.yesOptionLabel),
|
|
|
|
intl.formatMessage(intlMessages.noOptionLabel),
|
|
|
|
intl.formatMessage(intlMessages.trueOptionLabel),
|
|
|
|
intl.formatMessage(intlMessages.falseOptionLabel),
|
|
|
|
);
|
|
|
|
|
|
|
|
const { slideId, quickPollOptions } = parsedSlide;
|
|
|
|
|
2019-02-26 20:46:40 +08:00
|
|
|
return isUserPresenter && quickPollOptions && quickPollOptions.length ? (
|
2019-02-22 05:01:39 +08:00
|
|
|
<Dropdown>
|
|
|
|
<DropdownTrigger tabIndex={0}>
|
|
|
|
<Button
|
|
|
|
aria-label={intl.formatMessage(intlMessages.quickPollLabel)}
|
|
|
|
circle
|
|
|
|
className={styles.button}
|
|
|
|
color="primary"
|
|
|
|
hideLabel
|
|
|
|
icon="polling"
|
|
|
|
label={intl.formatMessage(intlMessages.quickPollLabel)}
|
|
|
|
onClick={() => null}
|
|
|
|
size="lg"
|
|
|
|
/>
|
|
|
|
</DropdownTrigger>
|
|
|
|
<DropdownContent placement="top left">
|
|
|
|
<DropdownList>
|
|
|
|
{getAvailableQuickPolls(slideId, quickPollOptions)}
|
|
|
|
</DropdownList>
|
|
|
|
</DropdownContent>
|
|
|
|
</Dropdown>
|
|
|
|
) : null;
|
|
|
|
};
|
|
|
|
|
|
|
|
QuickPollDropdown.propTypes = propTypes;
|
|
|
|
|
|
|
|
export default QuickPollDropdown;
|