Fix Poll fetchPoll action not being debounced. (#13485)
* Fix Poll fetchPoll action not being debounced. * Fix unused import in the Poll componentmaster
parent
04c8d825f6
commit
ab8d7c0680
@ -1,8 +1,21 @@ |
|||||||
import { connect } from 'react-redux'; |
import { connect } from 'react-redux'; |
||||||
|
import { debounce } from 'lodash'; |
||||||
|
|
||||||
import Poll from 'mastodon/components/poll'; |
import Poll from 'mastodon/components/poll'; |
||||||
|
import { fetchPoll } from 'mastodon/actions/polls'; |
||||||
|
|
||||||
|
const mapDispatchToProps = (dispatch, { pollId }) => ({ |
||||||
|
refresh: debounce( |
||||||
|
() => { |
||||||
|
dispatch(fetchPoll(pollId)); |
||||||
|
}, |
||||||
|
1000, |
||||||
|
{ leading: true }, |
||||||
|
), |
||||||
|
}); |
||||||
|
|
||||||
const mapStateToProps = (state, { pollId }) => ({ |
const mapStateToProps = (state, { pollId }) => ({ |
||||||
poll: state.getIn(['polls', pollId]), |
poll: state.getIn(['polls', pollId]), |
||||||
}); |
}); |
||||||
|
|
||||||
export default connect(mapStateToProps)(Poll); |
export default connect(mapStateToProps, mapDispatchToProps)(Poll); |
||||||
|
Loading…
Reference in new issue