aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/utils/FeatureStore.js
blob: eada332d776c2ff4581862cf831896c3d817ac23 (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
32
33
34
35
36
37
38
39
40
export default class FeatureStore {
  _actions = [];

  _reactions = [];

  stop() {
    this._stopActions();
    this._stopReactions();
  }

  // ACTIONS

  _registerActions(actions) {
    this._actions = actions;
    this._startActions();
  }

  _startActions(actions = this._actions) {
    for (const a of actions) a.start();
  }

  _stopActions(actions = this._actions) {
    for (const a of actions) a.stop();
  }

  // REACTIONS

  _registerReactions(reactions) {
    this._reactions = reactions;
    this._startReactions();
  }

  _startReactions(reactions = this._reactions) {
    for (const r of reactions) r.start();
  }

  _stopReactions(reactions = this._reactions) {
    for (const r of reactions) r.stop();
  }
}