about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/containers/poll_container.js
diff options
context:
space:
mode:
authorGurgen Hayrapetyan <info.gurgen@gmail.com>2020-04-16 22:16:20 +0400
committerThibaut Girka <thib@sitedethib.com>2020-04-17 20:20:06 +0200
commit4849752a9cf5d8220e5d90f5f9ce24ed37abc2ed (patch)
tree1028683e1d897031ce8e89c46254764ef517c2f6 /app/javascript/flavours/glitch/containers/poll_container.js
parent81e49ba5c6107927d12bd222b7081f63ba63bdc9 (diff)
[Glitch] Fix Poll fetchPoll action not being debounced.
Port ab8d7c0680d7f75826277be4c8eea1ebd396be8a to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/containers/poll_container.js')
-rw-r--r--app/javascript/flavours/glitch/containers/poll_container.js15
1 files changed, 14 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/containers/poll_container.js b/app/javascript/flavours/glitch/containers/poll_container.js
index da93cc905..b90864354 100644
--- a/app/javascript/flavours/glitch/containers/poll_container.js
+++ b/app/javascript/flavours/glitch/containers/poll_container.js
@@ -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);