aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/lib/Reaction.js
blob: f2642908f55338d07eac817a33fd306c3b2b67b9 (plain) (blame)
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
import { autorun } from 'mobx';

export default class Reaction {
  reaction;

  isRunning = false;

  dispose;

  constructor(reaction) {
    this.reaction = reaction;
  }

  start() {
    if (!this.isRunning) {
      this.dispose = autorun(() => this.reaction());
      this.isActive = true;
    }
  }

  stop() {
    if (this.isRunning) {
      this.dispose();
      this.isActive = false;
    }
  }
}

export const createReactions = reactions => (
  reactions.map(r => new Reaction(r))
);