Port ab8d7c0680
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
master
parent
81e49ba5c6
commit
4849752a9c
@ -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); |
||||
|
Loading…
Reference in new issue