]> cat aescling's git repositories - mastodon.git/commitdiff
Fix not being able to vote (#13490)
authorThibG <thib@sitedethib.com>
Fri, 17 Apr 2020 19:54:25 +0000 (21:54 +0200)
committerGitHub <noreply@github.com>
Fri, 17 Apr 2020 19:54:25 +0000 (21:54 +0200)
Fix regression introduced by ab8d7c0680d7f75826277be4c8eea1ebd396be8a

app/javascript/mastodon/components/poll.js
app/javascript/mastodon/containers/poll_container.js

index 29da52ae77d88a1d65fe77cbc75b9489839b7013..41c99710fc79da42e29f26ba8f325646226a9ab0 100644 (file)
@@ -4,7 +4,6 @@ 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 { vote } from 'mastodon/actions/polls';
 import Motion from 'mastodon/features/ui/util/optional_motion';
 import spring from 'react-motion/lib/spring';
 import escapeTextContentForBrowser from 'escape-html';
@@ -28,9 +27,9 @@ class Poll extends ImmutablePureComponent {
   static propTypes = {
     poll: ImmutablePropTypes.map,
     intl: PropTypes.object.isRequired,
-    dispatch: PropTypes.func,
     disabled: PropTypes.bool,
     refresh: PropTypes.func,
+    onVote: PropTypes.func,
   };
 
   state = {
@@ -101,7 +100,7 @@ class Poll extends ImmutablePureComponent {
       return;
     }
 
-    this.props.dispatch(vote(this.props.poll.get('id'), Object.keys(this.state.selected)));
+    this.props.onVote(Object.keys(this.state.selected));
   };
 
   handleRefresh = () => {
index 1c2e8d2a7ab0cbb3d3565aab5c10df34da211377..f40ba8fac8e8f727df5fe2f964251872137f5898 100644 (file)
@@ -2,7 +2,7 @@ import { connect } from 'react-redux';
 import { debounce } from 'lodash';
 
 import Poll from 'mastodon/components/poll';
-import { fetchPoll } from 'mastodon/actions/polls';
+import { fetchPoll, vote } from 'mastodon/actions/polls';
 
 const mapDispatchToProps = (dispatch, { pollId }) => ({
   refresh: debounce(
@@ -12,6 +12,10 @@ const mapDispatchToProps = (dispatch, { pollId }) => ({
     1000,
     { leading: true },
   ),
+
+  onVote (choices) {
+    dispatch(vote(pollId, choices));
+  },
 });
 
 const mapStateToProps = (state, { pollId }) => ({