summaryrefslogtreecommitdiffstats
path: root/web/react/utils
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-12-15 15:55:52 -0500
committerhmhealey <harrisonmhealey@gmail.com>2015-12-16 09:54:58 -0500
commit07638f7e7dd6718155eb650562d71063e7756de5 (patch)
tree418d3e80a5f930396e068fd94689d6fbe12d76d8 /web/react/utils
parent872f001fbbebe93ae7fc4b92a6d17a378e0d50d5 (diff)
downloadchat-07638f7e7dd6718155eb650562d71063e7756de5.tar.gz
chat-07638f7e7dd6718155eb650562d71063e7756de5.tar.bz2
chat-07638f7e7dd6718155eb650562d71063e7756de5.zip
Added DelayedAction class to use to handle stopping scrolling
Diffstat (limited to 'web/react/utils')
-rw-r--r--web/react/utils/delayed_action.jsx27
1 files changed, 27 insertions, 0 deletions
diff --git a/web/react/utils/delayed_action.jsx b/web/react/utils/delayed_action.jsx
new file mode 100644
index 000000000..4f6239ad0
--- /dev/null
+++ b/web/react/utils/delayed_action.jsx
@@ -0,0 +1,27 @@
+// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+export default class DelayedAction {
+ constructor(action) {
+ this.action = action;
+
+ this.timer = -1;
+
+ // bind fire since it doesn't get passed the correct this value with setTimeout
+ this.fire = this.fire.bind(this);
+ }
+
+ fire() {
+ this.action();
+
+ this.timer = -1;
+ }
+
+ fireAfter(timeout) {
+ if (this.timer >= 0) {
+ window.clearTimeout(this.timer);
+ }
+
+ this.timer = window.setTimeout(this.fire, timeout);
+ }
+}