blob: 3d64df51d526cd78de952aa0d314e60776e60fa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright (c) 2015-present 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);
}
cancel() {
window.clearTimeout(this.timer);
}
}
|