[Glitch] Fix Poll fetchPoll action not being debounced.

Port ab8d7c0680 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
Gurgen Hayrapetyan
2020-04-16 22:16:20 +04:00
committed by Thibaut Girka
parent 81e49ba5c6
commit 4849752a9c
2 changed files with 17 additions and 3 deletions

View File

@ -1,8 +1,21 @@
import { connect } from 'react-redux';
import { debounce } from 'lodash';
import Poll from 'flavours/glitch/components/poll';
import { fetchPoll } from 'flavours/glitch/actions/polls';
const mapDispatchToProps = (dispatch, { pollId }) => ({
refresh: debounce(
() => {
dispatch(fetchPoll(pollId));
},
1000,
{ leading: true },
),
});
const mapStateToProps = (state, { pollId }) => ({
poll: state.getIn(['polls', pollId]),
});
export default connect(mapStateToProps)(Poll);
export default connect(mapStateToProps, mapDispatchToProps)(Poll);