2018-09-15 01:50:18 +08:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { Link } from 'react-router';
|
|
|
|
import Button from '/imports/ui/components/button/component';
|
|
|
|
import Icon from '/imports/ui/components/icon/component';
|
2018-10-10 23:49:58 +08:00
|
|
|
import LiveResultContainer from './live-result/container';
|
2018-09-24 06:20:20 +08:00
|
|
|
import { findDOMNode } from 'react-dom';
|
2018-09-24 06:57:03 +08:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import _ from 'lodash';
|
2018-09-15 01:50:18 +08:00
|
|
|
import { styles } from './styles.scss';
|
|
|
|
|
2018-09-24 06:57:03 +08:00
|
|
|
const intlMessages = defineMessages({
|
|
|
|
pollPaneTitle: {
|
|
|
|
id: 'app.poll.pollPaneTitle',
|
|
|
|
description: 'heading label for the poll menu',
|
|
|
|
},
|
|
|
|
hidePollDesc: {
|
|
|
|
id: 'app.poll.hidePollDesc',
|
|
|
|
description: 'aria label description for hide poll button',
|
|
|
|
},
|
|
|
|
customPollLabel: {
|
|
|
|
id: 'app.poll.customPollLabel',
|
|
|
|
description: 'label for custom poll button',
|
|
|
|
},
|
|
|
|
startCustomLabel: {
|
|
|
|
id: 'app.poll.startCustomLabel',
|
|
|
|
description: 'label for button to start custom poll',
|
|
|
|
},
|
|
|
|
customPollInstruction: {
|
|
|
|
id: 'app.poll.customPollInstruction',
|
|
|
|
description: 'instructions for using custom poll',
|
|
|
|
},
|
|
|
|
quickPollInstruction: {
|
|
|
|
id: 'app.poll.quickPollInstruction',
|
|
|
|
description: 'instructions for using pre configured polls',
|
|
|
|
},
|
2018-09-25 06:43:54 +08:00
|
|
|
activePollInstruction: {
|
|
|
|
id: 'app.poll.activePollInstruction',
|
|
|
|
description: 'instructions displayed when a poll is active',
|
|
|
|
},
|
|
|
|
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',
|
|
|
|
},
|
2018-09-24 06:57:03 +08:00
|
|
|
customPlaceholder: {
|
|
|
|
id: 'app.poll.customPlaceholder',
|
|
|
|
description: 'custom poll input field placeholder text',
|
|
|
|
},
|
2018-10-03 11:24:34 +08:00
|
|
|
tf: {
|
|
|
|
id: 'app.poll.tf',
|
2018-09-24 06:57:03 +08:00
|
|
|
description: 'label for true / false poll',
|
|
|
|
},
|
2018-10-03 11:24:34 +08:00
|
|
|
yn: {
|
|
|
|
id: 'app.poll.yn',
|
2018-09-24 06:57:03 +08:00
|
|
|
description: 'label for Yes / No poll',
|
|
|
|
},
|
2018-10-03 11:24:34 +08:00
|
|
|
a2: {
|
|
|
|
id: 'app.poll.a2',
|
2018-09-24 06:57:03 +08:00
|
|
|
description: 'label for A / B poll',
|
|
|
|
},
|
2018-10-03 11:24:34 +08:00
|
|
|
a3: {
|
|
|
|
id: 'app.poll.a3',
|
2018-09-24 06:57:03 +08:00
|
|
|
description: 'label for A / B / C poll',
|
|
|
|
},
|
2018-10-03 11:24:34 +08:00
|
|
|
a4: {
|
|
|
|
id: 'app.poll.a4',
|
2018-09-24 06:57:03 +08:00
|
|
|
description: 'label for A / B / C / D poll',
|
|
|
|
},
|
2018-10-03 11:24:34 +08:00
|
|
|
a5: {
|
|
|
|
id: 'app.poll.a5',
|
2018-09-24 06:57:03 +08:00
|
|
|
description: 'label for A / B / C / D / E poll',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2018-10-03 07:59:45 +08:00
|
|
|
const MAX_CUSTOM_FIELDS = Meteor.settings.public.poll.max_custom;
|
|
|
|
|
2018-09-15 01:50:18 +08:00
|
|
|
class Poll extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2018-09-24 06:57:03 +08:00
|
|
|
customPollReq: false,
|
2018-09-25 06:43:54 +08:00
|
|
|
isPolling: false,
|
2018-10-05 21:43:27 +08:00
|
|
|
customPollValues: [],
|
2018-09-15 01:50:18 +08:00
|
|
|
};
|
|
|
|
|
2018-10-05 21:43:27 +08:00
|
|
|
this.inputEditor = [];
|
2018-09-24 06:57:03 +08:00
|
|
|
|
2018-09-15 01:50:18 +08:00
|
|
|
this.toggleCustomFields = this.toggleCustomFields.bind(this);
|
2018-09-24 06:57:03 +08:00
|
|
|
this.renderQuickPollBtns = this.renderQuickPollBtns.bind(this);
|
2018-09-24 06:20:20 +08:00
|
|
|
this.renderInputFields = this.renderInputFields.bind(this);
|
2018-09-26 00:54:07 +08:00
|
|
|
this.nonPresenterRedirect = this.nonPresenterRedirect.bind(this);
|
2018-09-24 06:20:20 +08:00
|
|
|
this.getInputFields = this.getInputFields.bind(this);
|
2018-10-05 21:43:27 +08:00
|
|
|
this.handleInputChange = this.handleInputChange.bind(this);
|
2018-09-24 06:57:03 +08:00
|
|
|
}
|
|
|
|
|
2018-09-26 00:54:07 +08:00
|
|
|
componentWillMount() {
|
|
|
|
this.nonPresenterRedirect();
|
|
|
|
}
|
|
|
|
|
2018-09-24 06:20:20 +08:00
|
|
|
componentDidUpdate(prevProps, prevState) {
|
2018-09-26 00:54:07 +08:00
|
|
|
this.nonPresenterRedirect();
|
|
|
|
}
|
2018-09-24 06:20:20 +08:00
|
|
|
|
2018-09-26 00:54:07 +08:00
|
|
|
nonPresenterRedirect() {
|
|
|
|
const { currentUser, router } = this.props;
|
|
|
|
if (!currentUser.presenter) return router.push('/users');
|
2018-09-24 06:57:03 +08:00
|
|
|
}
|
|
|
|
|
2018-10-05 21:43:27 +08:00
|
|
|
handleInputChange(index, event) {
|
|
|
|
// This regex will replace any instance of 2 or more consecutive white spaces
|
|
|
|
// with a single white space character.
|
|
|
|
const option = event.target.value.replace(/\s{2,}/g, ' ').trim();
|
|
|
|
this.inputEditor[index] = option === '' ? '' : option;
|
|
|
|
this.setState({ customPollValues: this.inputEditor });
|
|
|
|
}
|
|
|
|
|
2018-09-24 06:20:20 +08:00
|
|
|
getInputFields() {
|
2018-09-24 06:57:03 +08:00
|
|
|
const { intl } = this.props;
|
2018-09-24 06:20:20 +08:00
|
|
|
const items = [];
|
|
|
|
|
2018-10-03 22:39:23 +08:00
|
|
|
items = _.range(1, MAX_CUSTOM_FIELDS + 1).map((ele, index) => (
|
|
|
|
<input
|
2018-10-05 21:43:27 +08:00
|
|
|
key={`custom-poll-${index}`}
|
2018-09-24 06:57:03 +08:00
|
|
|
placeholder={intl.formatMessage(intlMessages.customPlaceholder)}
|
2018-09-24 06:20:20 +08:00
|
|
|
className={styles.input}
|
2018-10-05 21:43:27 +08:00
|
|
|
onChange={event => this.handleInputChange(index, event)}
|
|
|
|
defaultValue={this.state.customPollValues[index]}
|
2018-10-03 22:39:23 +08:00
|
|
|
/>
|
|
|
|
));
|
2018-09-24 06:20:20 +08:00
|
|
|
|
|
|
|
return items;
|
2018-09-24 06:57:03 +08:00
|
|
|
}
|
|
|
|
|
2018-09-15 01:50:18 +08:00
|
|
|
toggleCustomFields() {
|
2018-09-24 06:57:03 +08:00
|
|
|
const { customPollReq } = this.state;
|
2018-09-24 06:20:20 +08:00
|
|
|
|
2018-10-05 21:43:27 +08:00
|
|
|
this.inputEditor = [];
|
2018-09-24 06:20:20 +08:00
|
|
|
|
|
|
|
return customPollReq
|
|
|
|
? this.setState({ customPollReq: false })
|
|
|
|
: this.setState({ customPollReq: true });
|
2018-09-24 06:57:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
renderQuickPollBtns() {
|
|
|
|
const { pollTypes, startPoll, intl } = this.props;
|
|
|
|
|
2018-10-03 11:24:34 +08:00
|
|
|
const btns = pollTypes.map((type) => {
|
|
|
|
if (type === 'custom') return;
|
2018-09-24 06:20:20 +08:00
|
|
|
|
2018-10-03 11:24:34 +08:00
|
|
|
const label = intl.formatMessage(
|
|
|
|
// regex removes the - to match the message id
|
|
|
|
intlMessages[type.replace(/-/g, '').toLowerCase()]);
|
2018-09-24 06:57:03 +08:00
|
|
|
|
2018-10-03 11:24:34 +08:00
|
|
|
return (
|
|
|
|
<Button
|
|
|
|
label={label}
|
|
|
|
color="default"
|
|
|
|
className={styles.pollBtn}
|
|
|
|
key={_.uniqueId('quick-poll-')}
|
|
|
|
onClick={() => {
|
2018-09-25 06:43:54 +08:00
|
|
|
this.setState({ isPolling: true }, () => startPoll(type));
|
|
|
|
}}
|
2018-10-03 11:24:34 +08:00
|
|
|
/>);
|
|
|
|
});
|
2018-09-24 06:57:03 +08:00
|
|
|
|
|
|
|
return btns;
|
2018-09-15 01:50:18 +08:00
|
|
|
}
|
|
|
|
|
2018-09-24 06:20:20 +08:00
|
|
|
renderInputFields() {
|
|
|
|
const { intl, startCustomPoll } = this.props;
|
2018-10-05 21:43:27 +08:00
|
|
|
const isDisabled = _.compact(this.inputEditor).length < 2;
|
2018-09-24 06:57:03 +08:00
|
|
|
|
|
|
|
return (
|
2018-09-24 06:20:20 +08:00
|
|
|
<div className={styles.customInputWrapper}>
|
|
|
|
{this.getInputFields()}
|
2018-09-24 06:57:03 +08:00
|
|
|
<Button
|
2018-09-24 06:20:20 +08:00
|
|
|
onClick={() => {
|
2018-10-05 21:43:27 +08:00
|
|
|
if (this.inputEditor.length > 1) {
|
|
|
|
this.setState({ isPolling: true }, () => startCustomPoll('custom', _.compact(this.inputEditor)));
|
2018-09-24 06:20:20 +08:00
|
|
|
}
|
|
|
|
}}
|
2018-09-24 06:57:03 +08:00
|
|
|
label={intl.formatMessage(intlMessages.startCustomLabel)}
|
2018-09-24 06:20:20 +08:00
|
|
|
color="primary"
|
2018-10-05 21:43:27 +08:00
|
|
|
aria-disabled={isDisabled}
|
2018-09-24 06:20:20 +08:00
|
|
|
className={styles.btn}
|
2018-09-24 06:57:03 +08:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
2018-09-15 01:50:18 +08:00
|
|
|
}
|
|
|
|
|
2018-09-25 06:43:54 +08:00
|
|
|
renderActivePollOptions() {
|
|
|
|
const {
|
|
|
|
intl, router, publishPoll, stopPoll,
|
|
|
|
} = this.props;
|
|
|
|
|
2018-10-10 23:49:58 +08:00
|
|
|
|
2018-09-25 06:43:54 +08:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div className={styles.instructions}>{intl.formatMessage(intlMessages.activePollInstruction)}</div>
|
2018-10-10 23:49:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
<LiveResultContainer />
|
|
|
|
|
|
|
|
|
2018-09-25 06:43:54 +08:00
|
|
|
<Button
|
|
|
|
onClick={() => {
|
|
|
|
publishPoll();
|
2018-10-10 23:49:58 +08:00
|
|
|
stopPoll();
|
2018-09-28 22:40:53 +08:00
|
|
|
router.push('/users');
|
2018-09-25 06:43:54 +08:00
|
|
|
}}
|
|
|
|
label={intl.formatMessage(intlMessages.publishLabel)}
|
|
|
|
color="primary"
|
|
|
|
className={styles.btn}
|
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
onClick={() => {
|
|
|
|
stopPoll();
|
2018-10-05 21:43:27 +08:00
|
|
|
this.inputEditor = [];
|
|
|
|
this.setState({ isPolling: false, customPollValues: this.inputEditor });
|
2018-09-25 06:43:54 +08:00
|
|
|
}}
|
|
|
|
label={intl.formatMessage(intlMessages.backLabel)}
|
|
|
|
color="default"
|
|
|
|
className={styles.btn}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderPollOptions() {
|
2018-09-24 06:57:03 +08:00
|
|
|
const { intl } = this.props;
|
|
|
|
const { customPollReq } = this.state;
|
|
|
|
|
2018-09-15 01:50:18 +08:00
|
|
|
return (
|
2018-09-24 06:20:20 +08:00
|
|
|
<div>
|
2018-09-24 06:57:03 +08:00
|
|
|
<div className={styles.instructions}>
|
|
|
|
{intl.formatMessage(intlMessages.quickPollInstruction)}
|
2018-09-15 01:50:18 +08:00
|
|
|
</div>
|
2018-09-24 06:57:03 +08:00
|
|
|
<div className={styles.grid}>
|
|
|
|
{this.renderQuickPollBtns()}
|
|
|
|
</div>
|
|
|
|
<div className={styles.instructions}>
|
|
|
|
{intl.formatMessage(intlMessages.customPollInstruction)}
|
|
|
|
</div>
|
|
|
|
<Button
|
|
|
|
className={styles.customBtn}
|
2018-10-03 07:08:32 +08:00
|
|
|
color="default"
|
2018-09-24 06:57:03 +08:00
|
|
|
onClick={this.toggleCustomFields}
|
|
|
|
label={intl.formatMessage(intlMessages.customPollLabel)}
|
|
|
|
/>
|
2018-09-24 06:20:20 +08:00
|
|
|
{!customPollReq ? null : this.renderInputFields()}
|
2018-09-15 01:50:18 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2018-09-25 06:43:54 +08:00
|
|
|
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
intl, stopPoll,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<header className={styles.header}>
|
|
|
|
<Link
|
|
|
|
to="/users"
|
|
|
|
role="button"
|
|
|
|
aria-label={intl.formatMessage(intlMessages.hidePollDesc)}
|
|
|
|
onClick={() => {
|
|
|
|
if (this.state.isPolling) {
|
|
|
|
stopPoll();
|
|
|
|
this.setState({ isPolling: false });
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Icon iconName="left_arrow" />{intl.formatMessage(intlMessages.pollPaneTitle)}
|
|
|
|
</Link>
|
2018-10-10 23:49:58 +08:00
|
|
|
|
|
|
|
|
2018-09-25 06:43:54 +08:00
|
|
|
</header>
|
|
|
|
{
|
|
|
|
this.state.isPolling ? this.renderActivePollOptions() : this.renderPollOptions()
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2018-09-15 01:50:18 +08:00
|
|
|
}
|
|
|
|
|
2018-09-24 06:57:03 +08:00
|
|
|
export default injectIntl(Poll);
|