Files
mattermost/webapp/utils/delayed_action.jsx
Harrison Healey fb6f2a123c PLT-5860 Updated copyright date (#6058)
* PLT-5860 Updated copyright date in about modal

* PLT-5860 Updated copyright notice in JSX files

* PLT-5860 Updated copyright notice in go files

* Fixed misc copyright dates

* Fixed component snapshots
2017-04-12 08:27:57 -04:00

32 lines
682 B
JavaScript

// 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);
}
}