aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/utils/FeatureStore.js
blob: 967e745b24cf5e6345ef0e7ecc3350c46fe79314 (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
import { union } from 'lodash';

export class FeatureStore {
  _actions = null;

  _reactions = null;

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

  // ACTIONS

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

  _startActions(actions = this._actions) {
    console.log(actions);
    actions.forEach(a => a.start());
  }

  _stopActions(actions = this._actions) {
    actions.forEach(a => a.stop());
  }

  // REACTIONS

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

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

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