aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/utils/FeatureStore.js
blob: d863f74644d2bcb9461c08c51c386b0f28b3272d (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
41
42
43
44
import Reaction from '../../stores/lib/Reaction';

export class FeatureStore {
  _actions = null;

  _reactions = null;

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

  // ACTIONS

  _registerActions(actions) {
    this._actions = [];
    actions.forEach(a => this._actions.push(a));
    this._startActions(this._actions);
  }

  _startActions(actions = this._actions) {
    actions.forEach(a => a[0].listen(a[1]));
  }

  _stopActions(actions = this._actions) {
    actions.forEach(a => a[0].off(a[1]));
  }

  // REACTIONS

  _registerReactions(reactions) {
    this._reactions = [];
    reactions.forEach(r => this._reactions.push(new Reaction(r)));
    this._startReactions(this._reactions);
  }

  _startReactions(reactions = this._reactions) {
    reactions.forEach(r => r.start());
  }

  _stopReactions(reactions = this._reactions) {
    reactions.forEach(r => r.stop());
  }
}