This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-03-03 13:18:23 -08:00
|
|
|
import { connect } from 'react-redux';
|
2020-04-16 11:16:20 -07:00
|
|
|
import { debounce } from 'lodash';
|
|
|
|
|
2019-05-19 14:02:32 -07:00
|
|
|
import Poll from 'flavours/glitch/components/poll';
|
2020-04-17 12:54:25 -07:00
|
|
|
import { fetchPoll, vote } from 'flavours/glitch/actions/polls';
|
2020-04-16 11:16:20 -07:00
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch, { pollId }) => ({
|
|
|
|
refresh: debounce(
|
|
|
|
() => {
|
|
|
|
dispatch(fetchPoll(pollId));
|
|
|
|
},
|
|
|
|
1000,
|
|
|
|
{ leading: true },
|
|
|
|
),
|
2020-04-17 12:54:25 -07:00
|
|
|
|
|
|
|
onVote (choices) {
|
|
|
|
dispatch(vote(pollId, choices));
|
|
|
|
},
|
2020-04-16 11:16:20 -07:00
|
|
|
});
|
2019-03-03 13:18:23 -08:00
|
|
|
|
|
|
|
const mapStateToProps = (state, { pollId }) => ({
|
|
|
|
poll: state.getIn(['polls', pollId]),
|
|
|
|
});
|
|
|
|
|
2020-04-16 11:16:20 -07:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Poll);
|