import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; import classNames from 'classnames'; import escapeTextContentForBrowser from 'escape-html'; import spring from 'react-motion/lib/spring'; import Motion from '../../features/ui/util/optional_motion'; import { vote, fetchPoll } from '../../actions/polls'; import emojify from '../emoji/emoji'; import RelativeTimestamp from '../relative_timestamp'; import Button from '../button'; const mapStateToProps = (state, { pollId }) => ({ poll: state.getIn(['polls', pollId]), }); const messages = defineMessages({ closed: { id: 'poll.closed', defaultMessage: 'Closed' }, vote: { id: 'poll.vote', defaultMessage: 'Vote' }, refresh: { id: 'poll.refresh', defaultMessage: 'Refresh' }, }); const makeEmojiMap = record => record.get('emojis').reduce((obj, emoji) => { obj[`:${emoji.get('shortcode')}:`] = emoji.toJS(); return obj; }, {}); export default @connect(mapStateToProps) @injectIntl class Poll extends ImmutablePureComponent { static propTypes = { poll: ImmutablePropTypes.map, intl: PropTypes.object.isRequired, dispatch: PropTypes.func, disabled: PropTypes.bool, }; state = { selected: {}, }; handleOptionChange = e => { const { target: { value } } = e; if (this.props.poll.get('multiple')) { const tmp = { ...this.state.selected }; if (tmp[value]) { delete tmp[value]; } else { tmp[value] = true; } this.setState({ selected: tmp }); } else { const tmp = {}; tmp[value] = true; this.setState({ selected: tmp }); } }; handleVote = () => { if (this.props.disabled) return; this.props.dispatch(vote(this.props.poll.get('id'), Object.keys(this.state.selected))); }; handleRefresh = () => { if (this.props.disabled) return; this.props.dispatch(fetchPoll(this.props.poll.get('id'))); }; renderOption (option, optionIndex) { const { poll, disabled } = this.props; const percent = poll.get('votes_count') === 0 ? 0 : (option.get('votes_count') / poll.get('votes_count')) * 100; const leading = poll.get('options').filterNot(other => other.get('title') === option.get('title')).every(other => option.get('votes_count') > other.get('votes_count')); const active = !!this.state.selected[`${optionIndex}`]; const showResults = poll.get('voted') || poll.get('expired'); const multiple = poll.get('multiple'); let titleEmojified = option.get('title_emojified'); if (!titleEmojified) { const emojiMap = makeEmojiMap(poll); titleEmojified = emojify(escapeTextContentForBrowser(option.get('title')), emojiMap); } const chartClasses = classNames('poll__chart', { 'poll__chart--leading': leading, }); const textClasses = classNames('poll__text', { selectable: !showResults, }); const inputClasses = classNames('poll__input', { 'poll__input--checkbox': multiple, 'poll__input--active': active, }); return (
  • { showResults && ( {({ width }) => } ) }
  • ); } render () { const { poll, intl } = this.props; if (!poll) return null; const timeRemaining = poll.get('expired') ? intl.formatMessage(messages.closed) : ; const showResults = poll.get('voted') || poll.get('expired'); const disabled = this.props.disabled || Object.entries(this.state.selected).every(item => !item); return (
    { !showResults && } { showResults && !this.props.disabled &&  ·  } { poll.get('expires_at') && · {timeRemaining} }
    ); } }